Skip to content

v18.10.0 proposal - #44799

Merged
RafaelGSS merged 106 commits into
v18.xfrom
v18.10.0-proposal
Sep 28, 2022
Merged

v18.10.0 proposal#44799
RafaelGSS merged 106 commits into
v18.xfrom
v18.10.0-proposal

Conversation

@RafaelGSS

@RafaelGSSRafaelGSS commented Sep 26, 2022

Copy link
Copy Markdown
Member

2022-09-27, Version 18.10.0 (Current), @RafaelGSS

Notable changes

doc:

gyp:

http:

stream:

Commits

Commits

The upstream merge of e27e709d3c
accidentally removed code related to systemtap and dtrace.
Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
PR-URL: #44642
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
@nodejs-github-bot

Copy link
Copy Markdown
Collaborator

Review requested:

  • @nodejs/actions
  • @nodejs/gyp
  • @nodejs/net

@nodejs-github-botnodejs-github-bot added build Issues and PRs related to build files or the CI. cares Issues and PRs related to the c-ares dependency or the cares_wrap binding. dependencies Pull requests that update a dependency file. doc Issues and PRs related to the documentations. dont-land-on-v14.x meta Issues and PRs related to the general management of the project. needs-ci PRs that need a full CI run. quic Issues and PRs related to the QUIC implementation / HTTP/3. labels Sep 26, 2022
@RafaelGSSRafaelGSS added release Issues and PRs related to Node.js releases. and removed doc Issues and PRs related to the documentations. build Issues and PRs related to build files or the CI. meta Issues and PRs related to the general management of the project. cares Issues and PRs related to the c-ares dependency or the cares_wrap binding. needs-ci PRs that need a full CI run. quic Issues and PRs related to the QUIC implementation / HTTP/3. dependencies Pull requests that update a dependency file. dont-land-on-v14.x labels Sep 26, 2022
@nodejs-github-bot

This comment was marked as outdated.

aduh95and others added 9 commits September 26, 2022 16:13
Fixes: #43740
Backport-PR-URL: #43741
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #44247
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
This includes:
- Fixing `writableStream.abort(reason)`. Passing the reason was missing.
- Leaving a TODO to remove the internal abortReason property of
WritableStreamDefaultController.
Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com
PR-URL: #44327
Refs: https://streams.spec.whatwg.org/#writable-stream-abort
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
PR-URL: #44222
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
PR-URL: #44427
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Currently, DebugSymbolsTest.ReqWrapList fails on PPC64LE when Node has
been configured with Link Time Optimization (LTO) and using RHEL 8.5
and gcc:
```console
$ . /opt/rh/gcc-toolset-11/enable
$ export CC='ccache gcc'
$ export CXX='ccache g++'
$ ./configure --enable-lto
$ make -j8 cctest
...
21:52:27 [ RUN ] DebugSymbolsTest.ReqWrapList
21:52:27 ../test/cctest/test_node_postmortem_metadata.cc:203: Failure
21:52:27 Expected equality of these values:
21:52:27 expected
21:52:27 Which is: 140736537072320
21:52:27 calculated
21:52:27 Which is: 1099680328560
21:52:27 [ FAILED ] DebugSymbolsTest.ReqWrapList (43 ms)
```
After looking into this is seems that the compiler is tampering with the
`last` variable when compiling with LTO enabled. This commit suggests
adding volatile to this variable to prevent the compiler from tampering
with it.
PR-URL: #44341
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
PR-URL: #44472
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Explicitly document the attribute `Script.cachedDataRejected` in a
dedicated section.
Removes the documented option `produceCachedData` and the description
of `cachedDataRejected` in `vm.runInContext`, `vm.runInNewContext`,
and `vm.runInThisContext` as the created `vm.Script` instance is not
accessible from userland in these methods.
PR-URL: #44451
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Notable changes:
- A bug has been fixed in `uvwasi_fd_readdir()` that caused
the number of entries to be processed incorrectly.
PR-URL: #44524
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
PR-URL: #44499
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
RafaelGSS added a commit that referenced this pull request Sep 27, 2022
Notable changes:
doc:
* (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups (Tobias Nießen) <#44588>
gyp:
* libnode for ios app embedding (chexiongsheng) <#44210>
http:
* (SEMVER-MINOR) throw error on content-length mismatch (sidwebworks) (<#44378>)
stream:
* (SEMVER-MINOR) add `ReadableByteStream.tee()` (Daeyeon Jeong) (<#44505>)
PR-URL: #44799
@RafaelGSSRafaelGSS added the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@github-actionsgithub-actionsBot removed the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@nodejs-github-bot

This comment was marked as outdated.

@nodejs-github-bot

This comment was marked as outdated.

@RafaelGSS

Copy link
Copy Markdown
MemberAuthor

@nodejs/build looks like our machines are running out of space. Could you help me with that? ref: https://ci.nodejs.org/job/node-test-commit-osx/nodes=osx1015/47624/testReport/junit/(root)/test/pummel_test_fs_largefile/

Notable changes:
doc:
* (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups (Tobias Nießen) <#44588>
gyp:
* libnode for ios app embedding (chexiongsheng) <#44210>
http:
* (SEMVER-MINOR) throw error on content-length mismatch (sidwebworks) (<#44378>)
stream:
* (SEMVER-MINOR) add `ReadableByteStream.tee()` (Daeyeon Jeong) (<#44505>)
PR-URL: #44799
@RafaelGSS

Copy link
Copy Markdown
MemberAuthor

FYI @nodejs/releasers I'm postponing the release to tomorrow due to #44799 (comment).

@RafaelGSSRafaelGSS added the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@github-actionsgithub-actionsBot removed the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@nodejs-github-bot

nodejs-github-bot commented Sep 27, 2022

Copy link
Copy Markdown
Collaborator

@nodejs-github-bot

nodejs-github-bot commented Sep 27, 2022

Copy link
Copy Markdown
Collaborator

@RafaelGSS
RafaelGSS merged commit bdf069b into v18.xSep 28, 2022
@RafaelGSS
RafaelGSS deleted the v18.10.0-proposal branch September 28, 2022 17:32
RafaelGSS added a commit that referenced this pull request Sep 28, 2022
RafaelGSS added a commit that referenced this pull request Sep 28, 2022
Notable changes:
doc:
* (SEMVER-MINOR) deprecate modp1, modp2, and modp5 groups (Tobias Nießen) <#44588>
gyp:
* libnode for ios app embedding (chexiongsheng) <#44210>
http:
* (SEMVER-MINOR) throw error on content-length mismatch (sidwebworks) (<#44378>)
stream:
* (SEMVER-MINOR) add `ReadableByteStream.tee()` (Daeyeon Jeong) (<#44505>)
PR-URL: #44799
RafaelGSS added a commit to RafaelGSS/nodejs.org that referenced this pull request Sep 28, 2022
RafaelGSS added a commit to nodejs/nodejs.org that referenced this pull request Sep 28, 2022
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

releaseIssues and PRs related to Node.js releases.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

20 participants

@RafaelGSS@nodejs-github-bot@sgallagher@aduh95@daeyeon@tony-go@danbev@joyeecheung@legendecas@cjihrig@falsandtru@theanarkh@himself65@bnoordhuis@tniessen@lpinca@guybedford@MeowShe@meyfa@StefanStojanovic