| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Notable Changes: buffer: * add isAscii method (Yagiz Nizipli) #46046 fs: * add statfs() functions (Colin Ihrig) #46358 src,lib: * add constrainedMemory API for process (theanarkh) #46218 v8: * support gc profile (theanarkh) #46255 vm: * expose cachedDataRejected for vm.compileFunction (Anna Henningsen) #46320 PR-URL: #46920
|
@juanarbol any reason #46839 is not in the release? |
Sorry, something went wrong.
Not intended -maybe I forgot to add it in my notes, sorry, really sorry-, let me land it and re-run CI :) Thanks for the heads up. Landed! Thanks again |
Sorry, something went wrong.
Notable Changes: buffer: * (SEMVER-MINOR) add isAscii method (Yagiz Nizipli) #46046 doc,lib,src,test: * rename --test-coverage (Colin Ihrig) #46017 fs: * (SEMVER-MINOR) add statfs() functions (Colin Ihrig) #46358 src,lib: * (SEMVER-MINOR) add constrainedMemory API for process (theanarkh) #46218 test_runner: * add initial code coverage support (Colin Ihrig) #46017 * (SEMVER-MINOR) add reporters (Moshe Atlow) #45712 v8: * (SEMVER-MINOR) support gc profile (theanarkh) #46255 vm: * (SEMVER-MINOR) expose cachedDataRejected for vm.compileFunction (Anna Henningsen) #46320 PR-URL: #46920
|
Would it be possible to include 1d5058d from #46646, in order to mitigate the breaking changes to ICU72 that were introduced in 18.13, as detailed in #46123? |
Sorry, something went wrong.
The description contains incorrect reference to the node pull request #2 which is picked up from the original commit message (That is actually a reference to the fork's pulls request.) @juanarbol, I'm not sure what the procedures would be to correct this, But I have to express my apologies for the the inconveniences I'm caused of. |
Sorry, something went wrong.
I don't see any problem amending the commit message; I would like to know from other @nodejs/releasers @sepehrst could you please give me the right commit message? |
Sorry, something went wrong.
Just the (#2) needs to be removed from the commit message. |
Sorry, something went wrong.
Yeah, I can do that :)
Landed!
Landed!
Landed! Thank you all for the heads-up! And the nice catches! Appreciated, this release will be better <3 |
Sorry, something went wrong.
Original commit message:
[bigint] Convert BigInt property names to decimal
Hexadecimal/octal/binary BigInt property names should be converted
to decimal, i.e. the following object literals should all be equivalent:
var o = {0xF: 1}, p = {0xFn: 1}, q = {15: 1}, r = {15n: 1}.
Test case by yangwenming@bytedance.com, uploaded at
https://chromium-review.googlesource.com/c/v8/v8/+/3634937
Fixed: v8:10600
Change-Id: Ie1d8a16e95697cd31cbc0784843779c921ce91fa
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3642302
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80490}
Refs: v8/v8@c875e86
PR-URL: #46501
Refs: v8/v8@c875e86
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
We had a number of places in which we created an `Environment` instance by performing each step in `CreateEnvironment` manually. Instead, just call the function itself. PR-URL: #45886 Backport-PR-URL: #46330 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
The test runner is bootstrapped synchronously, with the exception of importing custom reporters. To better handle asynchronously throw errors, this commit introduces an internal error type that can be checked for from the test runner's uncaughtException handler. After #46707 and this change land, the other throw statement in the uncaughtException handler can be removed. This will allow the test runner to handle errors thrown from outside of tests (which currently prevents the test runner from reporting results). PR-URL: #46720 Backport-PR-URL: #46839 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
This reverts commit dee882e. Moved the test that demonstrated what this commit was fixing to the `known_issues` folder. Fixes: #46234 PR-URL: #46721 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Original commit message:
[intl] Revert date formatting behavior change from ICU 72
Replace U+202F with U+0020 after formatting date. This lets websites
continue to work without any changes.
This matches Firefox behavior, according to
https://bugzilla.mozilla.org/show_bug.cgi?id=1806042#c17.
Bug: chromium:1414292, chromium:1401829, chromium:1392814
Change-Id: I7c2b58414d0890f8705e737f903403dc54e5fe57
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4237675
Commit-Queue: Adam Klein <adamk@chromium.org>
Reviewed-by: Shu-yu Guo <syg@chromium.org>
Cr-Commit-Position: refs/heads/main@{#85757}
Refs: v8/v8@90be99f
PR-URL: #46646
Refs: #46123
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Notable changes: buffer: * (SEMVER-MINOR) add isAscii method (Yagiz Nizipli) #46046 doc,lib,src,test: * rename --test-coverage (Colin Ihrig) #46017 fs: * (SEMVER-MINOR) add statfs() functions (Colin Ihrig) #46358 src,lib: * (SEMVER-MINOR) add constrainedMemory API for process (theanarkh) #46218 test_runner: * add initial code coverage support (Colin Ihrig) #46017 * (SEMVER-MINOR) add reporters (Moshe Atlow) #45712 v8: * (SEMVER-MINOR) support gc profile (theanarkh) #46255 vm: * (SEMVER-MINOR) expose cachedDataRejected for vm.compileFunction (Anna Henningsen) #46320 PR-URL: #46920
Sorry, something went wrong.
The stand outs from that are npm@9.6.0 and undici@5.20.0. npm@9.6.0 at least was released after Node.js 18.14.1 was. I'd suggest running another CITGM for 18.14.1 and using that as the baseline to compare the CITGM for this PR against. |
Sorry, something went wrong.
|
$ ncu-ci citgm 3135 3131 FAILURE: 43 failures in 3131 not present in 3135
┌────────────────────────┬───────────────────┬─────────────────────────┬─────────────────────────┬───────────────────────┬─────────────────────────┬──────────────────────┬─────────────────┐
│ (index) │ 0 │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │
├────────────────────────┼───────────────────┼─────────────────────────┼─────────────────────────┼───────────────────────┼─────────────────────────┼──────────────────────┼─────────────────┤
│ win-vs2019 │ 'async-v3.2.4' │ 'body-parser-v1.20.2' │ 'prom-client-v14.1.1' │ │ │ │ │
│ fedora-last-latest-x64 │ 'bcrypt-v5.1.0' │ 'bluebird-v3.7.2' │ 'ava-v5.2.0' │ 'fastify-v4.14.0' │ 'level-v8.0.0' │ 'jest-v29.4.3' │ │
│ rhel8-ppc64le │ 'esprima-v4.0.1' │ 'csv-parser-v3.0.0' │ 'fastify-v4.14.0' │ 'resolve-v1.22.1' │ 'prom-client-v14.1.1' │ 'rimraf-v4.3.0' │ 'rewire-v6.0.0' │
│ rhel8-s390x │ 'fastify-v4.14.0' │ 'rewire-v6.0.0' │ 'rimraf-v4.3.0' │ 'tough-cookie-v4.1.2' │ 'torrent-stream-v1.2.1' │ │ │
│ aix72-ppc64 │ 'fastify-v4.14.0' │ 'rimraf-v4.3.0' │ 'torrent-stream-v1.2.1' │ │ │ │ │
│ rhel8-x64 │ 'jest-v29.4.3' │ 'torrent-stream-v1.2.1' │ │ │ │ │ │
│ debian10-x64 │ 'async-v3.2.4' │ 'pino-v8.11.0' │ 'serialport-v10.5.0' │ 'jest-v29.4.3' │ │ │ │
│ ubuntu1804-64 │ 'async-v3.2.4' │ 'pino-v8.11.0' │ 'serialport-v10.5.0' │ 'jest-v29.4.3' │ 'torrent-stream-v1.2.1' │ │ │
│ fedora-latest-x64 │ 'fastify-v4.14.0' │ 'inherits-v2.0.4' │ 'jest-v29.4.3' │ 'ember-cli-v4.11.0' │ 'leveldown-v6.1.1' │ 'serialport-v10.5.0' │ │
│ osx1015 │ 'fastify-v4.14.0' │ 'ember-cli-v4.11.0' │ │ │ │ │ │
└────────────────────────┴───────────────────┴─────────────────────────┴─────────────────────────┴───────────────────────┴─────────────────────────┴──────────────────────┴─────────────────┘ |
Sorry, something went wrong.
|
$ ncu-ci citgm 3135 3136 FAILURE: 19 failures in 3136 not present in 3135
┌────────────────────────┬─────────────────────────┬─────────────────────────┬──────────────────────┐
│ (index) │ 0 │ 1 │ 2 │
├────────────────────────┼─────────────────────────┼─────────────────────────┼──────────────────────┤
│ rhel8-s390x │ 'torrent-stream-v1.2.1' │ │ │
│ fedora-last-latest-x64 │ 'bcrypt-v5.1.0' │ 'undici-v5.20.0' │ │
│ aix72-ppc64 │ 'async-v3.2.4' │ 'torrent-stream-v1.2.1' │ │
│ rhel8-x64 │ 'torrent-stream-v1.2.1' │ │ │
│ win-vs2019 │ 'async-v3.2.4' │ 'fastify-v4.14.1' │ │
│ debian10-x64 │ 'bcrypt-v5.1.0' │ 'leveldown-v6.1.1' │ │
│ ubuntu1804-64 │ 'async-v3.2.4' │ 'pino-v8.11.0' │ 'serialport-v10.5.0' │
│ rhel8-ppc64le │ 'level-v8.0.0' │ 'vinyl-v3.0.0' │ 'ws-v8.12.1' │
│ fedora-latest-x64 │ 'async-v3.2.4' │ 'ember-cli-v4.11.0' │ │
│ osx1015 │ 'ember-cli-v4.11.0' │ │ │
└────────────────────────┴─────────────────────────┴─────────────────────────┴──────────────────────┘ |
Sorry, something went wrong.
Notable changes: buffer: * (SEMVER-MINOR) add isAscii method (Yagiz Nizipli) #46046 doc,lib,src,test: * rename --test-coverage (Colin Ihrig) #46017 fs: * (SEMVER-MINOR) add statfs() functions (Colin Ihrig) #46358 src,lib: * (SEMVER-MINOR) add constrainedMemory API for process (theanarkh) #46218 test_runner: * add initial code coverage support (Colin Ihrig) #46017 * (SEMVER-MINOR) add reporters (Moshe Atlow) #45712 v8: * (SEMVER-MINOR) support gc profile (theanarkh) #46255 vm: * (SEMVER-MINOR) expose cachedDataRejected for vm.compileFunction (Anna Henningsen) #46320 PR-URL: #46920
| Back | FazBrowse Home | New Git URL |
2023-03-07, Version 18.15.0 'Hydrogen' (LTS), @BethGriggs prepared by @juanarbol
Notable Changes
Commits