All Versions
92
Latest Version
Avg Release Cycle
21 days
Latest Release
1058 days ago

Changelog History
Page 3

  • v2.8.2 Changes

    March 04, 2020

    Hotfix.

    • Fixes

      • Fixes a race condition introduced in the last release.
  • v2.8.1 Changes

    March 04, 2020

    Minor fix and improvements.

    • Improvements

      • Uses a sync.Pool to preserve the connection buffers on close to remove pressure from the allocator and the GC during connection churns.
    • Fixes

      • Cleanup the data structure cross refs on Cluster.Close to help GC free the objects.
  • v2.8.0 Changes

    February 28, 2020

    Minor feature release.

    • New Features

      • Allows ,omitempty tag to be used in struct tags. It behaves the same as the stdlib json. Note that there should be no whitespace between the comma and the rest of the tag.
  • v2.7.2 Changes

    January 30, 2020

    🛠 Fixes

    • Resolves an issue where an invalid/malformed compressed header could cause a panic by reporting wrong compressed data size. Resolves #280.
  • v2.7.1 Changes

    January 20, 2020

    Minor fix release.

    • Fixes

      • Fixes an issue where an error was not checked after a read in multi_command.go and would cause a panic. Resolves #280.
  • v2.7.0 Changes

    December 24, 2019

    🆕 New Features

    • Adds support for client/server wire transport compression.

    - Adds support for descending CDT list order.

    🛠 Fixes

    • Fixes an issue where unpacking Value objects would cause an infinite loop. PR #273, thanks to small-egg
  • v2.6.0 Changes

    November 25, 2019

    Minor feature release.

    • New Features

      • Supports correct Query/Scans via Scan/QueryPolicy.FailOnClusterChange
    • Fixes

      • Fixes an issue where the client using multiple seeds via DNS or Load Balancer would fail to connect if more than one of them were unreachable.
  • v2.5.0 Changes

    November 08, 2019

    Major feature release.

    • New Features

      • Adds support for predicate expressions in all transactions. See Policy.Predexp.
  • v2.4.0 Changes

    October 29, 2019

    Major feature release.

    • New Features

      • Adds support for bitwise operations.
      • Adds support for nested CDTs.
  • v2.3.0 Changes

    October 17, 2019

    Major feature release.

    • New Features

      • Adds support for mixed security modes in cluster to enable rolling upgrade with security changes.
      • Adds support for delete record operation DeleteOp() in Client.Operate().
      • Adds support for write operations in background scan/query.
      • Adds support for Scan/QueryPolicy.RecordsPerSecond field to limit throughput.