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

src: Add missing using v8::MaybeLocal (v5.x) #5974

Closed
wants to merge 37 commits into from

Commits on Mar 30, 2016

  1. buffer: faster case for create buffer from empty string

    When create Buffer from empty string will touch
    C++ binding also.
    
    This patch can improve edge case ~70% faster.
    
    PR-URL: nodejs#4414
    Reviewed-By: Trevor Norris <trev.norris@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    JacksonTian authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    18db2af View commit details
    Browse the repository at this point in the history
  2. build: enable compilation for linuxOne

    Changes to Node core in order to allow compilation for linuxOne.
    
    The ../archs/linux32-s390x/opensslconf.h and
    ../archs/linux64-s390x/opensslconf.h were automatically
    generated by running make linux-ppc linux-ppc64 in the
    deps/openssl/config directory as per our standard
    practice
    
    After these changes we still need a version of v8
    which supports linuxOne but that will be coming soon
    in the 5.1 version of v8.  Until then with these changes
    we'll be able to create a hybrid build which pulls in
    v8 from the http://github/andrewlow repo.
    
    PR-URL: nodejs#5941
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    mhdawson authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    6e4d9b3 View commit details
    Browse the repository at this point in the history
  3. build: add missing openssl_fips% to common.gypi

    See: atom/node@cba512d
    
    PR-URL: nodejs#5919
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    indutny authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    f56d6ad View commit details
    Browse the repository at this point in the history
  4. build: add script to create Android .mk files

    The create_android_makefiles script will create .mk files for node and
    all of its dependencies ready to be build using Android build system.
    
    Signed-off-by: Robert Chiras <robert.chiras@intel.com>
    PR-URL: nodejs#5544
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    robertchiras authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    09dc4cc View commit details
    Browse the repository at this point in the history
  5. build: add suport for x86 architecture

    Modified android-configure script to support also x86 arch.
    Currently added support only for ia32 target arch.
    Also, compile openssl without asm, since using the asm sources will make
    node fail to run on Android, because it adds text relocations.
    
    Signed-off-by: Robert Chiras <robert.chiras@intel.com>
    PR-URL: nodejs#5544
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    robertchiras authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    882fa25 View commit details
    Browse the repository at this point in the history
  6. child_process: refactor self=this in socket_list

    The socket list module (used by child_process) currently uses the
    `var self = this;` pattern for context in several places, this PR
    replaces this with arrow functions or passing a parameter in where
    appropriate.
    
    Note that the `var self = this` in the _request is intentioanlly
    left in place since it is not trivial to refactor it and the current
    pattern isn't bad given the use case.
    
    PR-URL: nodejs#5860
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Brian White <mscdex@mscdex.net>
    benjamingr authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    459a7d6 View commit details
    Browse the repository at this point in the history
  7. deps: backport 8d00c2c from v8 upstream

    Original commit message:
    
        Unbreak --gdbjit for embedders.
    
        Embedders don't use d8.cc.  Move gdbjit initialization to api.cc.
    
        Review URL: https://codereview.chromium.org/1710253002
    
    Fixes: nodejs#2076
    PR-URL: nodejs#5577
    Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
    bnoordhuis authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    37f4df4 View commit details
    Browse the repository at this point in the history
  8. dns: Use object without protoype for map

    Currently we use `{}` for the `lookup` function to find the relevant
    resolver to the dns.resolve function. It is preferable to use an
    object without a Object.prototype, currently for example you can do
    something like:
    
    ```js
    dns.resolve("google.com", "toString", console.log);
    ```
    
    And get `[Object undefined]` logged and the callback would never be
    called. This is unexpected and strange behavior in my opinion.
    In addition, if someone adds a property to `Object.prototype` might
    also create unexpected results.
    
    This pull request fixes it, with it an appropriate error is thrown.
    
    PR-URL: nodejs#5843
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    benjamingr authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    648e0c3 View commit details
    Browse the repository at this point in the history
  9. dns: Refactor forEach to map

    Refactor a forEach to a `map` in the `setServers` function of the
    dns module - simplifying the code. In addition, use more descriptive
    variable names and `const` over `var` where possible.
    
    PR-URL: nodejs#5803
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    benjamingr authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    4916fff View commit details
    Browse the repository at this point in the history
  10. doc: fix doc for Buffer.readInt32LE()

    Update example of readInt32LE method. buf.readInt32LE(1) is supposed to
    throw an error as it has only four elements and it tries to read 32
    bits from three bytes.
    
    Fixes: nodejs#5889
    PR-URL: nodejs#5890
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    ghaiklor authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    715ba18 View commit details
    Browse the repository at this point in the history
  11. doc: add instructions to only sign a release

    PR-URL: nodejs#5876
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Fishrock123 authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0da59ef View commit details
    Browse the repository at this point in the history
  12. doc: fix order of end tags of list after heading

    Current html result of a list after heading is <div
    class="signature"><ul>...</div></ul>. Correct it to <div
    class="signature"><ul>...</ul></div>.
    
    PR-URL: nodejs#5874
    Fixes: nodejs#5873
    Reviewed-By: Roman Reiss <me@silverwind.io>
    firedfox authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    b9682af View commit details
    Browse the repository at this point in the history
  13. doc: use consistent event name parameter

    Implementing the suggestion in
    nodejs#4554 this pull request renames
    the parameter name in all the places that accept an event name as a parameter.
    
    Previously, the parameter has been called `event` or `type`. Now as suggested
    it is consistently called `eventName`.
    
    PR-URL: nodejs#5850
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    benjamingr authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    fc6513d View commit details
    Browse the repository at this point in the history
  14. doc: explain path.format expected properties

    Explain the expected properties in path.format
    
    Fixes: nodejs#5746
    PR-URL: nodejs#5801
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    eversojk authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    93638e1 View commit details
    Browse the repository at this point in the history
  15. doc: typo: interal->internal.

    Fixes a copy typo in the events.md docs.
    
    PR-URL: nodejs#5849
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    kosak authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    9e5fe2b View commit details
    Browse the repository at this point in the history
  16. etw: fix descriptors of events 9 and 23

    Event 9 must include the string terminator in the last descriptor.
    Event 23 must be published with no descriptors, in accordance with
    the manifest.
    
    PR-URL: nodejs#5742
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    joaocgreis authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    8df627e View commit details
    Browse the repository at this point in the history
  17. fs: add the fs.mkdtemp() function.

    This uses libuv's mkdtemp function to provide a way to create a
    temporary folder, using a prefix as the path. The prefix is appended
    six random characters. The callback function will receive the name
    of the folder that was created.
    
    Usage example:
    
    fs.mkdtemp('/tmp/foo-', function(err, folder) {
        console.log(folder);
            // Prints: /tmp/foo-Tedi42
    });
    
    The fs.mkdtempSync version is also provided. Usage example:
    
    console.log(fs.mkdtemp('/tmp/foo-'));
        // Prints: tmp/foo-Tedi42
    
    This pull request also includes the relevant documentation changes
    and tests.
    
    PR-URL: nodejs#5333
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    Reviewed-By: Trevor Norris <trev.norris@gmail.com>
    Reviewed-By: Saúl Ibarra Corretgé <saghul@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    ralt authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    1490a45 View commit details
    Browse the repository at this point in the history
  18. http: speed up checkIsHttpToken

    The Regex implementation is not faster than ascii code compare.
    
    the field name is shorter, the speed is faster.
    
    benchmark result here:
    
    https://bitbucket.org/snippets/JacksonTian/Rnbad/benchmark-result
    
    PR-URL: nodejs#4790
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Brian White <mscdex@mscdex.net>
    JacksonTian authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    f275176 View commit details
    Browse the repository at this point in the history
  19. zlib: Fix handling of gzip magic bytes mid-file

    Only treat the gzip magic bytes, when encountered within the file
    after reading a single block, as the start of a new member when
    the previous member has ended.
    
    Add test files that reliably reproduce nodejs#5852. The gzipped file
    in test/fixtures/pseudo-multimember-gzip.gz contains the gzip
    magic bytes exactly at the position that node encounters after having
    read a single block, leading it to believe that a new data
    member is starting.
    
    Fixes: nodejs#5852
    PR-URL: nodejs#5863
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    addaleax authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    1d4c751 View commit details
    Browse the repository at this point in the history
  20. win,build: build and test add-ons on test-ci

    Added build-addons task, it allows to build and test native addons
    during test-ci task. Basically it should work in same way like
    Makefile "build-addons" task.
    
    Reviewed-By: Rod Vagg <rod@vagg.org>
    Reviewed-By: João Reis <reis@janeasystems.com>
    PR-URL: nodejs#5886
    Fixes: nodejs#2537
    Bogdan Lobor authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    5b5cb7e View commit details
    Browse the repository at this point in the history
  21. tools: fix json doc generation

    Current processList function in tools/doc/json.js does not recognise
    {"type":"loose_item_start"}. Fix it.
    
    PR-URL: nodejs#5943
    Fixes: nodejs#5942
    Reviewed-By: Roman Reiss <me@silverwind.io>
    Reviewed-By: Robert Lindstädt <robert.lindstaedt@gmail.com>
    firedfox authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    dddd365 View commit details
    Browse the repository at this point in the history
  22. timers: fixing API refs to use safe internal refs

    Added safe internal references for 'clearTimeout(..)', 'active(..)', and
    'unenroll(..)'. Changed various API refs from 'export.*' to use these
    safe internal references.
    
    Now, overwriting the global API identifiers does not create potential
    breakage and/or race conditions. See Issue nodejs#2493.
    
    PR-URL: nodejs#5882
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Fixes: nodejs#2493
    getify authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    cebb8d7 View commit details
    Browse the repository at this point in the history
  23. test: fix test-debugger-client.js

    Fix long-broken test-debugger-client by adding missing `\r\n\r\n`
    separator.
    
    PR-URL: nodejs#5851
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    cc85dd7 View commit details
    Browse the repository at this point in the history
  24. test: fix flaky test-http-set-timeout

    Increase timeout on Raspberry Pi to alleviate flakiness.
    
    Fixes: nodejs#5854
    PR-URL: nodejs#5856
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    ee8de3f View commit details
    Browse the repository at this point in the history
  25. test: move dns test to test/internet

    parallel/test-dns-cares-domains needs a working internet connection
    to function (or a local DNS resolver that returns an answer quickly),
    otherwise it times out.  Move it to test/internet.
    
    PR-URL: nodejs#5905
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    bnoordhuis authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    42903cc View commit details
    Browse the repository at this point in the history
  26. test: fix flaky test-net-socket-timeout

    Fixes: nodejs#5892
    PR-URL: nodejs#5902
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mscdex authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    25244c1 View commit details
    Browse the repository at this point in the history
  27. test: confirm globals not used internally

    PR-URL: nodejs#5882
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    Trott authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    f616adb View commit details
    Browse the repository at this point in the history
  28. test: exclude new fs watch test for AIX

    As per nodejs#5085
    exclude new test from AIX until we have fixes for
    libuv for fs watching on AIX.  Excluding test
    so AIX tests are green and we don't miss
    other regressions
    
    PR-URL: nodejs#5937
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    mhdawson authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    5dc8df2 View commit details
    Browse the repository at this point in the history
  29. test: remove the use of curl in the test suite

    There were 2 tests using curl:
    
    `test-http-304.js` is removed because it was initially included to test
    that the 304 response does not contain a body, and this is already
    covered by `test-http-chunked-304.js`.
    
    `test-http-curl-chunk-problem` has been renamed and refactored so
    instead of using curl, it uses 2 child node processes: one for sending
    the HTTP request and the other to calculate the sha1sum. Originally,
    this test was introduced to fix a bug in `nodejs@0.2.x`, and it was not
    fixed until `nodejs@0.2.5`. A modified version of this test has been run
    with `nodejs@0.2.0` and reproduces the problem. This same test has been
    run with `nodejs@0.2.6` and runs correctly.
    
    Fixes: nodejs#5174
    PR-URL: nodejs#5750
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    santigimeno authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    5822f47 View commit details
    Browse the repository at this point in the history
  30. test: add test for piping large input from stdin

    Check that piping a large chunk of data from `process.stdin`
    into `process.stdout` does not lose any data by verifying that
    the output has the same size as the input.
    
    This is a regression test for nodejs#5927 and fails for the commits
    in the range [ace1009..89abe86).
    
    PR-URL: nodejs#5949
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    addaleax authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    b8415ad View commit details
    Browse the repository at this point in the history
  31. src: override v8 thread defaults using cli options

    Based on the conversation in nodejs#4243 this implements a way to increase
    and decrease the size of the thread pool used in v8.
    
    Currently v8 restricts the thread pool size to `kMaxThreadPoolSize`
    which at this commit is (4). So it is only possible to
    decrease the thread pool size at the time of this commit. However with
    changes upstream this could change at a later date.
    If set to 0 then v8 would choose an appropriate size of the thread pool
    based on the number of online processors.
    
    PR-URL: nodejs#4344
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    tomgco authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    3f6fbaf View commit details
    Browse the repository at this point in the history
  32. repl: support standalone blocks

    Enable support for standalone block statements.
    
    ```js
    node 🙈 ₹ git:(upstream ⚡ bare-block) ./node
    > { var x = 3; console.log(x); }
    3
    undefined
    > {}
    {}
    > { x:1, y:"why not", z: function() {} }
    { x: 1, y: 'why not', z: [Function] }
    >
    ```
    For the ambiguous inputs like `{ x }`, the existing REPL
    behaviour (ES6 literal shorthand) is preserved (prefers
    expression over statement).
    
    Fixes: nodejs#5576
    PR-URL: nodejs#5581
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    princejwesley authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    58de768 View commit details
    Browse the repository at this point in the history
  33. querystring: don't stringify bad surrogate pair

    Fixes: nodejs#3702
    PR-URL: nodejs#5858
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mscdex authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    6ea6b64 View commit details
    Browse the repository at this point in the history
  34. net: emit host in lookup event

    Previously, we emitted ip and addressType. This change includes the host
    as the last argument to the lookup event.
    
    PR-URL: nodejs#5598
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Evan Lucas <evanlucas@me.com>
    entertainyou authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    d1483f0 View commit details
    Browse the repository at this point in the history
  35. deps: upgrade npm to 3.8.3

    othiym23 authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    8982d09 View commit details
    Browse the repository at this point in the history
  36. lib: refactor code with startsWith/endsWith

    reduce using RegExp for string test. This pull reuqest replaces
    various usages of regular expressions in favor of the ES2015
    startsWith and endsWith methods.
    
    PR-URL: nodejs#5753
    Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
    Reviewed-By: Brian White <mscdex@mscdex.net>
    JacksonTian authored and evanlucas committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    a7710b0 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2016

  1. src: Add missing using v8::MaybeLocal

    As of 2cbbaaf (nodejs#5756) there’s a missing
    `using v8::MaybeLocal;` in `src/node.cc` that breaks the build.
    This patch adds the necessary line.
    addaleax committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    8bd81b2 View commit details
    Browse the repository at this point in the history