Skip to content

Commit 0c2b98f

Browse files
committed
2019-08-26, Version 12.9.1 (Current)
Notable changes: This release fixes two regressions in the http module: * Fixes an event listener leak in the HTTP client. This resulted in lots of warnings during npm/yarn installs. #29245 * Fixes a regression preventing the `'end'` event from being emitted for keepalive requests in case the full body was not parsed. #29263 PR-URL: #29321
1 parent a6abfcb commit 0c2b98f

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V12.md#12.9.1">12.9.1</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V12.md#12.9.0">12.9.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.1">12.8.1</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V12.md#12.8.0">12.8.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V12.md#12.7.0">12.7.0</a><br/>

doc/changelogs/CHANGELOG_V12.md

+22
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#12.9.1">12.9.1</a><br/>
1213
<a href="#12.9.0">12.9.0</a><br/>
1314
<a href="#12.8.1">12.8.1</a><br/>
1415
<a href="#12.8.0">12.8.0</a><br/>
@@ -39,6 +40,27 @@
3940
* [io.js](CHANGELOG_IOJS.md)
4041
* [Archive](CHANGELOG_ARCHIVE.md)
4142

43+
<a id="12.9.1"></a>
44+
## 2019-08-26, Version 12.9.1 (Current), @targos
45+
46+
### Notable changes
47+
48+
This release fixes two regressions in the **http** module:
49+
50+
* Fixes an event listener leak in the HTTP client. This resulted in lots of
51+
warnings during npm/yarn installs (Robert Nagy) [#29245](https://github.com/nodejs/node/pull/29245).
52+
* Fixes a regression preventing the `'end'` event from being emitted for
53+
keepalive requests in case the full body was not parsed (Matteo Collina) [#29263](https://github.com/nodejs/node/pull/29263).
54+
55+
### Commits
56+
57+
* [[`3cc8fca299`](https://github.com/nodejs/node/commit/3cc8fca299)] - **crypto**: handle i2d\_SSL\_SESSION() error return (Ben Noordhuis) [#29225](https://github.com/nodejs/node/pull/29225)
58+
* [[`dedbd119c5`](https://github.com/nodejs/node/commit/dedbd119c5)] - **http**: fix event listener leak (Robert Nagy) [#29245](https://github.com/nodejs/node/pull/29245)
59+
* [[`f8f8754d43`](https://github.com/nodejs/node/commit/f8f8754d43)] - ***Revert*** "**http**: reset parser.incoming when server response is finished" (Matteo Collina) [#29263](https://github.com/nodejs/node/pull/29263)
60+
* [[`a6abfcb423`](https://github.com/nodejs/node/commit/a6abfcb423)] - **src**: remove unused using declarations (Daniel Bevenius) [#29222](https://github.com/nodejs/node/pull/29222)
61+
* [[`ff6330a6ac`](https://github.com/nodejs/node/commit/ff6330a6ac)] - **test**: fix 'timeout' typos (cjihrig) [#29234](https://github.com/nodejs/node/pull/29234)
62+
* [[`3c7a1a9090`](https://github.com/nodejs/node/commit/3c7a1a9090)] - **test, http**: add regression test for keepalive 'end' event (Matteo Collina) [#29263](https://github.com/nodejs/node/pull/29263)
63+
4264
<a id="12.9.0"></a>
4365
## 2019-08-20, Version 12.9.0 (Current), @targos
4466

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)