Skip to content

Commit 322dc09

Browse files
committed
Updates for release 1.6.0
1 parent 8ce605c commit 322dc09

File tree

3 files changed

+37
-6
lines changed

3 files changed

+37
-6
lines changed

CHANGELOG.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
11
# node-addon-api Changelog
22

3-
## 2018-10-03 Version 1.5.0 (Current), @NickNasso
3+
## 2018-11-02 Version 1.6.0 (Current), @NickNaso
4+
5+
### Notable changes:
6+
7+
#### Documentation
8+
9+
- Improved documentation about ABI stability.
10+
11+
#### API
12+
13+
- Add `Napi::CallbackScope` class that help to have the equivalent of the scope
14+
associated with a callback in place when making certain N-API calls
15+
16+
#### TEST
17+
18+
- Added tests for `Napi::Array` class.
19+
- Added tests for `Napi::ArrayBuffer` class.
20+
21+
### Commmits
22+
23+
* [[`8ce605c657`](https://github.com/nodejs/node-addon-api/commit/8ce605c657)] - **build**: avoid using package-lock.json (Jaeseok Yoon) [#359](https://github.com/nodejs/node-addon-api/pull/359)
24+
* [[`fa3a6150b3`](https://github.com/nodejs/node-addon-api/commit/fa3a6150b3)] - **src**: use MakeCallback() -\> Call() in AsyncWorker (Jinho Bang) [#361](https://github.com/nodejs/node-addon-api/pull/361)
25+
* [[`2342415463`](https://github.com/nodejs/node-addon-api/commit/2342415463)] - **test**: create test objects in the stack instead of the heap (Dongjin Na) [#371](https://github.com/nodejs/node-addon-api/pull/371)
26+
* [[`67b7db0a6f`](https://github.com/nodejs/node-addon-api/commit/67b7db0a6f)] - **test**: write tests for Array class (Jaeseok Yoon) [#363](https://github.com/nodejs/node-addon-api/pull/363)
27+
* [[`729f6dc4ee`](https://github.com/nodejs/node-addon-api/commit/729f6dc4ee)] - **test**: add arraybuffer tests (Dongjin Na) [#369](https://github.com/nodejs/node-addon-api/pull/369)
28+
* [[`405f3e5b5b`](https://github.com/nodejs/node-addon-api/commit/405f3e5b5b)] - **src**: implement CallbackScope class (Jinho Bang) [#362](https://github.com/nodejs/node-addon-api/pull/362)
29+
* [[`015d95312f`](https://github.com/nodejs/node-addon-api/commit/015d95312f)] - **doc**: fix Napi::Reference link (Gentilhomme) [#365](https://github.com/nodejs/node-addon-api/pull/365)
30+
* [[`fd65078e3c`](https://github.com/nodejs/node-addon-api/commit/fd65078e3c)] - README.md: link to new ABI stability guide (Gabriel Schulhof) [#367](https://github.com/nodejs/node-addon-api/pull/367)
31+
* [[`ffebf9ba9a`](https://github.com/nodejs/node-addon-api/commit/ffebf9ba9a)] - Updates for release 1.5.0 (NickNaso)
32+
33+
## 2018-10-03 Version 1.5.0 (Current), @NickNaso
434

535
### Notable changes:
636

@@ -12,7 +42,7 @@
1242
#### API
1343

1444
- Add `Napi::AsyncContext` class to handle asynchronous operation.
15-
- Add B`Napi::igInt` class to work with BigInt type.
45+
- Add `Napi::BigInt` class to work with BigInt type.
1646
- Add `Napi::VersionManagement` class to retrieve the versions of Node.js and N-API.
1747
- Fix potential memory leaks.
1848
- DataView feature is enabled by default
@@ -65,7 +95,7 @@ yet backported in the previous Node.js version.
6595
* [[`622ffaea76`](https://github.com/nodejs/node-addon-api/commit/622ffaea76)] - **test**: Tighten up compiler warnings (Mikhail Cheshkov) [#315](https://github.com/nodejs/node-addon-api/pull/315)
6696
* [[`fd3c37b0f2`](https://github.com/nodejs/node-addon-api/commit/fd3c37b0f2)] - **tools**: add tool to check for N-API modules (Gabriel Schulhof) [#346](https://github.com/nodejs/node-addon-api/pull/346)
6797

68-
## 2018-07-19 Version 1.4.0, @NickNasso
98+
## 2018-07-19 Version 1.4.0, @NickNaso
6999

70100
### Notable changes:
71101

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ to ideas specified in the **ECMA262 Language Specification**.
4646
- **[Contributors](#contributors)**
4747
- **[License](#license)**
4848

49-
## **Current version: 1.5**
49+
## **Current version: 1.6**
5050

5151
(See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)
5252

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"Philipp Renoth (https://github.com/DaAitch)",
3434
"Rolf Timmermans (https://github.com/rolftimmermans)",
3535
"Sampson Gao (https://github.com/sampsongao)",
36-
"Taylor Woll (https://github.com/boingoing)"
36+
"Taylor Woll (https://github.com/boingoing)",
37+
"Thomas Gentilhomme (https://github.com/fraxken)"
3738
],
3839
"dependencies": {},
3940
"description": "Node.js API (N-API)",
@@ -56,5 +57,5 @@
5657
"test": "node test",
5758
"doc": "doxygen doc/Doxyfile"
5859
},
59-
"version": "1.5.0"
60+
"version": "1.6.0"
6061
}

0 commit comments

Comments
 (0)