Skip to content

Commit

Permalink
update changelog and incompatible mds
Browse files Browse the repository at this point in the history
  • Loading branch information
rpandian-spike committed Mar 16, 2022
1 parent 43058b9 commit e780347
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ All notable changes to this project will be documented in this file.
## [4.0.0]

* **New Features**
* Support boolean particle type. This feature requires server version 5.6+. [#428](https://github.com/aerospike/aerospike-client-nodejs/pull/428)
* Add support for Aerospike Expressions
* Added TypeScript typings. [#446](https://github.com/aerospike/aerospike-client-nodejs/pull/446) Thanks to [@bit0r1n](https://github.com/bit0r1n)!
* [CLIENT-1678] - Support boolean particle type. This feature requires Aerospike server version 5.6+. [#428](https://github.com/aerospike/aerospike-client-nodejs/pull/428)
* [CLIENT-1679] - Add support for Aerospike Expressions.
* [CLIENT-1680] - Added TypeScript typings. [#446](https://github.com/aerospike/aerospike-client-nodejs/pull/446) Thanks to [@bit0r1n](https://github.com/bit0r1n)!

* **Updates**
* *BREAKING*: This client requires server version 4.9 or later.
* *BREAKING*: Drop support for Node.js 8.
* *BREAKING*: Remove support for CentOS 6 as well as Ubuntu 16.0.4.
* *BREAKING*: Remove Scan#priority, Scan#percent, and ScanPolicy#failOnClusterChange, as the server no longer supports these fields.
* Add support for building c-client as sub-module
* BREAKING: This client requires server version 4.9 or later.
* BREAKING: Drop support for Node.js 8.
* BREAKING: Remove support for CentOS 6 as well as Ubuntu 16.04.
* BREAKING: Remove Scan#priority, Scan#percent, and ScanPolicy#failOnClusterChange, as the server no longer supports these fields.
* Add support for building c-client as a sub-module.

## [3.16.7] - 2022-01-10

Expand Down
23 changes: 23 additions & 0 deletions incompatible.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Backward Incompatible API Changes

All notable changes to this project will be documented in this file.

## [4.0.0]

### totalTimeout Replaced by timeout Info Policy Option
* Usage
* New "timeout" InfoPolicy

const subject = new Aerospike.InfoPolicy({
timeout: 1000,
sendAsIs: true,
checkBounds: false
})

* Deprecated "totalTimeout" InfoPolicy

const subject = new Aerospike.InfoPolicy({
totalTimeout: 1000,
sendAsIs: true,
checkBounds: false
})

0 comments on commit e780347

Please sign in to comment.