You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+37-2Lines changed: 37 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,40 @@
1
1
# node-addon-api Changelog
2
2
3
+
## 2020-07-13 Version 3.0.1, @NickNaso
4
+
5
+
### Notable changes:
6
+
7
+
#### API
8
+
9
+
- Fixed the usage of `Napi::Reference` with `Napi::TypedArray`.
10
+
- Fixed `Napi::ObjectWrap` inheritance.
11
+
12
+
#### Documentation
13
+
14
+
- Updated the example for `Napi::ObjectWrap`.
15
+
- Added documentation for instance data APIs.
16
+
- Some minor corrections all over the documentation.
17
+
18
+
#### TEST
19
+
20
+
- Fixed test for `Napi::ArrayBuffer` and `Napi::Buffer`.
21
+
- Some minor corrections all over the test suite.
22
+
23
+
### Commits
24
+
25
+
*[[`40c7926342`](https://github.com/nodejs/node-addon-api/commit/40c7926342)] - **build**: ensure paths with spaces can be used (Lovell Fuller) [#757](https://github.com/nodejs/node-addon-api/pull/757)
26
+
*[[`ef16dfb4a2`](https://github.com/nodejs/node-addon-api/commit/ef16dfb4a2)] - **doc**: update ObjectWrap example (Gabriel Schulhof) [#754](https://github.com/nodejs/node-addon-api/pull/754)
*[[`bd2c5ec502`](https://github.com/nodejs/node-addon-api/commit/bd2c5ec502)] - Fixes issue 745. (#748) (Nicola Del Gobbo)
29
+
*[[`4c01af2d87`](https://github.com/nodejs/node-addon-api/commit/4c01af2d87)] - Fix typo in CHANGELOG (#715) (Kasumi Hanazuki)
30
+
*[[`36e1af96d5`](https://github.com/nodejs/node-addon-api/commit/36e1af96d5)] - **src**: fix use of Reference with typed arrays (Michael Dawson) [#726](https://github.com/nodejs/node-addon-api/pull/726)
31
+
*[[`d463f02bc7`](https://github.com/nodejs/node-addon-api/commit/d463f02bc7)] - **src**: fix testEnumerables on ObjectWrap (Ferdinand Holzer) [#736](https://github.com/nodejs/node-addon-api/pull/736)
*[[`31504c862b`](https://github.com/nodejs/node-addon-api/commit/31504c862b)] - **doc**: fix minor typo in object\_wrap.md (#741) (Daniel Bevenius) [#741](https://github.com/nodejs/node-addon-api/pull/741)
34
+
*[[`beccf2145d`](https://github.com/nodejs/node-addon-api/commit/beccf2145d)] - **test**: fix up delays for array buffer test (Michael Dawson) [#737](https://github.com/nodejs/node-addon-api/pull/737)
35
+
*[[`45cb1d9748`](https://github.com/nodejs/node-addon-api/commit/45cb1d9748)] - Correct AsyncProgressWorker link in README (#716) (Jeroen Janssen)
36
+
*[[`381c0da60c`](https://github.com/nodejs/node-addon-api/commit/381c0da60c)] - **doc**: add instance data APIs (Gabriel Schulhof) [#708](https://github.com/nodejs/node-addon-api/pull/708)
37
+
3
38
## 2020-04-30 Version 3.0.0, @NickNaso
4
39
5
40
### Notable changes:
@@ -14,14 +49,14 @@
14
49
- Added `Env::RunScript` method to run JavaScript code contained in a string.
15
50
- Added templated version of `Napi::Function`.
16
51
- Added benchmarking framework.
17
-
- Added support for natove addon instance data.
52
+
- Added support for native addon instance data.
18
53
- Added `Napi::AsyncProgressQueueWorker` api.
19
54
- Changed the guards to `NAPI_VERSION > 5`.
20
55
- Removed N-API implementation (v6.x and v8.x support).
21
56
-`Napi::AsyncWorker::OnWorkComplete` and `Napi::AsyncWorker::OnExecute` methods
22
57
are override-able.
23
58
- Removed erroneous finalizer cleanup in `Napi::ThreadSafeFunction`.
0 commit comments