File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 1
1
# node-addon-api Changelog
2
2
3
+ ## 2021-06-15 Version 4.0.0, @NickNaso
4
+
5
+ ### Notable changes:
6
+
7
+ #### API
8
+
9
+ - Fixed a crashing issue in ` Napi::Error::ThrowAsJavaScriptException `
10
+ introducing the preprocessor directive ` NODE_API_SWALLOW_UNTHROWABLE_EXCEPTIONS ` .
11
+ - Fixed compilation problem for GCC 11 and C++20.
12
+
13
+ #### TEST
14
+
15
+ - Added test for function reference call and contructor.
16
+
17
+ ### Documentation
18
+
19
+ - Updated the oldest Node.js version supported from ` 10.x ` to ` 12.x ` .
20
+
21
+ ### Commits
22
+
23
+ * [[ ` 028107f686 ` ] ( https://github.com/nodejs/node-addon-api/commit/028107f686 )] - ** src** : fix Error::ThrowAsJavaScriptException crash (rudolftam) [ #975 ] ( https://github.com/nodejs/node-addon-api/pull/975 )
24
+ * [[ ` fed13534c5 ` ] ( https://github.com/nodejs/node-addon-api/commit/fed13534c5 )] - ** src** : fix gcc-11 c++20 compilation (Kevin Eady) [ #1009 ] ( https://github.com/nodejs/node-addon-api/pull/1009 )
25
+ * [[ ` b75afc4d29 ` ] ( https://github.com/nodejs/node-addon-api/commit/b75afc4d29 )] - ** test** : function reference call & construct (legendecas) [ #1005 ] ( https://github.com/nodejs/node-addon-api/pull/1005 )
26
+
3
27
## 2021-05-28 Version 3.2.1, @NickNaso
4
28
5
29
### Notable changes:
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ and node-addon-api.
70
70
- ** [ Contributors] ( #contributors ) **
71
71
- ** [ License] ( #license ) **
72
72
73
- ## ** Current version: 3.2.1 **
73
+ ## ** Current version: 4.0.0 **
74
74
75
75
(See [ CHANGELOG.md] ( CHANGELOG.md ) for complete Changelog)
76
76
@@ -83,7 +83,7 @@ This allows addons built with it to run with Node.js versions which support the
83
83
** However** the node-addon-api support model is to support only the active LTS Node.js versions. This means that
84
84
every year there will be a new major which drops support for the Node.js LTS version which has gone out of service.
85
85
86
- The oldest Node.js version supported by the current version of node-addon-api is Node.js 10 .x.
86
+ The oldest Node.js version supported by the current version of node-addon-api is Node.js 12 .x.
87
87
88
88
## Setup
89
89
- [ Installation and usage] ( doc/setup.md )
Original file line number Diff line number Diff line change 363
363
"lint:fix" : " node tools/clang-format --fix"
364
364
},
365
365
"pre-commit" : " lint" ,
366
- "version" : " 3.2.1 " ,
366
+ "version" : " 4.0.0 " ,
367
367
"support" : true
368
368
}
You can’t perform that action at this time.
0 commit comments