Skip to content

Commit c98901f

Browse files
committed
2022-07-07, Version 16.16.0 'Gallium' (LTS)
This is a security release. Notable changes: * deps: * upgrade openssl sources to OpenSSL\_1\_1\_1q (RafaelGSS) #43692 * src: * add OpenSSL config appname (Daniel Bevenius) #43124 PR-URL: nodejs-private/node-private#331
1 parent 1da22eb commit c98901f

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.15.1">16.15.1</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V16.md#16.16.0">16.16.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V16.md#16.15.1">16.15.1</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V16.md#16.15.0">16.15.0</a><br/>
3839
<a href="doc/changelogs/CHANGELOG_V16.md#16.14.2">16.14.2</a><br/>
3940
<a href="doc/changelogs/CHANGELOG_V16.md#16.14.1">16.14.1</a><br/>

doc/changelogs/CHANGELOG_V16.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td valign="top">
12+
<a href="#16.16.0">16.16.0</a><br/>
1213
<a href="#16.15.1">16.15.1</a><br/>
1314
<a href="#16.15.0">16.15.0</a><br/>
1415
<a href="#16.14.2">16.14.2</a><br/>
@@ -61,6 +62,29 @@
6162
* [io.js](CHANGELOG_IOJS.md)
6263
* [Archive](CHANGELOG_ARCHIVE.md)
6364

65+
<a id="16.16.0"></a>
66+
67+
## 2022-07-07, Version 16.16.0 'Gallium' (LTS), @danielleadams
68+
69+
This is a security release.
70+
71+
### Notable changes
72+
73+
* **deps**:
74+
* upgrade openssl sources to OpenSSL\_1\_1\_1q (RafaelGSS) [#43692](https://github.com/nodejs/node/pull/43692)
75+
* **src**:
76+
* add OpenSSL config appname (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
77+
78+
### Commits
79+
80+
* \[[`2303fd3fe5`](https://github.com/nodejs/node/commit/2303fd3fe5)] - **deps**: update archs files for OpenSSL-1.1.1q (RafaelGSS) [#43692](https://github.com/nodejs/node/pull/43692)
81+
* \[[`b219a63c28`](https://github.com/nodejs/node/commit/b219a63c28)] - **deps**: upgrade openssl sources to OpenSSL\_1\_1\_1q (RafaelGSS) [#43692](https://github.com/nodejs/node/pull/43692)
82+
* \[[`c6553a4ef5`](https://github.com/nodejs/node/commit/c6553a4ef5)] - **deps**: update archs files for OpenSSL-1.1.1p+quic (RafaelGSS) [#43535](https://github.com/nodejs/node/pull/43535)
83+
* \[[`e9084a3e90`](https://github.com/nodejs/node/commit/e9084a3e90)] - **deps**: upgrade openssl sources to OpenSSL\_1\_1\_1p+quic (RafaelGSS) [#43535](https://github.com/nodejs/node/pull/43535)
84+
* \[[`1da22eb482`](https://github.com/nodejs/node/commit/1da22eb482)] - **http**: stricter Transfer-Encoding and header separator parsing (Paolo Insogna) [nodejs-private/node-private#315](https://github.com/nodejs-private/node-private/pull/315)
85+
* \[[`754c9bfde0`](https://github.com/nodejs/node/commit/754c9bfde0)] - **src**: fix IPv4 validation in inspector\_socket (Tobias Nießen) [nodejs-private/node-private#320](https://github.com/nodejs-private/node-private/pull/320)
86+
* \[[`447cf680b0`](https://github.com/nodejs/node/commit/447cf680b0)] - **(SEMVER-MAJOR)** **src,deps,build,test**: add OpenSSL config appname (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124)
87+
6488
<a id="16.15.1"></a>
6589

6690
## 2022-06-01, Version 16.15.1 'Gallium' (LTS), @BethGriggs prepared by @juanarbol

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 16
26-
#define NODE_MINOR_VERSION 15
27-
#define NODE_PATCH_VERSION 2
26+
#define NODE_MINOR_VERSION 16
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 1
3030
#define NODE_VERSION_LTS_CODENAME "Gallium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)