Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v18.10.0 proposal #44799

Merged
merged 106 commits into from
Sep 28, 2022
Merged

v18.10.0 proposal #44799

merged 106 commits into from
Sep 28, 2022

Conversation

RafaelGSS
Copy link
Member

@RafaelGSS RafaelGSS commented Sep 26, 2022

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 <[email protected]>
PR-URL: #44642
Reviewed-By: Rafael Gonzaga <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
@nodejs-github-bot
Copy link
Collaborator

Review requested:

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

@nodejs-github-bot nodejs-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. v18.x Issues that can be reproduced on v18.x or PRs targeting the v18.x-staging branch. labels Sep 26, 2022
@RafaelGSS RafaelGSS 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.

aduh95 and others added 9 commits September 26, 2022 16:13
Fixes: #43740

Backport-PR-URL: #43741
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Geoffrey Booth <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
PR-URL: #44247
Reviewed-By: Rafael Gonzaga <[email protected]>
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 [email protected]
PR-URL: #44327
Refs: https://streams.spec.whatwg.org/#writable-stream-abort
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Benjamin Gruenbaum <[email protected]>
PR-URL: #44222
Reviewed-By: Geoffrey Booth <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
PR-URL: #44427
Reviewed-By: Darshan Sen <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
Reviewed-By: Qingyu Deng <[email protected]>
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 <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
PR-URL: #44472
Reviewed-By: Chengzhong Wu <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
Reviewed-By: Minwoo Jung <[email protected]>
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 <[email protected]>
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 <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Mohammed Keyvanzadeh <[email protected]>
PR-URL: #44499
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Zeyu "Alex" Yang <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Minwoo Jung <[email protected]>
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
@RafaelGSS RafaelGSS added the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@github-actions github-actions bot 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
Member Author

@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
Member Author

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

@RafaelGSS RafaelGSS added the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@github-actions github-actions bot removed the request-ci Add this label to start a Jenkins CI on a PR. label Sep 27, 2022
@nodejs-github-bot
Copy link
Collaborator

nodejs-github-bot commented Sep 27, 2022

@nodejs-github-bot
Copy link
Collaborator

nodejs-github-bot commented Sep 27, 2022

@RafaelGSS RafaelGSS merged commit bdf069b into v18.x Sep 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 free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release Issues and PRs related to Node.js releases. v18.x Issues that can be reproduced on v18.x or PRs targeting the v18.x-staging branch.
Projects
None yet
Development

Successfully merging this pull request may close these issues.