Skip to content

Commit 0643e3e

Browse files
committed
2018-02-22, Version 9.6.1 (Current)
Notable changes: * events: - `events.usingDomains` being set to false by default was removed in 9.6.0 which was a change in behavior compared to 9.5.0. This behavior change has been reverted and the `events` object now has `usingDomains` preset to `false`, which is the behavior in 9.x prior to 9.6.0 (Myles Borins) #18944 PR-URL: #18946
1 parent 761caec commit 0643e3e

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.6.0">9.6.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.6.1">9.6.1</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V9.md#9.6.0">9.6.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V9.md#9.5.0">9.5.0</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V9.md#9.4.0">9.4.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.3.0">9.3.0</a><br/>

doc/changelogs/CHANGELOG_V9.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
</tr>
99
<tr>
1010
<td>
11+
<a href="#9.6.1">9.6.1</a><br/>
1112
<a href="#9.6.0">9.6.0</a><br/>
1213
<a href="#9.5.0">9.5.0</a><br/>
1314
<a href="#9.4.0">9.4.0</a><br/>
@@ -31,6 +32,20 @@
3132
* [io.js](CHANGELOG_IOJS.md)
3233
* [Archive](CHANGELOG_ARCHIVE.md)
3334

35+
<a id="9.6.1"></a>
36+
## 2018-02-22, Version 9.6.1 (Current), @MylesBorins
37+
38+
This is a special release to fix potentially Semver-Major regression that was released in v9.6.0
39+
40+
### Notable Changes
41+
42+
* **events**:
43+
- `events.usingDomains` being set to `false` by default was removed in 9.6.0 which was a change in behavior compares to 9.5.0. This behavior change has been reverted and the `events` object now has `usingDomains` preset to `false`, which is the behavior in 9.x prior to 9.6.0 (Myles Borins) [#18944](https://github.com/nodejs/node/pull/18944)
44+
45+
### Commits
46+
47+
* [[`761caec379`](https://github.com/nodejs/node/commit/761caec379)] - **events**: preset `usingDomains` to false (Myles Borins) [#18944](https://github.com/nodejs/node/pull/18944)
48+
3449
<a id="9.6.0"></a>
3550
## 2018-02-22, Version 9.6.0 (Current), @MylesBorins
3651

src/node_version.h

Lines changed: 1 addition & 1 deletion
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)