-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Propose v6.3.0 #7441
Propose v6.3.0 #7441
Conversation
ok rebase is messed up, idk why |
It would be great to see V8 5.1 landed with this release 😃 |
@Fishrock123 that could have been my fault. I had started cherry-picking a few commits on Monday morning. Also, no v8_inspector? |
@evanlucas I hadn't realized that the necessary things were in to pull in the inspector so I didn't remove the labels. Considering this will end up being next week we can probably go and untag those if it is to land. That means 1-2 other things can probably also be untagged. (the |
@targos do you think we can get v8 5.1 ( which I believe is semver-minor ) on this upcoming release? |
I think we should wait until we are quite sure that there are no breaking ABI changes |
@bricss @NawarA also interested in seeing v8 5.1 land, especially for the perf improvements and garbage collection changes. |
re V8 5.1, I left a note about that here for anyone that's overly excited about it. TL;DR: it's not coming in this release. |
Ugh, lots of conflicts with the inspector. Going to try resolving when I'm back later today. |
e4107f2
to
7df3cd1
Compare
CI: https://ci.nodejs.org/job/node-test-pull-request/3183/ There should be 6 failures I think... I know how to resolve 1, I suspect the other 5 come from some |
ba628ef for those format changes, maybe that entire PR shouldn’t be in here? |
Ah, I think the Upgrade v8 PR probably included those without updating the URLs? cc @ofrobots, that practice could cause problems such as this |
Yep… looks like they were landed as part of #7016, just with their old PR-URL. |
The require('constants') module is currently undocumented and mashes together unrelated constants. This refactors the require('constants') in favor of distinct os.constants, fs.constants, and crypto.constants that are specific to the modules for which they are relevant. The next step is to document those within the specific modules. PR-URL: #6534 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Robert Lindstaedt <robert.lindstaedt@gmail.com> Conflicts: doc/api/fs.md
Since debugger::Agent's interface is not exported, third party embedders will have linking errors if they call Environment's destructor directly. PR-URL: #3098 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Pick up v8 inspector from [1]. This is the standalone version of the devtools debug protocol. [1] pavelfeldman/v8_inspector@e1bb206 PR-URL: #6792 Reviewed-By: jasnell - James M Snell <jasnell@gmail.com> Reviewed-By: addaleax - Anna Henningsen <anna@addaleax.net> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
This change introduces experimental v8-inspector support. This brings the DevTools debug protocol allowing Node.js to be debugged with Chrome DevTools native, or through other debuggers supporting that protocol. Partial WebSocket support, to the extent required by DevTools, is included. This is derived from the implementation in Blink. v8-inspector support can be disabled by the --without-inspector configure flag. PR-URL: #6792 Reviewed-By: jasnell - James M Snell <jasnell@gmail.com> Reviewed-By: addaleax - Anna Henningsen <anna@addaleax.net> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
PR-URL: #6792 Reviewed-By: jasnell - James M Snell <jasnell@gmail.com> Reviewed-By: addaleax - Anna Henningsen <anna@addaleax.net> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Use `HAVE_INSPECTOR` as the 0/1 boolean macro that it is, as opposed to a defined/not-defined boolean. PR-URL: #7078 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Pick the latest v8_inspector [1] with: * V8 5.1 compatibility * Modify parse builder templates to make coverity happy * The whitespace differences in the jinja2 sub-dependency do exist upstream. I am not sure how I missed them in the original import (ed2eac). [1] pavelfeldman/v8_inspector@3b56732 PR-URL: #7118 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
PR-URL: #7466 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Bryan English <bryan@bryanenglish.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: #7467 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Refs: nodejs/docs#76 PR-URL: #6825 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Some CI jobs compile Node and run the tests on different machines. This change enables collaborators to have finer control over what runs on these jobs, such as the exact suites to run. The test-ci rule was split into js and native, to allow for addons to be compiled only on the machines that are going to run them. Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> PR-URL: #7317
Sometimes, a SmartOS bug results in ECONNREFUSED when trying to connect to the TLS server that the test starts. Retry in that situation. Fixes: #5111 Refs: https://smartos.org/bugview/OS-2767 PR-URL: #7505 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Avoid transient DNS issues in test sequential/test-net-GH-5504 by using the IP address instead of the 'localhost' host name. Fixes: #6611 PR-URL: #7524 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
The current documentation states that if run something like `node app.js` then in our process.argv array first elements is `node`, but actually it's `process.execPath` not `node` as documentation currently suggests. Fixes: #7434 PR-URL: #7449 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
7df3cd1
to
63d361b
Compare
Updated, this should pass the CI. https://ci.nodejs.org/job/node-test-pull-request/3184/ I still have an odd npm problem to sort out though: #7515 (comment) |
oh, thanks github |
Great, now I can't reopen this either :( |
@Fishrock123: this is the rationale used for the PR-URL for cherry-picks on deps/v8:
EDIT: I'm on vacation this week – will be slow to respond. |
Agreed ^, I've done it a few times when it's not clean and indented the original commit message including PR-URL and put new details at the top-level. Unfortunately changelog-maker doesn't know what to make of this and picks up the first one it finds (iirc) so we'll need to address this if we do it often. It really should just be looking for the least indented PR-URL, or even being strict and looking for |
Notable changes: * buffer: Added `buffer.swap64()` to compliment `swap16()` & `swap32()`. (Zach Bjornson) #7157 * build: New `configure` options have been added for building Node.js as a shared library. (Stefan Budeanu) #6994 - The options are: `--shared`, `--without-v8-platform` & `--without-bundled-v8`. * crypto: Root certificates have been updated. (Ben Noordhuis) #7363 * debugger: The server address is now configurable via `--debug=<address>:<port>`. (Ben Noordhuis) #3316 * npm: Upgraded npm to v3.10.3 (Kat Marchán) #7515 & (Rebecca Turner) #7410 * readline: Added the `prompt` option to the readline constructor. (Evan Lucas) #7125 * repl / vm: `sigint`/`ctrl+c` will now break out of infinite loops without stopping the Node.js instance. (Anna Henningsen) #6635 * src: - Added a `node::FreeEnvironment` public C++ API. (Cheng Zhao) #3098 - Refactored `require('constants')`, constants are now available directly from their respective modules. (James M Snell) #6534 * stream: Improved `readable.read()` performance by up to 70%. (Brian White) #7077 * timers: `setImmediate()` is now up to 150% faster in some situations. (Andras) #6436 * util: Added a `breakLength` option to `util.inspect()` to control how objects are formatted across lines. (cjihrig) #7499 * v8-inspector: Experimental support has been added for debugging Node.js over the inspector protocol. (Ali Ijaz Sheikh) #6792 - *Note: This feature is experimental, and it could be altered or removed.* - You can try this feature by running Node.js with the `--inspect` flag. Refs: #7441 PR-URL: #7550
Notable changes: * buffer: Added `buffer.swap64()` to compliment `swap16()` & `swap32()`. (Zach Bjornson) #7157 * build: New `configure` options have been added for building Node.js as a shared library. (Stefan Budeanu) #6994 - The options are: `--shared`, `--without-v8-platform` & `--without-bundled-v8`. * crypto: Root certificates have been updated. (Ben Noordhuis) #7363 * debugger: The server address is now configurable via `--debug=<address>:<port>`. (Ben Noordhuis) #3316 * npm: Upgraded npm to v3.10.3 (Kat Marchán) #7515 & (Rebecca Turner) #7410 * readline: Added the `prompt` option to the readline constructor. (Evan Lucas) #7125 * repl / vm: `sigint`/`ctrl+c` will now break out of infinite loops without stopping the Node.js instance. (Anna Henningsen) #6635 * src: - Added a `node::FreeEnvironment` public C++ API. (Cheng Zhao) #3098 - Refactored `require('constants')`, constants are now available directly from their respective modules. (James M Snell) #6534 * stream: Improved `readable.read()` performance by up to 70%. (Brian White) #7077 * timers: `setImmediate()` is now up to 150% faster in some situations. (Andras) #6436 * util: Added a `breakLength` option to `util.inspect()` to control how objects are formatted across lines. (cjihrig) #7499 * v8-inspector: Experimental support has been added for debugging Node.js over the inspector protocol. (Ali Ijaz Sheikh) #6792 - *Note: This feature is experimental, and it could be altered or removed.* - You can try this feature by running Node.js with the `--inspect` flag. Refs: #7441 PR-URL: #7550
Notable changes: * buffer: Added `buffer.swap64()` to compliment `swap16()` & `swap32()`. (Zach Bjornson) #7157 * build: New `configure` options have been added for building Node.js as a shared library. (Stefan Budeanu) #6994 - The options are: `--shared`, `--without-v8-platform` & `--without-bundled-v8`. * crypto: Root certificates have been updated. (Ben Noordhuis) #7363 * debugger: The server address is now configurable via `--debug=<address>:<port>`. (Ben Noordhuis) #3316 * npm: Upgraded npm to v3.10.3 (Kat Marchán) #7515 & (Rebecca Turner) #7410 * readline: Added the `prompt` option to the readline constructor. (Evan Lucas) #7125 * repl / vm: `sigint`/`ctrl+c` will now break out of infinite loops without stopping the Node.js instance. (Anna Henningsen) #6635 * src: - Added a `node::FreeEnvironment` public C++ API. (Cheng Zhao) #3098 - Refactored `require('constants')`, constants are now available directly from their respective modules. (James M Snell) #6534 * stream: Improved `readable.read()` performance by up to 70%. (Brian White) #7077 * timers: `setImmediate()` is now up to 150% faster in some situations. (Andras) #6436 * util: Added a `breakLength` option to `util.inspect()` to control how objects are formatted across lines. (cjihrig) #7499 * v8-inspector: Experimental support has been added for debugging Node.js over the inspector protocol. (Ali Ijaz Sheikh) #6792 - *Note: This feature is experimental, and it could be altered or removed.* - You can try this feature by running Node.js with the `--inspect` flag. Refs: #7441 PR-URL: #7550
PR-URL: nodejs#86 Related: nodejs/node#7550, nodejs/node#7441 Signed-off-by: Hans Kristian Flaatten <hans.kristian.flaatten@dnt.no>
PR-URL: #209 Related: nodejs/node#7550, nodejs/node#7441 Signed-off-by: Hans Kristian Flaatten <hans.kristian.flaatten@dnt.no>
PR-URL: docker-library#1922 Related: nodejs/docker-node#210, nodejs/node#7550, nodejs/node#7441 Signed-off-by: Hans Kristian Flaatten <hans.kristian.flaatten@dnt.no>
PR-URL: #209 Related: nodejs/node#7550, nodejs/node#7441 Signed-off-by: Hans Kristian Flaatten <hans.kristian.flaatten@dnt.no>
I may have gotten some of the merge conflicts wrong.
Release hopefully this week?
CI: https://ci.nodejs.org/job/node-test-pull-request/3090/
ac8e1bf609
] - buffer: improve creation performance. (Ingvar Stepanyan) #7349db708a750c
] - crypto: update root certificates (Ben Noordhuis) #73638e927c7589
] - crypto,tls: perf improvements for crypto and tls getCiphers (James M Snell) #7225ae1767635e
] - deps: upgrade npm to 3.10.2 (Rebecca Turner) #7410c544213717
] - deps: backport 7dfb5beeec from V8 upstream (Myles Borins) #7348aa79aaf280
] - doc: add CTC meeting minutes 2016-06-15 (Josh Gavant) #7320ba8dac991e
] - doc: minor rewording to the GitHub issue/pr templates (Jeremiah Senkpiel) #7403c4d3580eb1
] - doc: add lance to collaborators (Lance Ball) #7407b5e9010450
] - doc: update "who to cc in issues" chart (Jeremiah Senkpiel) #66946d9549c255
] - doc: fix link in the stream doc (Italo A. Casas) #7347d584c64c0b
] - doc: fix repl defineCommand example (akki) #7365924e4f8117
] - doc: update build instructions for Windows (João Reis) #728598b7cd6c61
] - doc: addadded:
information for tls (Italo A. Casas) #7018e6135baed3
] - doc: mention http request "aborted" events (Kyle E. Mitchell) #72707a17139725
] - doc: add RReverser to collaborators (Ingvar Stepanyan) #7370d73c99f071
] - doc: add argument information for socket.destroy() (Rich Trott) #723822f3336562
] - doc: general improvements to os.md copy (James M Snell) #7124e7279f1afb
] - doc: fix typos in the stream doc (vsemozhetbyt) #73365c6e24e9c1
] - doc: document socket.destroyed (Tushar Mathur) #6128cd7c29e471
] - doc: correctadded:
information for fs.access (Richard Lau) #72996aa179b4a6
] - doc: addadded:
information for repl (Anna Henningsen) #725608a9aa31e1
] - doc: fix broken link in vm.md (Luigi Pinca) #730412fbac102b
] - doc: fix cluster worker 'message' event (cjihrig) #73091a0ed26883
] - doc: fix events typo (Greyson Parrelli) #73291e7a7be1ad
] - doc: clarify fs.access works on directories too. (Lance Ball) #732104c3878f51
] - punycode: update to v2.0.0 (Mathias Bynens) #7267c521249908
] - (SEMVER-MINOR) readline: allow passing prompt to constructor (Evan Lucas) #7125da1dffb535
] - (SEMVER-MINOR) readline: return old status from _setRawMode (Anna Henningsen) #6635e4db71638b
] - repl: fix tab completion for defined commands (Prince J Wesley) #7364aad7d4164d
] - (SEMVER-MINOR) repl: break on sigint/ctrl+c (Anna Henningsen) #6635d8fee367af
] - (SEMVER-MINOR) src: add node::FreeEnvironment public API (Cheng Zhao) #3098bfcc650eed
] - (SEMVER-MINOR) src: refactor require('constants') (James M Snell) #6534cd38401724
] - src: fix Windows segfault with--eval
(Bryce Simonds) #69386dc0dae830
] - src: rename "node" script to "bootstrap_node" (Daniel Bevenius) #72775f35204c9e
] - (SEMVER-MINOR) stream: improve Readable.read() performance (Brian White) #70774e99bf600b
] - string_decoder: fix bad utf8 character handling (Brian White) #7310f4a067b856
] - _Revert_ "test: mark test-vm-timeout flaky on windows" (Anna Henningsen) #7373dad15cc624
] - test: fix flaky test-vm-timeout (Anna Henningsen) #7373044a0be46f
] - test: add test for exec() known issue (Rich Trott) #7375bf18e04916
] - test: add more UTF-8 StringDecoder tests (Martin von Gagern) #73104000e0e08b
] - test: fix flaky test-fs-watch-encoding on OS X (Rich Trott) #7356610f40d230
] - test: remove internet/test-tls-connnect-cnnic (Ben Noordhuis) #73635e48925cd6
] - test: mark test-vm-timeout flaky on windows (Rich Trott) #7359e22205bc7d
] - test: refresh the tmpdir before using (Rich Trott) #7327e2bf250a29
] - test: add tests for some stream.Readable uses (Anna Henningsen) #7260f3951728cc
] - tls: avoid calling Buffer.byteLength multiple times (James M Snell) #723692913a0a60
] - tools: output include guards in mk-ca-bundle.pl (Ben Noordhuis) #736359f9127bd9
] - tools: update certdata.txt (Ben Noordhuis) #736314e542eaf4
] - vm: test for abort condition of current invocation (Anna Henningsen) #737314d37949ec
] - (SEMVER-MINOR) vm: add ability to break on sigint/ctrl+c (Anna Henningsen) #6635