|
1 | 1 | # node-addon-api Changelog
|
2 | 2 |
|
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 |
4 | 34 |
|
5 | 35 | ### Notable changes:
|
6 | 36 |
|
|
12 | 42 | #### API
|
13 | 43 |
|
14 | 44 | - 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. |
16 | 46 | - Add `Napi::VersionManagement` class to retrieve the versions of Node.js and N-API.
|
17 | 47 | - Fix potential memory leaks.
|
18 | 48 | - DataView feature is enabled by default
|
@@ -65,7 +95,7 @@ yet backported in the previous Node.js version.
|
65 | 95 | * [[`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)
|
66 | 96 | * [[`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)
|
67 | 97 |
|
68 |
| -## 2018-07-19 Version 1.4.0, @NickNasso |
| 98 | +## 2018-07-19 Version 1.4.0, @NickNaso |
69 | 99 |
|
70 | 100 | ### Notable changes:
|
71 | 101 |
|
|
0 commit comments