Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v14.19.3
Choose a base ref
...
head repository: nodejs/node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v14.20.0
Choose a head ref
  • 9 commits
  • 230 files changed
  • 6 contributors

Commits on May 17, 2022

  1. Working on v14.19.4

    PR-URL: #43075
    richardlau committed May 17, 2022
    Configuration menu
    Copy the full SHA
    a19ca18 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2022

  1. deps: upgrade openssl sources to 1.1.1p

    This updates all sources in deps/openssl/openssl by:
        $ cd deps/openssl/
        $ rm -rf openssl
        $ tar zxf ~/tmp/openssl-OpenSSL_1_1_1p.tar.gz
        $ mv openssl-OpenSSL_1_1_1p.tar.gz openssl
        $ git add --all openssl
        $ git commit openssl
    
    PR-URL: #43527
    Refs: https://mta.openssl.org/pipermail/openssl-announce/2022-June/000228.html
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    RafaelGSS authored and juanarbol committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    c5d9c9a View commit details
    Browse the repository at this point in the history
  2. deps: update archs files for OpenSSL-1.1.1p

     After an OpenSSL source update, all the config files need to be
     regenerated and committed by:
        $ make -C deps/openssl/config
        $ git add deps/openssl/config/archs
        $ git add deps/openssl/openssl/include/crypto/bn_conf.h
        $ git add deps/openssl/openssl/include/crypto/dso_conf.h
        $ git add deps/openssl/openssl/include/openssl/opensslconf.h
        $ git commit
    
    PR-URL: #43527
    Refs: https://mta.openssl.org/pipermail/openssl-announce/2022-June/000228.html
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Tobias Nießen <tniessen@tnie.de>
    RafaelGSS authored and juanarbol committed Jul 3, 2022
    Configuration menu
    Copy the full SHA
    837a1d8 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. src,deps,build,test: add OpenSSL config appname

    This commit adds the setting of an appname (configuration section
    name), 'nodejs_conf', to be used when reading OpenSSL configuration
    files.
    
    The motivation for this is that currently the default OpenSSL
    configuration, 'openssl_conf', element will be used which may be
    undesirable as it might configure OpenSSL in unwanted ways. With this
    commit it is still possible to use a default openssl.cnf file but the
    only section that Node.js will read from is a section named
    'nodejs_conf'.
    
    PR-URL: #43124
    Refs: #40366
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    
    Backport-PR-URL: #43586
    danbev authored and juanarbol committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    8e8aef8 View commit details
    Browse the repository at this point in the history
  2. src: fix IPv4 validation in inspector_socket

    Co-authored-by: RafaelGSS <rafael.nunu@hotmail.com>
    PR-URL: nodejs-private/node-private#320
    Backport-PR-URL: nodejs-private/node-private#325
    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: RafaelGSS <rafael.nunu@hotmail.com>
    CVE-ID: CVE-2022-32212
    2 people authored and juanarbol committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    48c5aa5 View commit details
    Browse the repository at this point in the history
  3. deps: upgrade openssl sources to 1.1.1q

    This updates all sources in deps/openssl/openssl by:
        $ cd deps/openssl/
        $ rm -rf openssl
        $ tar zxf ~/tmp/openssl-1.1.1q.tar.gz
        $ mv openssl-1.1.1q openssl
        $ git add --all openssl
        $ git commit openssl
    
    PR-URL: #43686
    Refs: https://mta.openssl.org/pipermail/openssl-announce/2022-July/000232.html
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    RafaelGSS authored and juanarbol committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    98965b1 View commit details
    Browse the repository at this point in the history
  4. deps: update archs files for OpenSSL-1.1.1q

    After an OpenSSL source update, all the config files need to be
    regenerated and committed by:
      $ make -C deps/openssl/config
      $ git add deps/openssl/config/archs
      $ git add deps/openssl/openssl/include/crypto/bn_conf.h
      $ git add deps/openssl/openssl/include/crypto/dso_conf.h
      $ git add deps/openssl/openssl/include/openssl/opensslconf.h
      $ git commit
    
    PR-URL: #43686
    Refs: https://mta.openssl.org/pipermail/openssl-announce/2022-July/000232.html
    Reviewed-By: Beth Griggs <bgriggs@redhat.com>
    Reviewed-By: Richard Lau <rlau@redhat.com>
    Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
    Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
    RafaelGSS authored and juanarbol committed Jul 6, 2022
    Configuration menu
    Copy the full SHA
    b93e048 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2022

  1. http: stricter Transfer-Encoding and header separator parsing

    Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
    Reviewed-By: James M Snell <jasnell@gmail.com>
    Reviewed-By: Rich Trott <rtrott@gmail.com>
    Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
    PR-URL: #315
    Backport-PR-URL: #327
    CVE-ID: CVE-2022-32215,CVE-2022-32214,CVE-2022-32213
    ShogunPanda authored and juanarbol committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    da0fda0 View commit details
    Browse the repository at this point in the history
  2. 2022-07-07, Version 14.20.0 'Fermium' (LTS)

    This is a security release.
    
    Notable changes:
    
    * (SEMVER-MAJOR) src,deps,build,test: add OpenSSL config appname (Daniel Bevenius) #43124
    * deps: upgrade openssl sources to 1.1.1q (RafaelGSS) #43686
    
    PR-URL: nodejs-private/node-private#332
    juanarbol committed Jul 7, 2022
    Configuration menu
    Copy the full SHA
    50871b5 View commit details
    Browse the repository at this point in the history
Loading