Skip to content

Commit 39a25bf

Browse files
authored
release: v7.0.0 (#1336)
1 parent de5c899 commit 39a25bf

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

Diff for: CHANGELOG.md

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

3+
## 2023-06-13 Version 7.0.0, @KevinEady
4+
5+
### Notable changes
6+
7+
#### API
8+
9+
- Drop support for Node.js v14.x and v19.x.
10+
- Ensure native receiver exists when calling instance methods and properties.
11+
- Fix issue when creating `Napi::Error` instances that wrap primitives values.
12+
13+
#### TEST
14+
15+
- Added tests for `Napi::AsyncProgressQueueWorker<T>` class.
16+
- Added tests for `Napi::AsyncProgressWorker<T>` class.
17+
18+
### Documentation
19+
20+
- Added documentation for `Napi::Value::IsBigInt()`.
21+
22+
### Commits
23+
24+
* \[[`de5c899400`](https://github.com/nodejs/node-addon-api/commit/de5c899400)] - **doc,chore**: drop support for Node.js v14, v19 (Kevin Eady) [#1324](https://github.com/nodejs/node-addon-api/pull/1324)
25+
* \[[`3083b7f148`](https://github.com/nodejs/node-addon-api/commit/3083b7f148)] - \[StepSecurity] Apply security best practices (StepSecurity Bot) [#1308](https://github.com/nodejs/node-addon-api/pull/1308)
26+
* \[[`a198e24a15`](https://github.com/nodejs/node-addon-api/commit/a198e24a15)] - \[Test] Add tests for async progress queue worker (Jack) [#1316](https://github.com/nodejs/node-addon-api/pull/1316)
27+
* \[[`665f4aa845`](https://github.com/nodejs/node-addon-api/commit/665f4aa845)] - **doc**: add missing Value::IsBigInt (Kevin Eady) [#1319](https://github.com/nodejs/node-addon-api/pull/1319)
28+
* \[[`358b2d3b4f`](https://github.com/nodejs/node-addon-api/commit/358b2d3b4f)] - **doc**: complete code curly braces in async\_worker.md (wanlu) [#1317](https://github.com/nodejs/node-addon-api/pull/1317)
29+
* \[[`858942ce31`](https://github.com/nodejs/node-addon-api/commit/858942ce31)] - **src**: avoid calling into C++ with a null this (Caleb Hearon) [#1313](https://github.com/nodejs/node-addon-api/pull/1313)
30+
* \[[`64f6515331`](https://github.com/nodejs/node-addon-api/commit/64f6515331)] - **src**: handle failure during error wrap of primitive (Gabriel Schulhof) [#1310](https://github.com/nodejs/node-addon-api/pull/1310)
31+
* \[[`dfad6b45fe`](https://github.com/nodejs/node-addon-api/commit/dfad6b45fe)] - \[test] Add test coverage for AsyncProgressWorker (Jack) [#1307](https://github.com/nodejs/node-addon-api/pull/1307)
32+
* \[[`0e34f22839`](https://github.com/nodejs/node-addon-api/commit/0e34f22839)] - **release**: v6.1.0. (Nicola Del Gobbo)
33+
334
## 2023-04-20 Version 6.1.0, @NickNaso
435

536
### Notable changes

Diff for: README.md

+1-1
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: 6.1.0**
73+
## **Current version: 7.0.0**
7474

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

Diff for: package.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,14 @@
399399
{
400400
"name": "Feng Yu",
401401
"url": "https://github.com/F3n67u"
402+
},
403+
{
404+
"name": "wanlu wang",
405+
"url": "https://github.com/wanlu"
406+
},
407+
{
408+
"name": "Caleb Hearon",
409+
"url": "https://github.com/chearon"
402410
}
403411
],
404412
"description": "Node.js API (Node-API)",
@@ -459,6 +467,6 @@
459467
"lint:fix": "node tools/clang-format --fix && node tools/eslint-format --fix"
460468
},
461469
"pre-commit": "lint",
462-
"version": "6.1.0",
470+
"version": "7.0.0",
463471
"support": true
464472
}

0 commit comments

Comments
 (0)