Skip to content

Commit e469ee6

Browse files
committed
Prepare release v5.0.0.
1 parent f32db91 commit e469ee6

File tree

3 files changed

+81
-7
lines changed

3 files changed

+81
-7
lines changed

CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
11
# node-addon-api Changelog
22

3+
## 2022-05-02 Version 5.0.0, @NickNaso
4+
5+
### Notable changes:
6+
7+
#### API
8+
- Marked methods of wrapper classes `const`.
9+
- Enabled wrapping `Napi` namespace with custom namespace.
10+
- Added an override to `Napi::Function::Call` to call it with a c-style array
11+
of `Napi::Value`'s.
12+
- Some other minor fixes.
13+
14+
#### TEST
15+
16+
- Improved the test framework. Added the possibility to run subsets of tests
17+
more easily.
18+
- Added test for `Napi::AsyncContext` class.
19+
- Fixed ramdom failure on test for `Napi::ThreadSafeFunction` e
20+
`Napi::TypedThreadSafeFunction` class.
21+
- Fixed compilation problem on debian 8 system.
22+
- Added test for `Napi::Object::Set()` method.
23+
24+
### Documentation
25+
- Added some clarifications for `Napi::ClassPropertyDescriptor`.
26+
- Added clarification about weak reference for `Napi::ObjectWrap`.
27+
- Some minor fixes all over the documentation.
28+
29+
### TOOL
30+
31+
- Fixed `eslint` configuration.
32+
- Fixed CI configuration for Windows.
33+
- Enabled pre-commit `ClangFormat` on Windows.
34+
35+
### Commits
36+
37+
* \[[`f32db917f3`](https://github.com/nodejs/node-addon-api/commit/f32db917f3)] - Add test coverage for async contexts (#1164) (Jack)
38+
* \[[`24455f88af`](https://github.com/nodejs/node-addon-api/commit/24455f88af)] - **src**: check for tsfn in conditional\_variable wait (Kevin Eady) [#1168](https://github.com/nodejs/node-addon-api/pull/1168)
39+
* \[[`40ed7ce409`](https://github.com/nodejs/node-addon-api/commit/40ed7ce409)] - **src**: fix regression introduced by #874 (Michael Dawson)
40+
* \[[`9bea434326`](https://github.com/nodejs/node-addon-api/commit/9bea434326)] - **doc**: added some comments to ClassPropertyDescriptor. (#1149) (Nicola Del Gobbo)
41+
* \[[`57c212e15f`](https://github.com/nodejs/node-addon-api/commit/57c212e15f)] - **buld**: Enable running pre-commit ClangFormat on Win (Vladimir Morozov)
42+
* \[[`8c46a9501a`](https://github.com/nodejs/node-addon-api/commit/8c46a9501a)] - **doc**: clarify ObjectWrap weak ref behavior (#1155) (Alba Mendez)
43+
* \[[`01274966d5`](https://github.com/nodejs/node-addon-api/commit/01274966d5)] - **build**: run Windows CI only on nondeprecated build configurations (#1152) (Darshan Sen)
44+
* \[[`b8449e17e0`](https://github.com/nodejs/node-addon-api/commit/b8449e17e0)] - **src**: mark methods of wrapper classes const (Nikolai Vavilov) [#874](https://github.com/nodejs/node-addon-api/pull/874)
45+
* \[[`5e2c1f24f8`](https://github.com/nodejs/node-addon-api/commit/5e2c1f24f8)] - **lint**: set sourceType to 'script' (#1141) (Anna Henningsen)
46+
* \[[`da8af20152`](https://github.com/nodejs/node-addon-api/commit/da8af20152)] - **doc**: mention Napi::Env arg for Finalization callback (#1139) (extremeheat)
47+
* \[[`5b51864a39`](https://github.com/nodejs/node-addon-api/commit/5b51864a39)] - **src**: enable wrapping Napi namespace with custom namespace (#1135) (Anna Henningsen)
48+
* \[[`c54aeef5fd`](https://github.com/nodejs/node-addon-api/commit/c54aeef5fd)] - Add Function::Call Napi::Value override (#1026) (rgerd)
49+
* \[[`e906b5a7ce`](https://github.com/nodejs/node-addon-api/commit/e906b5a7ce)] - **test**: fix compilation problem on debian 8 (NickNaso) [#1138](https://github.com/nodejs/node-addon-api/pull/1138)
50+
* \[[`5790c55784`](https://github.com/nodejs/node-addon-api/commit/5790c55784)] - **src**: do not use non-static class member for constant value (#1134) (Anna Henningsen)
51+
* \[[`b7659db945`](https://github.com/nodejs/node-addon-api/commit/b7659db945)] - Merge pull request #1130 from meixg/main (Jack)
52+
* \[[`a840d51d21`](https://github.com/nodejs/node-addon-api/commit/a840d51d21)] - Add test case for Object Set using uint32 as key (meixg)
53+
* \[[`2c88a7ec4c`](https://github.com/nodejs/node-addon-api/commit/2c88a7ec4c)] - Merge pull request #1132 from JckXia/test-wfl-run (Jack)
54+
* \[[`d3a5ed3869`](https://github.com/nodejs/node-addon-api/commit/d3a5ed3869)] - _**Revert**_ "window CI to running on 2019" (JckXia)
55+
* \[[`cee899ade5`](https://github.com/nodejs/node-addon-api/commit/cee899ade5)] - **src**: allow customization of ObjectWrap behavior (Aaron Meriwether) [#1125](https://github.com/nodejs/node-addon-api/pull/1125)
56+
* \[[`91879b4082`](https://github.com/nodejs/node-addon-api/commit/91879b4082)] - remove window-latest to debug (JckXia)
57+
* \[[`1593ef46ee`](https://github.com/nodejs/node-addon-api/commit/1593ef46ee)] - Testing CI run (JckXia)
58+
* \[[`744c8d2410`](https://github.com/nodejs/node-addon-api/commit/744c8d2410)] - **test**: enhance the test framework (Deepak Rajamohan)
59+
360
## 2022-01-21 Version 4.3.0, @NickNaso
461

562
### Notable changes:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ and node-addon-api.
7070
- **[Contributors](#contributors)**
7171
- **[License](#license)**
7272

73-
## **Current version: 4.3.0**
73+
## **Current version: 5.0.0**
7474

7575
(See [CHANGELOG.md](CHANGELOG.md) for complete Changelog)
7676

@@ -83,7 +83,7 @@ This allows addons built with it to run with Node.js versions which support the
8383
**However** the node-addon-api support model is to support only the active LTS Node.js versions. This means that
8484
every year there will be a new major which drops support for the Node.js LTS version which has gone out of service.
8585

86-
The oldest Node.js version supported by the current version of node-addon-api is Node.js 12.x.
86+
The oldest Node.js version supported by the current version of node-addon-api is Node.js 14.x.
8787

8888
## Setup
8989
- [Installation and usage](doc/setup.md)

package.json

+22-5
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,18 @@
9595
"name": "Doni Rubiagatra",
9696
"url": "https://github.com/rubiagatra"
9797
},
98-
{
99-
"name": "Ferdinand Holzer",
100-
"url": "https://github.com/fholzer"
101-
},
10298
{
10399
"name": "Eric Bickle",
104100
"url": "https://github.com/ebickle"
105101
},
102+
{
103+
"name": "extremeheat",
104+
"url": "https://github.com/extremeheat"
105+
},
106+
{
107+
"name": "Ferdinand Holzer",
108+
"url": "https://github.com/fholzer"
109+
},
106110
{
107111
"name": "Gabriel Schulhof",
108112
"url": "https://github.com/gabrielschulhof"
@@ -267,6 +271,10 @@
267271
"name": "Philipp Renoth",
268272
"url": "https://github.com/DaAitch"
269273
},
274+
{
275+
"name": "rgerd",
276+
"url": "https://github.com/rgerd"
277+
},
270278
{
271279
"name": "Rolf Timmermans",
272280
"url": "https://github.com/rolftimmermans"
@@ -319,10 +327,19 @@
319327
"name": "Vlad Velmisov",
320328
"url": "https://github.com/Velmisov"
321329
},
330+
{
331+
"name": "Vladimir Morozov",
332+
"url": "https://github.com/vmoroz"
333+
334+
},
322335
{
323336
"name": "WenheLI",
324337
"url": "https://github.com/WenheLI"
325338
},
339+
{
340+
"name": "Xuguang Mei",
341+
"url": "https://github.com/meixg"
342+
},
326343
{
327344
"name": "Yohei Kishimoto",
328345
"url": "https://github.com/morokosi"
@@ -393,6 +410,6 @@
393410
"lint:fix": "node tools/clang-format --fix && node tools/eslint-format --fix"
394411
},
395412
"pre-commit": "lint",
396-
"version": "4.3.0",
413+
"version": "5.0.0",
397414
"support": true
398415
}

0 commit comments

Comments
 (0)