Releases: aerospike/aerospike-client-nodejs
Releases · aerospike/aerospike-client-nodejs
[5.13.2]
[5.13.1]
New Features
- [CLIENT-3127] - Added client.ExistsWithMetadata.
- [CLIENT-3153] - Added support for Node.js 23.
Improvements
- [CLIENT-3061] - Revamped typescript support by improving description file with tighter definitions and documentation.
- [CLIENT-3149] - Fixed import conflicts with third party packages in typescript description file.
- [CLIENT-3149] - Improved typescript description file compilation.
- [CLIENT-3151] - Converted API documentation to TypeDoc documentation.
Bug Fixes
- [CLIENT-3107] - Map read and List read operations no longer throw a type error when using EXISTS, ORDERED_MAP, or UNORDERED_MAP return types.
- [CLIENT-3145] - Fixed issue with BatchResult not returning inDoubt status to the user.
[5.12.1]
Breaking Changes
- [CLIENT-2984] - Dropped support for Node.js 21.
New Features
- [CLIENT-2976] - Added support for Ubuntu 24.04.
- [CLIENT-2977] - Added support for Node.js 22.
Bug Fixes
- [CLIENT-2975] - Fixed issue with TLS pending buffer calculation in as_uv_tls_try_send_pending().
[5.12.0]
New Features
- [CLIENT-2822] - Added the queryDuration enumeration to the policy module. The following values are supported:
- Aerospike.policy.queryDuration.LONG
- Aerospike.policy.queryDuration.SHORT
- Aerospike.policy.queryDuration.LONG_RELAX_AP
- [CLIENT-2822] - Added expectedDuration member to QueryPolicy. Use the queryDuration enumeration when setting expectedDuration.
- [CLIENT-2829] - Added support for readTouchTtlPercent for the following policies:
- ReadPolicy
- OperatePolicy
- BatchPolicy
- BatchReadPolicy
[5.11.0]
New Features
- [CLIENT-2770] - Added support for persistent list indexes.
- [CLIENT-2774] - Added 'ttl' property to 'batchWrite' policy.
- [CLIENT-2793] - Added support for the batchParentWrite policy in the client config policy.
- [CLIENT-2795] - Added the 'create' method for the 'aerospike/list' module.
Bug fixes
- [CLIENT-2773] - Added missing error codes to status.js.
- [CLIENT-2794] - Fixed typescript compiler errors.
- [CLIENT-27811] - Batch repeat flag is no longer set on batch writes when the 'sendKey' policy is true.
[5.10.0]
New Features
- [CLIENT-2672] - Added support for MacOS 14.
- [CLIENT-2751] - Added support for Node.js 21.
Bug fixes
- [CLIENT-2599] - Added documentation to avoid build issues on Windows with Python 3.12.
- [CLIENT-2709] - The C Client submodule now marks node’s partitions for retry on the next scan/query page when a node returns records that are discarded due to exceeding maxRecords.
- [CLIENT-2749] - Added missing BOOL enumeration to Aerospike.exp.type. In scan/query with maxRecords set, mark node's partitions for retry on next scan/query page when that node returns records that are discarded due to exceeding maxRecords.
- [CLIENT-2750] - Changed npm-run-all from a dev-dependency to a dependency.
[5.9.0]
Breaking Changes
- [CLIENT-2659] - Dropped support for Debian 10.
- [CLIENT-2660] - Dropped support for CentOS 7.
- [CLIENT-2661] - Dropped support for Red Hat Enterprise Linux 7.
- [CLIENT-2662] - Dropped support for Oracle Linux 7
- [CLIENT-2663] - Dropped support for Amazon Linux 2.
- [CLIENT-2668] - Dropped support for macOS 11.
New Features
- [CLIENT-2095] - The Aerospike client can now be installed using “npm install aerospike” on windows.
- [CLIENT-2572] - Added exp.recordSize expression.
- [CLIENT-2587] - Added Client.createBlobIndex.
- [CLIENT-2587] - Added indexDatatype.BLOB.
- [CLIENT-2615] - Added exp.expWriteFlags and exp.expReadFlags.
- [CLIENT-2617] - Added map.create method with parameter to create a persistent map index.
- [CLIENT-2669] - Added config.errorRateWindow and config.maxErrorRate.
- [CLIENT-1421] - maxErrorRate and errorRateWindow can be adjusted to modify the circuit breaker pattern implemented by the C client.
Improvements
- [CLIENT-2671] - Updated batch examples on the Node.js Client API docs page.
Bug Fixes
- [CLIENT-2629] - Fixed bug in which some batch methods returned an AEROSPIKE_BATCH_FAILED error rather than records with detailed status codes.
- [CLIENT-2670] - Fixed bug in which config.tenderInterval was not being applied.
[5.8.0]
Breaking Changes
- [CLIENT-2517] - Dropped support for Node.js 19.
- [CLIENT-2581] - Dropped support for Node.js 16.
New Features
- [CLIENT-1983] - Added support for the javascript “Map” class as a bin value in client.put method and maps.putItems method.
- [CLIENT-1983] - Added the Bin class for use in the client.put method.
- [CLIENT-2378] - Added exp.inf and exp.wildcard expressions.
- [CLIENT-2488] - Added a “returnType” parameter to map expression remove methods. Acceptable “returnType” values are maps.returnType.INVERTED and maps.returnType.NONE.
Improvements
- [CLIENT-1601] - Switched API docs theme to docdash.
- [CLIENT-2374] - Restored typescript support.
Bug Fixes
- [CLIENT-2538] - Fixed bug in which list expression remove methods and map expression remove methods resulted in a segmentation fault.
[5.7.0]
New Features
- [CLIENT-630] - Added the following role-based access control (RBAC) security features:
- Modules
- Aerospike.Client.admin
- Aerospike.Client.privilegeCode
- Classes
- Aerospike.Client.admin.User
- Aerospike.Client.admin.Role
- Aerospike.Client.admin.Privilege
- Aerospike.Client.adminPolicy
- Methods
- Aerospike.Client.changePassword
- Aerospike.Client.createUser
- Aerospike.Client.createRole
- Aerospike.Client.dropRole
- Aerospike.Client.dropUser
- Aerospike.Client.grantPrivileges
- Aerospike.Client.grantRoles
- Aerospike.Client.queryRole
- Aerospike.Client.queryRoles
- Aerospike.Client.queryUser
- Aerospike.Client.queryUsers
- Aerospike.Client.revokePrivileges
- Aerospike.Client.revokeRoles
- Aerospike.Client.setQuotas
- Aerospike.Client.setWhitelist
- Modules
- [CLIENT-1303] - Added the ‘TTL' property to the query and scan classes. Note: records will only have their ‘TTL’ value set if query.operate or scan.operate is called when the ‘TTL’ property is set.
- [CLIENT-2393] - Added support for Debian 12.
Improvements
- [CLIENT-2350] - Initialized values depended on by conditional jumps.
- [CLIENT-2466] - Added additional input validation.
Bug Fixes
- [CLIENT-2463] - Paginated queries without a filter specified will no longer throw a TypeError for reading an undefined value.
Updates
- The typescript description file 'index.d.ts' has not been updated. The next release will update 'index.d.ts' and restore typescript support.
[5.6.0]
New Features
- [CLIENT-1803] - Added support for creation of a secondary index on elements within a Collection Data Type.
- [CLIENT-1990] - Added support for Collection Data Type (CDT) Context Base64 serialization.
- [CLIENT-2085] - Added support for rack aware queries and scans.
- [CLIENT-2347] - Added the 'replica' property to the QueryPolicy and ScanPolicy Classes.
- [CLIENT-2348] - Added filter support for secondary indices on elements within a Collection Data Type.
Improvements
- [CLIENT-1823] - Changed the example and parameters in the API Documentation for Client.batchApply.
- [CLIENT-2345] - Improved Client.indexRemove unit test by verifying deletion with a query.
- [CLIENT-2373] - Modified Query.where() to replace the current filter rather than add a filter to Query.filters.
- [CLIENT-2376] - Removed dynamic linking to OpenSSL.
Updates
- The typescript description file 'index.d.ts' has not been updated. The next release will update 'index.d.ts' and restore typescript support.