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.16.1 proposal #28731

Merged
merged 33 commits into from Jul 31, 2019
Merged

v10.16.1 proposal #28731

merged 33 commits into from Jul 31, 2019

Commits on Jun 6, 2019

  1. esm: fix esm load bug

    Fixes: #25482
    
    Backport-PR-URL: #27874
    PR-URL: #25491
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    ZYSzys authored and BethGriggs committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    819a647 View commit details
    Browse the repository at this point in the history
  2. test: clearing require cache crashes esm loader

    This test shows the regression introduced in v11.4.0: clearing out the
    require.cache crashes node when using the `--experimental-modules` flag.
    Refs: #25482
    
    Backport-PR-URL: #27874
    PR-URL: #25491
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    aduh95 authored and BethGriggs committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    cc3ca08 View commit details
    Browse the repository at this point in the history
  3. deps: cherry-pick 88f8fe1 from upstream V8

    Original commit message:
    
        Fix collection iterator preview with deleted entries
    
        We used to assume that we know the remaining entries returned by the
        iterator based on the current index. However, that is not accurate,
        since entries skipped by the current index could be deleted.
    
        In the new approach, we allocate conservatively and shrink the result.
    
        R=neis@chromium.org
    
        Bug: v8:8433
        Change-Id: I38a3004dc3af292daabb454bb76f38d65ef437e8
        Reviewed-on: https://chromium-review.googlesource.com/c/1325966
        Commit-Queue: Yang Guo <yangguo@chromium.org>
        Reviewed-by: Georg Neis <neis@chromium.org>
        Cr-Commit-Position: refs/heads/master@{#57360}
    
    [The backport to v10.x resolves merge conflicts due to a different way
    of accessing the “hole” value in V8, different signatures of the
    `Handle` constructor and the `Shrink()` method, and neighbouring-line
    conflicts in the test file.]
    
    Refs: v8/v8@88f8fe1
    Fixes: #27882
    
    Backport-PR-URL: #27894
    PR-URL: #24514
    Refs: #24053
    Reviewed-By: Michaël Zasso <targos@protonmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Gus Caplan <me@gus.host>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    hashseed authored and BethGriggs committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    8f780e8 View commit details
    Browse the repository at this point in the history
  4. deps: V8: backport f27ac28

    Original commit message:
    
        [turbofan] Pin pure unreachable values to effect chain (in rep selection)
    
        Currently, if we lower to a pure computation that is unreachable because
        of some runtime check, we just rename it with DeadValue. This is
        problematic if the pure computation gets later eliminated - that allows
        the DeadValue node float above the check that makes it dead. As we
        conservatively lower DeadValues to debug-break (i.e., crash), we
        might induce crash where we should not.
    
        With this CL, whenever we lower an impossible effectful node (i.e., with
        Type::None) to a pure node in simplified lowering, we insert an
        Unreachable node there (pinned to the effect chain) and mark the
        impossible node dead (and make it depend on the Unreachable node).
    
        Bug: chromium:910838
        Change-Id: I218991c79b9e283a9dd5beb4d3f0c4664be76cb2
        Reviewed-on: https://chromium-review.googlesource.com/c/1365274
        Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
        Commit-Queue: Jaroslav Sevcik <jarin@chromium.org>
        Cr-Commit-Position: refs/heads/master@{#58066}
    
    Refs: v8/v8@f27ac28
    
    PR-URL: #28061
    Fixes: #27107
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    targos authored and BethGriggs committed Jun 6, 2019
    Configuration menu
    Copy the full SHA
    609d2b9 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2019

  1. tls: renegotiate should take care of its own state

    In the initial version of this test there were two zero-length writes to
    force tls state to cycle. The second is not necessary, at least not now,
    but the first was. The renegotiate() API should ensure that packet
    exchange takes place, not its users, so move the zero-length write into
    tls.
    
    See: #14239
    See: b1909d3a70f9
    
    Backport-PR-URL: #27938
    PR-URL: #25997
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    sam-github authored and BethGriggs committed Jun 7, 2019
    Configuration menu
    Copy the full SHA
    5ffe047 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

  1. src: elevate v8 namespaces for node_process.cc

    Elevate namespace for repeated entities.
    Resolved conflicts.
    
    PR-URL: #24578
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Refael Ackermann <refack@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Jayasankar-m authored and BethGriggs committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    08a32fb View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2019

  1. async_hooks: avoid double-destroy HTTPParser

    Avoid that destroy hook is invoked twice - once via `Parser::Free()`
    and once again via `Parser::Reinitialize()` by clearing the async_id
    in `EmitDestroy()`.
    
    Partial backport of #27477, a full
    backport would require also #25094
    which has a dont-land-on-v10.x label on it.
    
    Fixes: #26961
    
    Backport-PR-URL: #27986
    PR-URL: #27477
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Flarna authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    65ef26f View commit details
    Browse the repository at this point in the history
  2. src: extract common Bind method

    `TCPWrap::Bind` and `TCPWrap::Bind6` share a large amount of
    functionality, so a common `Bind` was extracted to remove duplication.
    
    Backport-PR-URL: #28222
    PR-URL: #22315
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
    Reviewed-By: Denys Otrishko <shishugi@gmail.com>
    maclover7 authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    0dee607 View commit details
    Browse the repository at this point in the history
  3. worker: fix nullptr deref after MessagePort deser failure

    This would previously always have crashed when deserializing
    a `MessagePort` fails, because there was always at least one
    `nullptr` entry in the vector.
    
    PR-URL: #25076
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    14090b5 View commit details
    Browse the repository at this point in the history
  4. src: fulfill Maybe contract in InlineDecoder

    Use an empty/nothing `Maybe<>` to indicate a pending exception.
    
    PR-URL: #25140
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    Reviewed-By: Shelley Vohr <codebytere@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    a8f78f0 View commit details
    Browse the repository at this point in the history
  5. src: fix warning in cares_wrap.cc

    This commit fixes the following warning:
    
    ./src/cares_wrap.cc:1268:5: warning: comparison of integers of
        different signs: 'uint32_t' (aka 'unsigned int') and 'int'
        [-Wsign-compare]
        CHECK_EQ(ret->Length(), a_count + aaaa_count);
    
    PR-URL: #25230
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    cjihrig authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    b7dbc1c View commit details
    Browse the repository at this point in the history
  6. doc: add missing changes entry

    The `util.format()` behavior changed recently. Add the changes entry
    to document the new BigInt behavior.
    
    PR-URL: #24758
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    BridgeAR authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    b3d8a1b View commit details
    Browse the repository at this point in the history
  7. src: remove internalBinding('config').warningFile

    Instead use `require('internal/options')` lazily. Also refactor the
    call site a bit so that the option is queried only once since it's
    synchronous anyway.
    
    PR-URL: #24959
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    joyeecheung authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    76af23a View commit details
    Browse the repository at this point in the history
  8. stream: make _read() be called indefinitely if the user wants so

    Fixes: #26097
    
    PR-URL: #26135
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    mcollina authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    044e753 View commit details
    Browse the repository at this point in the history
  9. stream: do not unconditionally call _read() on resume()

    `readable.resume()` calls `.read(0)`, which in turn previously set
    `needReadable = true`, and so a subsequent `.read()` call would
    call `_read()` even though enough data was already available.
    
    This can lead to elevated memory usage, because calling `_read()`
    when enough data is in the readable buffer means that backpressure
    is not being honoured.
    
    Fixes: #26957
    
    PR-URL: #26965
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    274b97c View commit details
    Browse the repository at this point in the history
  10. process: make stdout and stderr emit 'close' on destroy

    Fix: #26550
    
    PR-URL: #26691
    Fixes: https://github.com/false
    Fixes: #26550
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    mcollina authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    f34bb96 View commit details
    Browse the repository at this point in the history
  11. stream: convert existing buffer when calling .setEncoding

    Convert already-stored chunks when `.setEncoding()` is called
    so that subsequent `data` events will receive decoded strings,
    as they expect.
    
    Fixes: #27932
    
    PR-URL: #27936
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    f3841c6 View commit details
    Browse the repository at this point in the history
  12. doc: adjust TOC margins

    PR-URL: #28075
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
    Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
    silverwind authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    ad588eb View commit details
    Browse the repository at this point in the history
  13. src: in-source comments and minor TLS cleanups

    Renamed some internal C++ methods and properties for consistency, and
    commented SSL I/O.
    
    - Rename waiting_new_session_ after is_waiting_new_session(), instead of
      using reverse naming (new_session_wait_), and change "waiting" to
      "awaiting".
    - Make TLSWrap::ClearIn() return void, the value is never used.
    - Fix a getTicketKeys() cut-n-paste error. Since it doesn't use the
      arguments, remove them from the js wrapper.
    - Remove call of setTicketKeys(getTicketKeys()), its a no-op.
    
    Backport-PR-URL: #27967
    PR-URL: #25713
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    sam-github authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    b689008 View commit details
    Browse the repository at this point in the history
  14. src: fix Get() usage in tls_wrap.cc

    Backport-PR-URL: #27967
    PR-URL: #24060
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
    cjihrig authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    f9e8e88 View commit details
    Browse the repository at this point in the history
  15. tls: add CHECK for impossible condition

    Backport-PR-URL: #27967
    PR-URL: #26843
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    99dad28 View commit details
    Browse the repository at this point in the history
  16. tls: add debugging to native TLS code

    Backport-PR-URL: #27967
    PR-URL: #26843
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Minwoo Jung <minwoo@nodesource.com>
    Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    addaleax authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    75052ca View commit details
    Browse the repository at this point in the history
  17. test: clean up build files

    Files generated by the build process were accidentally included as part
    of an earlier commit. This removes them.
    
    PR-URL: #28297
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    Gabriel Schulhof authored and BethGriggs committed Jul 16, 2019
    Configuration menu
    Copy the full SHA
    35be08a View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2019

  1. test: skip tests related to CI failures on AIX

    These tests seem to trigger failures in the entire CI job (not just the
    test) on AIX. Skip them to see if that helps alleviate spurious failures
    in node-test-commit-aix (and the upstream PR and commit test jobs).
    
    See:
    - nodejs/build#1820 (comment)
    - nodejs/build#1847 (comment)
    
    PR-URL: #28469
    Backport-PR-URL: #28826
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    sam-github authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    39637cb View commit details
    Browse the repository at this point in the history
  2. test: skip stringbytes-external-exceed-max on AIX

    Add SKIP status for more tests in stringbytes-external-exceed-max that
    are failing on AIX.
    
    PR-URL: #28516
    Backport-PR-URL: #28826
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
    sam-github authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    2ae9916 View commit details
    Browse the repository at this point in the history
  3. test: fix pty test hangs on aix

    Some pty tests persistently hung on the AIX CI buildbots. Fix that by
    adding a helper script that properly sets up the pty before spawning
    the script under test.
    
    On investigation I discovered that the test runner hung when it tried
    to close the slave pty's file descriptor, probably due to a bug in
    AIX's pty implementation. I could reproduce it with a short C program.
    The test runner also leaked file descriptors to the child process.
    
    I couldn't convince python's `subprocess.Popen()` to do what I wanted
    it to do so I opted to move the logic to a helper script that can do
    fork/setsid/etc. without having to worry about stomping on state in
    tools/test.py.
    
    In the process I also uncovered some bugs in the pty module of the
    python distro that ships with macOS 10.14, leading me to reimplement
    a sizable chunk of the functionality of that module.
    
    And last but not least, of course there are differences between ptys
    on different platforms and the helper script has to paper over that.
    Of course.
    
    Really, this commit took me longer to put together than I care to admit.
    
    Caveat emptor: this commit takes the hacky ^D feeding to the slave out
    of tools/test.py and puts it in the *.in input files. You can also feed
    other control characters to tests, like ^C or ^Z, simply by inserting
    them into the corresponding input file. I think that's nice.
    
    Fixes: nodejs/build#1820
    Fixes: #28489
    
    PR-URL: #28600
    Backport-PR-URL: #28826
    Reviewed-By: Richard Lau <riclau@uk.ibm.com>
    Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    bnoordhuis authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    ada0ed5 View commit details
    Browse the repository at this point in the history
  4. deps: updated openssl upgrade instructions

    Patching the s390 asm rules is no longer required.
    
    See: openssl/openssl#8351
    
    PR-URL: #28212
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    sam-github authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    c59e0c2 View commit details
    Browse the repository at this point in the history
  5. deps: upgrade openssl sources to 1.1.1c

    This updates all sources in deps/openssl/openssl by:
        $ cd deps/openssl/
        $ rm -rf openssl
        $ tar zxf ~/tmp/openssl-1.1.1c.tar.gz
        $ mv openssl-1.1.1c openssl
        $ git add --all openssl
        $ git commit openssl
    
    PR-URL: #28212
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    sam-github authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    9e62852 View commit details
    Browse the repository at this point in the history
  6. deps: update archs files for OpenSSL-1.1.1c

    After an OpenSSL source update, all the config files need to be regenerated and
    comitted by:
        $ cd deps/openssl/config
        $ make
        $ git add deps/openssl/config/archs
        $ git add deps/openssl/openssl/crypto/include/internal/bn_conf.h
        $ git add deps/openssl/openssl/crypto/include/internal/dso_conf.h
        $ git add deps/openssl/openssl/include/openssl/opensslconf.h
        $ git commit
    
    PR-URL: #28212
    Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
    sam-github authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    8f5d6cf View commit details
    Browse the repository at this point in the history
  7. tools: replace rollup with ncc

    Replace rollup + plugins + config file with zeit/ncc package designed to
    do the particular task that we're leveraging rollup for but with
    zero-ish configuration. (rollup can do a whole lot more, but we're using
    a tiny portion of its functionality.)
    
    PR-URL: #24813
    Reviewed-By: Guy Bedford <guybedford@gmail.com>
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Backport-PR-URL: #28736
    Trott authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    4a607fa View commit details
    Browse the repository at this point in the history
  8. test: remove util.inherits() usage

    Backport-PR-URL: #28795
    PR-URL: #25245
    Refs: #24755
    Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
    Reviewed-By: Anna Henningsen <anna@addaleax.net>
    ZYSzys authored and BethGriggs committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    f332265 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2019

  1. src: handle empty Maybe in uv binding initialize

    This can fail when terminating a Worker that loads
    the `uv` binding at the same time.
    
    Refs: #25061 (comment)
    Fixes: #25134
    PR-URL: #25079
    Backport-PR-URL: #28832
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
    Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
    Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
    addaleax authored and BethGriggs committed Jul 30, 2019
    Configuration menu
    Copy the full SHA
    0339fba View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2019

  1. 2019-07-31, Version 10.16.1 'Dubnium' (LTS)

    Notable changes:
    
    - **deps**: upgrade openssl sources to 1.1.1c (Sam Roberts) [#28212](#28212)
    - **stream**: do not unconditionally call `\_read()` on `resume()` (Anna Henningsen) [#26965](#26965)
    - **worker**: fix nullptr deref after MessagePort deser failure (Anna Henningsen) [#25076](#25076)
    
    PR-URL: #28731
    BethGriggs committed Jul 31, 2019
    Configuration menu
    Copy the full SHA
    a395299 View commit details
    Browse the repository at this point in the history