All Versions
77
Latest Version
Avg Release Cycle
139 days
Latest Release
1446 days ago

Changelog History
Page 1

  • v2.4.0-beta Changes

    May 22, 2020
    • ➕ Add support for RethinkDB 2.4.
    • ➕ Add support for write hooks.
    • ➕ Add support for bit-wise operators.
  • v2.3.150 Changes

    September 17, 2019
    • 👍 Issue #146 - Better support for CancellationToken. Clean up of token registrations that may produce exceptions when CancellationTokenSource.Cancel() is called.
  • v2.3.101 Changes

    August 09, 2019
    • 🏗 Issue #143 - ConnectionPool.Builder.ConnectAsync() now respects .InitialTimeout() parameter. CancellationToken also supported.
  • v2.3.100 Changes

    February 24, 2019
    • First batch of expired commercial licenses have been banned for use.
    • Issue #139 - New .RunUnsafeAsync run helper that runs a query on the server and returns the raw Response object in an unsafe way with minimal client-side processing. The unbridled use of this method can lead to memory leaks on both the client and server. Use with extreme caution. This method should only be used in well-understood and advanced scenarios.
    • POSSIBLE BREAKING CHANGE: .RunResult for Result (DML) type responses that correspond to inserts, deletes, updates has been renamed to .RunWrite. Please use the new method name instead. Note: The .RunResult<T> for T type responses will not be obsoleted. The reason for the former .RunResult method rename is to avoid confusion between .RunResult and .RunResult<T>. The obsoleted methods produce compiler warnings in this version. If no compiler warnings are produced, no changes are necessary. The obsolete methods will be removed in the next major RethinkDB driver release (2.4).
  • v2.3.24 Changes

    February 16, 2019
    • 👍 Issue #138 - Better error handling in cursors.
    • POSSIBLE BREAKING CHANGE: Previously, when an error response was received during cursor enumeration a NotSupportedException was thrown. Issue #138 changes this behavior by throwing more detailed (and more specific) exception based on the response from the server. For example, the driver will throw a ReqlOpFailedError exception if a cursor change feed is interrupted behind a RethinkDB proxy instead of throwing a generic NotSupportedException.
  • v2.3.23 Changes

    April 25, 2018
    • Issue #128 - NullReferenceException when executing query after failed reconnect.
    • 🏗 Renamed val parameters on Connection.Builder for better readability and IntelliSense.
  • v2.3.22 Changes

    March 14, 2018
    • 🛠 Issue #125 - Fixed LINQ provider not using Newtonsoft.Json naming strategy.
    • ReGrid: Renamed bucket method DestroyAsync to PergeAsync to be consistent with non-async Purge call.
  • v2.3.20 Changes

    August 25, 2017
  • v2.3.19 Changes

    May 05, 2017
  • v2.3.18 Changes

    • 🐎 Use some C# 7 features in AST composition for faster performance.
    • 🛠 Issue 112: Fixed NotSupportedException when connecting to an IPv6 address.