|
1 |
| -# Node.js API (N-API) Package Changelog |
| 1 | +# node-addon-api Changelog |
| 2 | + |
| 3 | +## 2018-05-08 Version 1.3.0 (Current), @mhdawson |
| 4 | + |
| 5 | +### Notable changes: |
| 6 | + |
| 7 | +#### Documentation |
| 8 | +- Added documentation for Scopes |
| 9 | +- Added documentation for migration from NAN |
| 10 | +- Update documentation to better explain the use of NODE_ADDON_API |
| 11 | + |
| 12 | +#### API |
| 13 | +- Implement data manipulation methods for dataview |
| 14 | +- Use built-in N-API on Node.js >= 6.14.2 |
| 15 | +- Value |
| 16 | + - Added IsExternal() |
| 17 | + - IsObject() allow functions |
| 18 | +- String |
| 19 | + - Fixed initialization of std::string to nullptr |
| 20 | + |
| 21 | +#### Tests |
| 22 | +- Fix test failures on linuxOne and AIX |
| 23 | +- Added basic tests for Scopes |
| 24 | +- Fix MSVC warning C4244 in tests |
| 25 | + |
| 26 | +### Commits |
| 27 | + |
| 28 | +* [386c2aeb74] - test: remove dep on later C++ feature (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/267 |
| 29 | +* [10697734da] - Use built-in N-API on Node.js >= 6.14.2 (Gabriel Schulhof) |
| 30 | +* [75086da273] - test: add basic tests and doc for scopes (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/250 |
| 31 | +* [341dbd25d5] - doc: update blurb explaining NODE_ADDON_API (Gabriel Schulhof) https://github.com/nodejs/node-addon-api/pull/251 |
| 32 | +* [cf6c93e4ee] - don't try to escape null (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/245 |
| 33 | +* [15e4b35fc2] - test: fix MSVC warning C4244 in tests (Kyle Farnung) https://github.com/nodejs/node-addon-api/pull/236 |
| 34 | +* [7f3ca03b8e] - Create a doc for migration (Sampson Gao) https://github.com/nodejs/node-addon-api/pull/118 |
| 35 | +* [0a2177debe] - Fix test failures on linuxOne and AIX (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/232 |
| 36 | +* [d567f4b6b5] - Added Napi::Value::IsExternal() (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/227 |
| 37 | +* [1b0f0e004a] - Update node-gyp.md (Michele Campus) https://github.com/nodejs/node-addon-api/pull/226 |
| 38 | +* [faf19c4f7a] - Fixed initialization of std::string to nullptr (Eric Bickle) https://github.com/nodejs/node-addon-api/pull/228 |
| 39 | +* [9c4d321b57] - Implement data manipulation methods for dataview (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/218 |
| 40 | +* [5a39fdca6f] - n-api: throw RangeError napi_create_typedarray() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/216 |
| 41 | +* [1376377202] - Make IsObject() allow functions (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/217 |
| 42 | +* [673b59d319] - src: Initial implementation of DataView class (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/205 |
| 43 | +* [0a899bf1c5] - doc: update indication of latest version (Michael Dawson) https://github.com/nodejs/node-addon-api/pull/211 |
| 44 | +* [17c74e5a5e] - n-api: RangeError in napi_create_dataview() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/214 |
| 45 | +* [4058a29989] - n-api: fix memory leak in napi_async_destroy() (Jinho Bang) https://github.com/nodejs/node-addon-api/pull/213 |
| 46 | + |
| 47 | + |
0 commit comments