Skip to content

Commit

Permalink
2024-12-05, Version 23.4.0 (Current)
Browse files Browse the repository at this point in the history
Notable changes:

assert:
  * (SEMVER-MINOR) add partialDeepStrictEqual (Giovanni Bucci) #54630
cli:
  * (SEMVER-MINOR) implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) #55604
doc,lib,src,test:
  * (SEMVER-MINOR) unflag sqlite module (Colin Ihrig) #55890
net:
  * (SEMVER-MINOR) support blocklist for net.Server (theanarkh) #56079
process:
  * (SEMVER-MINOR) deprecate `features.{ipv6,uv}` and `features.tls_*` (René) #55545
sqlite:
  * (SEMVER-MINOR) add `StatementSync.prototype.iterate` method (tpoisseau) #54213

PR-URL: #56119
  • Loading branch information
targos committed Dec 5, 2024
1 parent 52dfe5a commit 747338a
Show file tree
Hide file tree
Showing 10 changed files with 175 additions and 23 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ release.
</tr>
<tr>
<td valign="top">
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a></b><br/>
<b><a href="doc/changelogs/CHANGELOG_V23.md#23.4.0">23.4.0</a></b><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.3.0">23.3.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.2.0">23.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.1.0">23.1.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V23.md#23.0.0">23.0.0</a><br/>
Expand Down
2 changes: 1 addition & 1 deletion doc/api/assert.md
Original file line number Diff line number Diff line change
Expand Up @@ -2551,7 +2551,7 @@ argument.
## `assert.partialDeepStrictEqual(actual, expected[, message])`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

> Stability: 1.0 - Early development
Expand Down
10 changes: 5 additions & 5 deletions doc/api/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,7 @@ See [Loading ECMAScript modules using `require()`][].
<!-- YAML
added: v22.5.0
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55890

Check warning on line 1643 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: SQLite is unflagged but still experimental.
-->
Expand Down Expand Up @@ -2422,7 +2422,7 @@ subtests inherit this value from their parent. The default value is `Infinity`.
<!-- YAML
added: v22.3.0
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55897

Check warning on line 2426 in doc/api/cli.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Snapsnot testing is no longer experimental.
-->
Expand Down Expand Up @@ -2540,7 +2540,7 @@ Print stack traces for deprecations.
### `--trace-env`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

Print information about any access to environment variables done in the current Node.js
Expand All @@ -2563,15 +2563,15 @@ To print the stack trace of the access, use `--trace-env-js-stack` and/or
### `--trace-env-js-stack`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

In addition to what `--trace-env` does, this prints the JavaScript stack trace of the access.

### `--trace-env-native-stack`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

In addition to what `--trace-env` does, this prints the native stack trace of the access.
Expand Down
6 changes: 3 additions & 3 deletions doc/api/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@ It is recommended to use the `new` qualifier instead. This applies to all REPL c

<!-- YAML
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55892

Check warning on line 3764 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only.
-->
Expand All @@ -3774,7 +3774,7 @@ will throw an error in a future version.

<!-- YAML
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55545

Check warning on line 3778 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only deprecation.
-->
Expand All @@ -3787,7 +3787,7 @@ These properties are unconditionally `true`. Any checks based on these propertie

<!-- YAML
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55545

Check warning on line 3791 in doc/api/deprecations.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: Documentation-only deprecation.
-->
Expand Down
6 changes: 3 additions & 3 deletions doc/api/errors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2439,7 +2439,7 @@ object.
### `ERR_QUIC_APPLICATION_ERROR`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

> Stability: 1 - Experimental
Expand Down Expand Up @@ -2487,7 +2487,7 @@ Opening a QUIC stream failed.
### `ERR_QUIC_TRANSPORT_ERROR`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

> Stability: 1 - Experimental
Expand All @@ -2499,7 +2499,7 @@ A QUIC transport error occurred.
### `ERR_QUIC_VERSION_NEGOTIATION_ERROR`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

> Stability: 1 - Experimental
Expand Down
10 changes: 5 additions & 5 deletions doc/api/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -1930,7 +1930,7 @@ A boolean value that is `true` if the current Node.js build includes the inspect
<!-- YAML
added: v0.5.3
deprecated: REPLACEME
deprecated: v23.4.0
-->
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are
Expand Down Expand Up @@ -1967,7 +1967,7 @@ A boolean value that is `true` if the current Node.js build includes support for
<!-- YAML
added: v4.8.0
deprecated: REPLACEME
deprecated: v23.4.0
-->
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
Expand All @@ -1983,7 +1983,7 @@ This value is therefore identical to that of `process.features.tls`.
<!-- YAML
added: v0.11.13
deprecated: REPLACEME
deprecated: v23.4.0
-->
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
Expand All @@ -1999,7 +1999,7 @@ This value is therefore identical to that of `process.features.tls`.
<!-- YAML
added: v0.5.3
deprecated: REPLACEME
deprecated: v23.4.0
-->
> Stability: 0 - Deprecated. Use `process.features.tls` instead.
Expand Down Expand Up @@ -2028,7 +2028,7 @@ A value that is `"strip"` if Node.js is run with `--experimental-strip-types`,
<!-- YAML
added: v0.5.3
deprecated: REPLACEME
deprecated: v23.4.0
-->
> Stability: 0 - Deprecated. This property is always true, and any checks based on it are
Expand Down
2 changes: 1 addition & 1 deletion doc/api/sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ values in `namedParameters` and `anonymousParameters`.
### `statement.iterate([namedParameters][, ...anonymousParameters])`

<!-- YAML
added: REPLACEME
added: v23.4.0
-->

* `namedParameters` {Object} An optional object used to bind named parameters.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -3343,7 +3343,7 @@ added:
- v22.2.0
- v20.15.0
changes:
- version: REPLACEME
- version: v23.4.0
pr-url: https://github.com/nodejs/node/pull/55895

Check warning on line 3347 in doc/api/test.md

View workflow job for this annotation

GitHub Actions / lint-pr-url

pr-url doesn't match the URL of the current PR.
description: This function is no longer experimental.
-->
Expand Down
Loading

0 comments on commit 747338a

Please sign in to comment.