Skip to content

Commit

Permalink
2022-03-10, Version 17.7.1 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

Fixed regression in url.resolve()

This release fixes an issue introduced in Node.js v17.7.0 when the url
has @ characters in it, which showed up when using yarn v1. This
version reverts the change that introduced the regression

PR-URL: #42285
  • Loading branch information
sxa committed Mar 10, 2022
1 parent 96a9e00 commit 3486f40
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -33,7 +33,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.7.0">17.7.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V17.md#17.7.1">17.7.1</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.7.0">17.7.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.6.0">17.6.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.5.0">17.5.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V17.md#17.4.0">17.4.0</a><br/>
Expand Down
17 changes: 17 additions & 0 deletions doc/changelogs/CHANGELOG_V17.md
Expand Up @@ -8,6 +8,7 @@
</tr>
<tr>
<td>
<a href="#17.7.1">17.7.1</a><br/>
<a href="#17.7.0">17.7.0</a><br/>
<a href="#17.6.0">17.6.0</a><br/>
<a href="#17.5.0">17.5.0</a><br/>
Expand Down Expand Up @@ -41,6 +42,22 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)

<a id="17.7.1"></a>

## 2022-03-10, Version 17.7.1 (Current), @sxa

### Notable Changes

#### Fixed regression in url.resolve()

This release fixes an issue introduced in Node.js v17.7.0 when the url
has @ characters in it, which showed up when using yarn v1. This version
reverts the change that introduced the regression.

### Commits

* \[[`96a9e00fb3`](https://github.com/nodejs/node/commit/96a9e00fb3)] - **url**: revert fix url.parse() for `@hostname` (Antoine du Hamel) [#42280](https://github.com/nodejs/node/pull/42280)

<a id="17.7.0"></a>

## 2022-03-09, Version 17.7.0 (Current), @BethGriggs prepared by @sxa
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Expand Up @@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""

#define NODE_VERSION_IS_RELEASE 0
#define NODE_VERSION_IS_RELEASE 1

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down

0 comments on commit 3486f40

Please sign in to comment.