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

[v10.x] test: mark test-repl-envvars as flaky on AIX #25219

Closed

Commits on Dec 13, 2018

  1. src: remove function hasTextDecoder in encoding.js

    also... return TextDecoder directly from factories
    
    PR-URL: nodejs#23625
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    chichiwang authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    91b8c5b View commit details
    Browse the repository at this point in the history
  2. crypto: reduce memory usage of SignFinal

    The fixed-size buffer on the stack is unnecessary and way too large
    for most applications. This change removes it and allocates the
    required memory directly instead of copying into heap later.
    
    PR-URL: nodejs#23427
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    tniessen authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    acd7312 View commit details
    Browse the repository at this point in the history
  3. zlib: do not leak on destroy

    PR-URL: nodejs#23734
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    mafintosh authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    22ee1e3 View commit details
    Browse the repository at this point in the history
  4. src: memory management using smart pointer

    Introduced use of smart pointers instead of MallocedBuffer to manage
    memory allocated in the cares library.
    
    PR-URL: nodejs#23628
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    uttampawar authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    c00a830 View commit details
    Browse the repository at this point in the history
  5. src: simplify TimerFunctionCall() in node_perf.cc

    Picking a path according to a boolean is essentially free,
    compared to the cost of a function call. Also, remove an
    unnecessary `TryCatch`.
    
    PR-URL: nodejs#23782
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Matheus Marchini <mat@mmarchini.me>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    e8200c0 View commit details
    Browse the repository at this point in the history
  6. tls: throw if protocol too long

    The convertProtocols() function now throws a range error when the byte
    length of a protocol is too long to fit in a Buffer.
    
    Also added a test case in test/parallel/test-tls-basic-validations.js
    to cover this.
    
    PR-URL: nodejs#23606
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
    Andre Jodat-Danbrani authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    93d4163 View commit details
    Browse the repository at this point in the history
  7. doc, test: document and test vm timeout escapes

    Using `process.nextTick()` or `Promise`, it
    is possible to escape the `timeout` set when running code with
    `vm.runInContext()`, `vm.runInThisContext()`, and
    `vm.runInNewContext()`.
    
    This documents the issue and adds two known_issues tests.
    
    Refs: nodejs#3020
    PR-URL: nodejs#23743
    Refs: nodejs#3020
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
    jasnell authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    50b22de View commit details
    Browse the repository at this point in the history
  8. test: mark test-vm-timeout-* known issue tests flaky

    These are known issues that can be flaky on certain platforms
    because they rely entirely on timing differences.
    
    PR-URL: nodejs#23743
    Refs: nodejs#3020
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
    jasnell authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    83888e8 View commit details
    Browse the repository at this point in the history
  9. build: expose more openssl categories for addons

    Those categories are necessary to build addons that depends
     on libcurl and libssh, the following were the missing symbols:
    libcurl:
    OCSP_cert_status_str
    OCSP_check_validity
    OCSP_basic_verify
    OCSP_RESPONSE_free
    OCSP_single_get0_status
    OCSP_response_get1_basic
    OCSP_BASICRESP_free
    OCSP_crl_reason_str
    OCSP_resp_count
    OCSP_response_status
    OCSP_response_status_str
    OCSP_resp_get0
    d2i_OCSP_RESPONSE
    SSL_CTX_set_next_proto_select_cb
    
    libssh:
    EVP_ripemd160
    EVP_cast5_cbc
    
    Fixes: nodejs#23293
    
    PR-URL: nodejs#23344
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    JCMais authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    9df556c View commit details
    Browse the repository at this point in the history
  10. src: avoid extra Persistent in DefaultTriggerAsyncIdScope

    Instead of getting a reference to the main `AliasedBuffer`, which
    would always unnecesarily allocate and destroy a `Persistent`
    handle, store and use a reference to the owning object.
    
    PR-URL: nodejs#23844
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Matheus Marchini <mat@mmarchini.me>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
    addaleax authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    784f1a0 View commit details
    Browse the repository at this point in the history
  11. src: cache the result of GetOptions() in JS land

    Instead of calling into C++ each time we need to check the value
    of a command line option, cache the option map in a new
    `internal/options` module for faster access to the values in JS land.
    
    PR-URL: nodejs#24091
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    joyeecheung authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    1156606 View commit details
    Browse the repository at this point in the history
  12. build: only try to find node when it's needed by the target

    Right now `node -p process.versions.openssl` always gets run
    in the Makefile even when it's not needed by the target
    (e.g. `make clean`, `make test-only`). This patch makes it
    a run time call instead of part of the global expansion.
    
    PR-URL: nodejs#24115
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    joyeecheung authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    2ff9143 View commit details
    Browse the repository at this point in the history
  13. test: http-client-timeout error assert arguments

    PR-URL: nodejs#24130
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    rangle-tadhg authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    c85c2ce View commit details
    Browse the repository at this point in the history
  14. test: fix arguments order

    PR-URL: nodejs#24131
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    franher authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    a4620ab View commit details
    Browse the repository at this point in the history
  15. child_process: allow 'http_parser' monkey patching again

    Lazy load _http_common and HTTPParser so that the 'http_parser' binding
    can be monkey patched before any internal modules require it. This also
    probably improves startup performance minimally for programs that never
    require the HTTP stack.
    
    Fixes: nodejs#23716
    Fixes: creationix/http-parser-js#57
    
    PR-URL: nodejs#24006
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Jimbly authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    abf575d View commit details
    Browse the repository at this point in the history
  16. test: fs readfile, swap arguments in strictEqual

    PR-URL: nodejs#24133
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    dodev authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    4ca0134 View commit details
    Browse the repository at this point in the history
  17. test: swap the order of arguments

    Swapped the actual and expected arguments in `assert.strictEqual()`
    calls.  Arguments are now in correct order.
    Literal value is now the second argument and the value returned by the
    function is the first argument.
    
    PR-URL: nodejs#24134
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: George Adams <george.adams@uk.ibm.com>
    mhamwala authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    9dbe096 View commit details
    Browse the repository at this point in the history
  18. test: strictEqual argument order (actual, expected)

    PR-URL: nodejs#24137
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Ahmad Nassri authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    71a61dd View commit details
    Browse the repository at this point in the history
  19. test: fix invalid argument order in test-http-expect-continue.js

    `assert.strictEqual` expects arguments in the following order:
    
    actual, expected[, message]
    
    PR-URL: nodejs#24138
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    mroderick authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    c769b8b View commit details
    Browse the repository at this point in the history
  20. test: change order of assert.strictEqual()

    PR-URL: nodejs#24142
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    remypar5 authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    7574f3f View commit details
    Browse the repository at this point in the history
  21. test: fix assert parameter order

    Switched arguments in assert.strictEqual()
    
    PR-URL: nodejs#24144
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Roland Broekema authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    27cb911 View commit details
    Browse the repository at this point in the history
  22. test: swap expected and actual in assert.strictEqual

    PR-URL: nodejs#24146
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    fbilbie authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    e06bb47 View commit details
    Browse the repository at this point in the history
  23. test: add tests for OutgoingMessage setTimeout

    These tests ensure that OutgoingMessage setTimeout method
    will call setTimeout on its socket
    
    Co-authored-by: ZauberNerd <zaubernerd@zaubernerd.de>
    
    PR-URL: nodejs#24148
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    robin-drexler authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    84a9ba4 View commit details
    Browse the repository at this point in the history
  24. test: fixing arguments order in assert.strictEqual()

    PR-URL: nodejs#24152
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    gcarcaci authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    d175a2e View commit details
    Browse the repository at this point in the history
  25. test: fixe argument order in assert.strictEqual

    File: test/parallel/test-http-client-upload-buf.js
    
    PR-URL: nodejs#24140
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    posth authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    d9489e1 View commit details
    Browse the repository at this point in the history
  26. test: fix arguments order

    the actual and expected arguments in assert.strictEqual() calls are in
    the wrong order. Any literal value should be the second argument while
    the first argument should be the value returned by a function/be the
    calculated value.
    
    PR-URL: nodejs#24151
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    simonaco authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    1d88f01 View commit details
    Browse the repository at this point in the history
  27. test: switch arguments in strictEqual

    In the `test/parallel/test-vm-create-and-run-in-context.js`
    test the actual and expected arguments in the `assert.strictEqual()`
    call on line 32 are in the wrong order and they have to be switched
    around.
    
    PR-URL: nodejs#24141
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    mthpvg authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    88231ca View commit details
    Browse the repository at this point in the history
  28. test: fix argument order in assert.strictEqual()

    PR-URL: nodejs#24147
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Clement authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    a7f604a View commit details
    Browse the repository at this point in the history
  29. test: fix arguments order in test-fs-write-buffer

    PR-URL: nodejs#24155
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    razvanbh authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    30d9588 View commit details
    Browse the repository at this point in the history
  30. test: removed extraneous argument 's'

    PR-URL: nodejs#24213
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    jacksonchui authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    040ed21 View commit details
    Browse the repository at this point in the history
  31. test: fix assert argument order

    PR-URL: nodejs#24160
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    manishepoch authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    0e5fe9a View commit details
    Browse the repository at this point in the history
  32. test: fix arguments order in assert.strictEqual

    In the test test/parallel/test-http-client-upload.js test the
    actual and expected arguments in assert.strictEqual() calls
    were in the wrong order. Switched them around so the returned
    value by the function is the first argument and the literal
    value is the second argument.
    
    PR-URL: nodejs#24143
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    szabolcsit authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    561ac4c View commit details
    Browse the repository at this point in the history
  33. test: fix order in assert.strictEqual to actual, expected

    PR-URL: nodejs#24184
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Kevin Seidel authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    ee821b4 View commit details
    Browse the repository at this point in the history
  34. test: fix the arguments order in assert.strictEqual

    This change was initiated from the NodeConfEU session.
    
    PR-URL: nodejs#24226
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    michael-zucker authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    56edd9f View commit details
    Browse the repository at this point in the history
  35. test: fix the arguments order in assert.strictEqual

    This change was initiated from the NodeConfEU session.
    
    PR-URL: nodejs#24227
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    michael-zucker authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    52f3ecc View commit details
    Browse the repository at this point in the history
  36. doc: fix some inconsistent use of hostname

    host names are DNS names, host addresses are IP addresses, and `host`
    arguments and options can be either.
    
    PR-URL: nodejs#24199
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    sam-github authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    042e379 View commit details
    Browse the repository at this point in the history
  37. test: switch order of strictEqual arguments

    PR-URL: nodejs#24185
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    jpolack authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    81ff70d View commit details
    Browse the repository at this point in the history
  38. test: change arguments order in strictEqual

    Fix actual/expected ordering in test-net-eaddrinuse.
    
    PR-URL: nodejs#24156
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Paul-Isache authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    b264d7e View commit details
    Browse the repository at this point in the history
  39. buffer: fix writeUInt16BE range check

    Fixes: nodejs#24205
    
    PR-URL: nodejs#24208
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    mscdex authored and codebytere committed Dec 13, 2018
    Configuration menu
    Copy the full SHA
    f657e40 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2018

  1. test: fix order of arguments in test-delayed-require assertion

    Fix order of arguments in equality assertion in
    test-delayed-require.
    
    PR-URL: nodejs#24165
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    reineke-fox authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    c2f7f26 View commit details
    Browse the repository at this point in the history
  2. test: add error code tests in dgram test

    Improve error validation in test-dgram-send-bad-arguments.
    
    PR-URL: nodejs#24215
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    MarkArranz authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    d6f6c62 View commit details
    Browse the repository at this point in the history
  3. url: make the context non-enumerable

    At the moment we expose the context as a normal property on the
    prototype chain of URL or take them from the base URL
    which makes them enumerable and considered
    by assert libraries even though the context carries path-dependent
    information that do not affect the equivalence of these objects.
    This patch fixes it in a minimal manner by marking the context
    non-enumerable as making it full private would require more
    refactoring and can be done in a bigger patch later.
    
    PR-URL: nodejs#24218
    Refs: nodejs#24211
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    joyeecheung authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    0056c08 View commit details
    Browse the repository at this point in the history
  4. benchmark: support more options in startup benchmark

    1. Add options to benchmark the startup performance of a node
      "instance" after running a script. By default there are two options:
      `test/fixtures/semicolon` which is basically an empty file,
      and `benchmark/fixtures/require-cachable` which require all
      the cachable modules before exiting. This allows us to measure
      the overhead of bootstrap in more scenarios.
    2. Add options to benchmark the overhead of spinning
      node through a process and through a worker.
    
    PR-URL: nodejs#24220
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    joyeecheung authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    8c59ebb View commit details
    Browse the repository at this point in the history
  5. doc: describe what tls servername is for

    Docs should describe the purpose of the option.
    
    PR-URL: nodejs#24236
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    sam-github authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    d35739d View commit details
    Browse the repository at this point in the history
  6. src: reuse std::make_unique

    Ref: nodejs@283a967
    
    PR-URL: nodejs#24132
    Refs: nodejs@283a967
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com>
    alyssaq authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    2de3376 View commit details
    Browse the repository at this point in the history
  7. test: fix NewFromUtf8 compiler warning

    Currently there are a number of compiler warnings like the following:
    
    ../binding.cc:6:41:
    warning: 'NewFromUtf8' is deprecated:
    Use maybe version [-Wdeprecated-declarations]
      args.GetReturnValue().Set(v8::String::NewFromUtf8(isolate, "world"));
                                            ^
    /node/deps/v8/include/v8.h:2883:10:
    note: 'NewFromUtf8' has been explicitly marked deprecated here
      static V8_DEPRECATE_SOON(
             ^
    /node/deps/v8/include/v8config.h:341:29:
    note: expanded from macro 'V8_DEPRECATE_SOON'
      declarator __attribute__((deprecated(message)))
                                ^
    
    This commit updates the code to use the maybe versions.
    
    PR-URL: nodejs#24216
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    danbev authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    64f7622 View commit details
    Browse the repository at this point in the history
  8. test: add coverage for escape key switch case

    PR-URL: nodejs#24194
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Artur Daschevici authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    bb871c9 View commit details
    Browse the repository at this point in the history
  9. test: add test for 'ERR_INVALID_CALLBACK'

    PR-URL: nodejs#24224
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    razvanbh authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    f50beda View commit details
    Browse the repository at this point in the history
  10. doc: fix code examples in stream.md

    * Replace `console.error()` with `console.log()`.
    * Fix case and punctuation in logged output.
    
    PR-URL: nodejs#24112
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    grantcarthew authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    802d4b8 View commit details
    Browse the repository at this point in the history
  11. tracing: fix static destruction order issue

    Sometimes, the `parallel/test-tracing-no-crash` would not work as
    expected, at least on Windows, because there is a static destruction
    race between tearing down the `NodeTraceWriter` instance and the
    per-process options struct. If the per-process options were destroyed
    before the `NodeTraceWriter`, the reference to the tracing filename
    would be gone before opening the file was attempted.
    
    This can be solved by creating a copy of the string when creating the
    `NodeTraceWriter` instance rather than taking a reference.
    
    Fixes: nodejs#22523
    
    PR-URL: nodejs#24123
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    addaleax authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    5dec2ca View commit details
    Browse the repository at this point in the history
  12. test: fix order of arguments in assert.strictEqual

    PR-URL: nodejs#24145
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    eiskalteschatten authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    9f023c4 View commit details
    Browse the repository at this point in the history
  13. test: add coverage for systemerror set name

    PR-URL: nodejs#24200
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    amer8 authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    36861ad View commit details
    Browse the repository at this point in the history
  14. test: add test for strictDeepEqual

    PR-URL: nodejs#24197
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
    nikita-malyschkin authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    899245f View commit details
    Browse the repository at this point in the history
  15. test: use assert.strictEqual instead of assert.equal

    PR-URL: nodejs#23673
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    prog1dev authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    8209ecd View commit details
    Browse the repository at this point in the history
  16. test: fix uses of deprecated assert.fail with multiple args

    PR-URL: nodejs#23673
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    prog1dev authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    a3289bd View commit details
    Browse the repository at this point in the history
  17. doc: edit BUILDING.md

    Minor edits to BUILDING.md to keep sentences short and clear.
    
    PR-URL: nodejs#24243
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Trott authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    c0dad7a View commit details
    Browse the repository at this point in the history
  18. test: move test-fs-watch-system-limit from sequential to pummel

    PR-URL: nodejs#23692
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mmmscott authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    ae2f959 View commit details
    Browse the repository at this point in the history
  19. lib: combine contructor, tag, Object into a function

    combine these parts into a function to be used in multiple parts
    
    PR-URL: nodejs#24171
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Paul-Isache authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    ee09fe3 View commit details
    Browse the repository at this point in the history
  20. build,tools: update make-v8.sh for s390x

    PR-URL: nodejs#23839
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    refack authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    8e7f075 View commit details
    Browse the repository at this point in the history
  21. test: use NULL instead of 0 in common.h

    This commit updates the macros in test/addons-napi/common.h to use NULL
    instead of 0. This is very minor, but I had to look twice while going
    through the code and finding what the macro was doing and comparing
    with the struct definition. Using NULL makes it a little clearer I
    think.
    
    PR-URL: nodejs#24104
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    danbev authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    7d2bcf9 View commit details
    Browse the repository at this point in the history
  22. net: simplify Socket.prototype._final

    Remove conditions that should be irrelevant since we started
    using `_final`, as well as an extra `defaultTriggerAsyncIdScope()`
    call which is unnecessary because there is an equivalent
    scope already present on the native side.
    
    PR-URL: nodejs#24075
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    08c9e2b View commit details
    Browse the repository at this point in the history
  23. test: increase coverage internal readline

    PR-URL: nodejs#24150
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cyanic-webdesign authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    e9ca5bf View commit details
    Browse the repository at this point in the history
  24. net: partially revert "simplify Socket.prototype._final"

    Partially revert b7e6ccd
    because it broke a test that was added since its last CI run.
    
    Refs: nodejs#24075
    Refs: nodejs#23866
    
    PR-URL: nodejs#24288
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
    addaleax authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    db709c5 View commit details
    Browse the repository at this point in the history
  25. stream: make .destroy() interact better with write queue

    Make sure that it is safe to call the callback for `_write()`
    even in the presence of `.destroy()` calls during that write.
    
    In particular, letting the write queue continue processing would
    previously have thrown an exception, because processing writes
    after calling `.destroy()` is forbidden.
    
    One test had to be modified to account for the fact that callbacks
    for writes will now always be called, even when the stream
    is destroyed during the process.
    
    PR-URL: nodejs#24062
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    f41eddc View commit details
    Browse the repository at this point in the history
  26. test: replacing fixture directory with temp

    PR-URL: nodejs#24077
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    saurabhSiddhu authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    7ba4b9f View commit details
    Browse the repository at this point in the history
  27. build: lint commit message in separate Travis job

    Move the first commit message linting to a separate Travis job. Run the
    script in bash debug mode to capture any issues communicating with the
    GitHub API (e.g. network issues, rate limits).
    
    PR-URL: nodejs#24254
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Matheus Marchini <mat@mmarchini.me>
    richardlau authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    043c70a View commit details
    Browse the repository at this point in the history
  28. test : compare objects not identical by reference

    PR-URL: nodejs#24189
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    meelie authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    c777ce7 View commit details
    Browse the repository at this point in the history
  29. test: fix assert.strictEqual argument order

    The arguments to assert.strictEqual in a number of calls were in the
    wrong order. It is preferred that literal values are in the second
    argument.
    
    Updates test/parallel/test-fs-readStream.js
    
    PR-URL: nodejs#24172
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    mcqj authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    07c6db9 View commit details
    Browse the repository at this point in the history
  30. test: fix arguments order in assert.strictEqual()

    PR-URL: nodejs#24192
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    ulisesantana authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    3f7d7da View commit details
    Browse the repository at this point in the history
  31. doc: add oyyd to collaborators

    PR-URL: nodejs#24300
    Fixes: nodejs#23955
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    oyyd authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    e6ae331 View commit details
    Browse the repository at this point in the history
  32. test: add test for deepEqual Float32Array

    PR-URL: nodejs#24164
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    yehiyam authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    808355e View commit details
    Browse the repository at this point in the history
  33. test: add test case for completion bash flag

    This test case verifies that starting Node.js with the completion
    bash flag prints out the expected result and ends right after.
    
    PR-URL: nodejs#24168
    Reviewed-By: Bryan English <bryan@bryanenglish.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Aivo Paas authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    b23b6a4 View commit details
    Browse the repository at this point in the history
  34. doc: correct async_hooks sample outputs

    Correct the output of async_hooks samples
    * `TIMERWRAP` has been removed in nodejs#20894
    * `console.log()` doesn't issue `TTYWRAP` nor `SIGNALWRAP`
    
    I don't know which PR caused that `console.log()` is no longer using
    `TTYWRAP` and `SIGNALWRAP`; I think it was between 8.4.0 and 8.5.0.
    
    PR-URL: nodejs#24050
    Refs: nodejs#20894
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Flarna authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    0d65b4b View commit details
    Browse the repository at this point in the history
  35. test: correct order of args in assert.strictEqual()

    Ensure literal values are passed in as second argument
    
    PR-URL: nodejs#24157
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Natalie Cluer authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    7483c5b View commit details
    Browse the repository at this point in the history
  36. doc: add links to Stream section

    PR-URL: nodejs#24301
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    dmitigr authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    a4037bc View commit details
    Browse the repository at this point in the history
  37. console: cover .assert with single argument

    PR-URL: nodejs#24188
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    mroderick authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    d52709f View commit details
    Browse the repository at this point in the history
  38. doc: update fs.open() changes record for optional 'flags'

    Was missed on original PR.
    
    Ref: nodejs#23767
    
    PR-URL: nodejs#24240
    Refs: nodejs#23767
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    rvagg authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    6805908 View commit details
    Browse the repository at this point in the history
  39. test: fix strictEqual argument order

    Fix the order of assert.strictEqual() arguments.
    It should have first argument as the calculated/tested value.
    
    PR-URL: nodejs#24153
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    KaskMartin authored and codebytere committed Dec 14, 2018
    Configuration menu
    Copy the full SHA
    77c2cc9 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2018

  1. test: fix expectation in test-bootstrap-modules

    PR-URL: nodejs#25112
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    ofrobots authored and codebytere committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    13fead6 View commit details
    Browse the repository at this point in the history
  2. doc: sort bottom-of-file markdown links

    Reapply nodejs#12726
    
    It would be nice to have the sort check applied as part of doc testing,
    but this change doesn't implement that.
    
    Backport-PR-URL: nodejs#24681
    PR-URL: nodejs#24679
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    sam-github authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    a5727ff View commit details
    Browse the repository at this point in the history
  3. doc: correct async_hooks resource names

    Correct async hooks resource names to match the implementation:
    `TCPSERVER` => `TCPSERVERWRAP`
    
    Backport-PR-URL: nodejs#24683
    PR-URL: nodejs#24001
    Refs: nodejs#21971
    Refs: nodejs#17157
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Flarna authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    57ccaf6 View commit details
    Browse the repository at this point in the history
  4. deps: V8: cherry-pick 52a9e67

    Original commit message:
    
        [turbofan] Fix ObjectCreate's side effect annotation.
    
        Bug: chromium:888923
        Change-Id: Ifb22cd9b34f53de3cf6e47cd92f3c0abeb10ac79
        Reviewed-on: https://chromium-review.googlesource.com/1245763
        Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
        Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
        Cr-Commit-Position: refs/heads/master@{#56236}
    
    Refs: v8/v8@52a9e67
    
    PR-URL: nodejs#25027
    Refs: v8/v8@52a9e67
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    ofrobots authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    844bd62 View commit details
    Browse the repository at this point in the history
  5. http: fix regression of binary upgrade response body

    PR-URL: nodejs#25039
    Fixes: nodejs#24958
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    mcollina authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    c5140f5 View commit details
    Browse the repository at this point in the history
  6. test: move benchmark tests out of main test suite

    Move benchmark tests (which are slow) out of the main test suite. We can
    hopefully add them to node-daily-master so that they are still run daily
    on CI.
    
    Backport-PR-URL: nodejs#25049
    PR-URL: nodejs#24265
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Trott authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    5f649f6 View commit details
    Browse the repository at this point in the history
  7. deps: cherry-pick http_parser_set_max_header_size

    This commit adds http_parser_set_max_header_size() to the
    http-parser for overriding the compile time maximum HTTP
    header size.
    
    Backport-PR-URL: nodejs#25168
    PR-URL: nodejs#24811
    Fixes: nodejs#24692
    Refs: nodejs/http-parser#453
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    cjihrig authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    dc79fea View commit details
    Browse the repository at this point in the history
  8. src: add kUInteger parsing

    This commit adds support for uint64_t option parsing.
    
    Backport-PR-URL: nodejs#25168
    PR-URL: nodejs#24811
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    mcollina authored and MylesBorins committed Dec 21, 2018
    Configuration menu
    Copy the full SHA
    82ad2c2 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2018

  1. cli: add --max-http-header-size flag

    Allow the maximum size of HTTP headers to be overridden from
    the command line.
    
    Backport-PR-URL: nodejs#25168
    co-authored-by: Matteo Collina <hello@matteocollina.com>
    PR-URL: nodejs#24811
    Fixes: nodejs#24692
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Myles Borins <myles.borins@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
    2 people authored and MylesBorins committed Dec 22, 2018
    Configuration menu
    Copy the full SHA
    d21ff98 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2018

  1. test: remove magic numbers in test-gc-http-client-onerror

    Remove magic numbers (500, 10, 100) from the test. Instead, detect when
    GC has started and stop sending requests at that point.
    
    On my laptop, this results in 16 or 20 requests per run instead of 500.
    
    Fixes: nodejs#23089
    
    PR-URL: nodejs#24943
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Trott authored and MylesBorins committed Dec 25, 2018
    Configuration menu
    Copy the full SHA
    b7bb114 View commit details
    Browse the repository at this point in the history
  2. doc: describe current HTTP header size limit

    Document that the limit was changed from 80KB to 8KB in 1860352.
    
    Fixes: nodejs#24693
    
    PR-URL: nodejs#24700
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
    sam-github authored and MylesBorins committed Dec 25, 2018
    Configuration menu
    Copy the full SHA
    f30d169 View commit details
    Browse the repository at this point in the history
  3. http: add maxHeaderSize property

    This commit exposes the value of --max-http-header-size
    as a property of the http module.
    
    PR-URL: nodejs#24860
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and MylesBorins committed Dec 25, 2018
    Configuration menu
    Copy the full SHA
    17f4208 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2018

  1. Configuration menu
    Copy the full SHA
    47364b7 View commit details
    Browse the repository at this point in the history