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

deps: upgrade V8 to 4.5.103.33 #2870

Closed
wants to merge 1 commit into from
Closed

Conversation

ofrobots
Copy link
Contributor

This brings in the patches from 4.5.103.30...4.5.103.33 fixing the issue with
computed property names not working in nested literals.

Full V8 4.5 commit log at:
https://chromium.googlesource.com/v8/v8.git/+log/branch-heads/4.5

Fixes: #2507

R=@bnoordhuis
/cc @nodejs/v8

This brings in the patches from 4.5.103.30...4.5.103.33 fixing the issue with
computed property names not working in nested literals.

Full V8 4.5 commit log at:
https://chromium.googlesource.com/v8/v8.git/+log/branch-heads/4.5

Fixes: nodejs#2507
@ofrobots ofrobots added v8 engine Issues and PRs related to the V8 dependency. land-on-master labels Sep 15, 2015
@ofrobots
Copy link
Contributor Author

@indutny
Copy link
Member

indutny commented Sep 15, 2015

@ofrobots we have cherry-picked several commits into master. Do you think it might be useful to put them in this PR too?

@ofrobots
Copy link
Contributor Author

@indutny this PR is an application of the patches from 4.5.103.30...4.5.103.33 rather than a replacement of deps/v8 code. This should preserve the cherry-picks being floated by Node (unless they are in negation of the patch arriving from upstream.) You can browse the tree here https://github.com/ofrobots/node/tree/4.5.103.33 to verify that the cherry-picks are still there.

@indutny
Copy link
Member

indutny commented Sep 15, 2015

Oh, true! Sorry about this.

@indutny
Copy link
Member

indutny commented Sep 15, 2015

LGTM

2 similar comments
@targos
Copy link
Member

targos commented Sep 15, 2015

LGTM

@bnoordhuis
Copy link
Member

LGTM

@Fishrock123
Copy link
Contributor

CI is good, LGTM

ofrobots added a commit that referenced this pull request Sep 15, 2015
This brings in the patches from 4.5.103.30...4.5.103.33 fixing the issue with
computed property names not working in nested literals.

Full V8 4.5 commit log at:
https://chromium.googlesource.com/v8/v8.git/+log/branch-heads/4.5

Fixes: #2507
PR-URL: #2870
Reviewed-By: indutny - Fedor Indutny <[email protected]>
Reviewed-By: targos - Michaël Zasso <[email protected]>
Reviewed-By: bnoordhuis - Ben Noordhuis <[email protected]>
Reviewed-By: fishrock123 - Jeremiah Senkpiel <[email protected]>
@ofrobots
Copy link
Contributor Author

Thanks. Landed on master in 704dcce.

@ofrobots ofrobots closed this Sep 15, 2015
ofrobots added a commit that referenced this pull request Sep 15, 2015
This brings in the patches from 4.5.103.30...4.5.103.33 fixing the issue with
computed property names not working in nested literals.

Full V8 4.5 commit log at:
https://chromium.googlesource.com/v8/v8.git/+log/branch-heads/4.5

Fixes: #2507
PR-URL: #2870
Reviewed-By: indutny - Fedor Indutny <[email protected]>
Reviewed-By: targos - Michaël Zasso <[email protected]>
Reviewed-By: bnoordhuis - Ben Noordhuis <[email protected]>
Reviewed-By: fishrock123 - Jeremiah Senkpiel <[email protected]>
@Fishrock123 Fishrock123 mentioned this pull request Sep 15, 2015
7 tasks
Fishrock123 added a commit to Fishrock123/node that referenced this pull request Sep 17, 2015
Notable changes:

* buffer:
  - Buffers are now created in JavaScript, rather than C++. This increases the speed of buffer creation (Trevor Norris) nodejs#2866.
  - `Buffer#slice()` now uses `Uint8Array#subarray()` internally, increasing `slice()` performance (Karl Skomski) nodejs#2777.
* fs:
  - `fs.utimes()` now properly converts numeric strings, `NaN`, and `Infinity` (Yazhong Liu) nodejs#2387.
  - `fs.WriteStream` now implements `_writev`, allowing for super-fast bulk writes (Ron Korving) nodejs#2167.
* http: Fixed an issue with certain `write()` sizes causing errors when using `http.request()` (Fedor Indutny) nodejs#2824.
* npm: Upgrade to version 2.14.3, see https://github.com/npm/npm/releases/tag/v2.14.3 for more details (Kat Marchán) nodejs#2822.
* src: V8 cpu profiling no longer erroneously shows idle time (Oleksandr Chekhovskyi) nodejs#2324.
* v8: Lateral upgrade to 4.5.103.33 from 4.5.103.30, contains minor fixes (Ali Ijaz Sheikh) nodejs#2870.
  - This fixes a previously known bug where some computed object shorthand properties did not work correctly (nodejs#2507).

Refs: nodejs#2844
PR-URL: nodejs#2889
Fishrock123 added a commit that referenced this pull request Sep 17, 2015
Notable changes:

* buffer:
  - Buffers are now created in JavaScript, rather than C++. This increases the speed of buffer creation (Trevor Norris) #2866.
  - `Buffer#slice()` now uses `Uint8Array#subarray()` internally, increasing `slice()` performance (Karl Skomski) #2777.
* fs:
  - `fs.utimes()` now properly converts numeric strings, `NaN`, and `Infinity` (Yazhong Liu) #2387.
  - `fs.WriteStream` now implements `_writev`, allowing for super-fast bulk writes (Ron Korving) #2167.
* http: Fixed an issue with certain `write()` sizes causing errors when using `http.request()` (Fedor Indutny) #2824.
* npm: Upgrade to version 2.14.3, see https://github.com/npm/npm/releases/tag/v2.14.3 for more details (Kat Marchán) #2822.
* src: V8 cpu profiling no longer erroneously shows idle time (Oleksandr Chekhovskyi) #2324.
* v8: Lateral upgrade to 4.5.103.33 from 4.5.103.30, contains minor fixes (Ali Ijaz Sheikh) #2870.
  - This fixes a previously known bug where some computed object shorthand properties did not work correctly (#2507).

Refs: #2844
PR-URL: #2889
@rvagg rvagg mentioned this pull request Sep 22, 2015
@ofrobots ofrobots deleted the 4.5.103.33 branch October 14, 2015 18:35
@MylesBorins
Copy link
Contributor

landed in lts-v4.x-staging as 7ebd881

@lewispham lewispham mentioned this pull request Mar 27, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
v8 engine Issues and PRs related to the V8 dependency.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Computed props are not properly handled
7 participants