Skip to content

Releases: aerospike/aerospike-client-nodejs

[3.16.3] - 2021-02-09

09 Feb 03:33
v3.16.3
Compare
Choose a tag to compare
  • Bug Fixes

    • CLIENT-1441: Support boolean values in Map/List bins. #401
  • Updates

[3.16.2] - 2020-12-04

04 Dec 10:48
v3.16.2
Compare
Choose a tag to compare
  • New Features

    • Support setting tlsname using Host obj. #382
  • Bug Fixes

    • Reverses the breaking change introduced in v3.16.0 of not supporting percent-based scan sampling for server versions 4.9 or later. However, note that scan percent and max_records are mutually exclusive; the client will return an error if both values are set on a scan policy.
    • Query with "failOnClusterChange" causes timeout when using command queue. #389
  • Updates

    • Remove support for ApplyPolicy#gen, which is not supported by the server. #390
    • Update C client library to v4.6.19
    • Clarify docs for HLL ALLOW_FOLD policy #386
    • Fix minhash bits range in docs (4-51, not 4-58). #385
    • Fix spelling of capacity in Command Queue docs. #376 Thanks to @icflournoy!
    • Refactor: Set TTL as part of the touch operation #391
    • Add support for Ubuntu 20.04.
    • Drop support for Ubuntu 14.04.

[3.16.1] - 2020-06-30

30 Jun 01:52
v3.16.1
Compare
Choose a tag to compare
  • Bug Fixes
    • Fix memory leaks when running secondary index queries with string filter predicates. #370

[3.16.0] - 2020-05-18

18 May 09:20
v3.16.0
Compare
Choose a tag to compare
  • New Features

    • Add max records option for sampling with basic scans. Requires server version 4.9 or later. #359
    • Add support for HyperLogLog data type and operations. Requires server version 4.9 or later. #361
    • Add minConnsPerNode and maxSocketIdle client config. #366
  • Updates

    • BREAKING: The client no longer supports the percent-based scan sampling for server versions 4.9 or later. Use the new max records scan policy option instead. See API Changes for details.
    • Update C client library to v4.6.16.
    • Update dependencies with potential vulnerabilities by running npm audit fix. #367

[3.15.0] - 2020-03-24

24 Mar 06:39
v3.15.0
Compare
Choose a tag to compare
  • New Features

    • Support for BigInt as record key and bin value. #348
  • Updates

    • Update C client library to v4.6.13.

[3.14.1] - 2020-01-15

15 Jan 00:30
v3.14.1
Compare
Choose a tag to compare
  • Bug Fixes

    • Regression: Protocol error on authenticated connections. [CLIENT-1169]
  • Updates

    • Update C client library to v4.6.12.

[3.14.0] - 2020-01-08

08 Jan 00:53
v3.14.0
Compare
Choose a tag to compare
  • New Features

    • Add new delete record operation. Requires server version 4.7 or later (4.7.0.8+ or 4.8.0.3+ recommended). #322
    • Support compressed commands and responses. Requires Aerospike Enterprise Server version 4.8 or later. #335
    • Add per-node opened/closed connection stats. #336
    • Support write operations on background scans & queries. Requires server version 4.7 or later. #338
    • Support new records-per-second limit for scans, replacing scan priority. Requires server version 4.7 or later. #339
    • Add predicate filter support for batch, read, write, delete, and record UDF transactions. Requires server version 4.7 or later. #340
  • Updates

    • Add support for RHEL/CentOS 8.
    • Update C client library to v4.6.10.
    • Minor API document updates. #342
    • Update several dev dependencies to latest version.

[3.13.0] - 2019-09-30

30 Sep 15:15
v3.13.0
Compare
Choose a tag to compare
  • New Features
    • Support for bitwise operations. Requires server version 4.6 or later. #312

[3.12.0] - 2019-08-31

31 Aug 00:39
v3.12.0
Compare
Choose a tag to compare
  • New Features

    • Support for operations on nested lists & maps. Requires server version 4.6 or later. #307
  • Updates

    • Update C client library to v4.6.7.
    • Support Debian 10. Drop support for Debian 7.
    • Fix tests for certain out-of-bounds list operations due to changed error code sent by server v4.6.
    • Update dev dependecies: standard v14, yargs v14, nyc

[3.11.0] - 2019-05-22

22 May 07:55
v3.11.0
Compare
Choose a tag to compare
  • New Features

    • TLS support - Linux only, macOS & Windows not supported for now. #298
    • Add new infoNode & getNodes functions. #196
    • Support for Node.js 12 #295
  • Updates