Skip to content

Commit 428c3ad

Browse files
committed
[GR-36247] Upgrading the underlying Node.js to version 14.19.1.
PullRequest: js/2382
2 parents 36cc2ef + e24df44 commit 428c3ad

File tree

1,658 files changed

+156146
-36888
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,658 files changed

+156146
-36888
lines changed

3rd_party_licenses.txt

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
931931

932932
================================================================================
933933

934-
Node.js 14.18.1
934+
Node.js 14.19.1
935935

936936
Node.js is licensed for use as follows:
937937

@@ -1327,31 +1327,29 @@ The externally maintained libraries used by Node.js are:
13271327

13281328
3. Lao Word Break Dictionary Data (laodict.txt)
13291329

1330-
# Copyright (c) 2013 International Business Machines Corporation
1331-
# and others. All Rights Reserved.
1330+
# Copyright (C) 2016 and later: Unicode, Inc. and others.
1331+
# License & terms of use: http://www.unicode.org/copyright.html
1332+
# Copyright (c) 2015 International Business Machines Corporation
1333+
# and others. All Rights Reserved.
13321334
#
1333-
# Project: https://github.com/veer66/lao-dictionary
1334-
# Dictionary: https://github.com/veer66/lao-dictionary/blob/master/Lao-Dictionary.txt
1335-
# License: https://github.com/veer66/lao-dictionary/blob/master/Lao-Dictionary-LICENSE.txt
1336-
# (copied below)
1335+
# Project: https://github.com/rober42539/lao-dictionary
1336+
# Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt
1337+
# License: https://github.com/rober42539/lao-dictionary/LICENSE.txt
1338+
# (copied below)
13371339
#
1338-
# This file is derived from the above dictionary, with slight
1339-
# modifications.
1340+
# This file is derived from the above dictionary version of Nov 22, 2020
13401341
# ----------------------------------------------------------------------
13411342
# Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
13421343
# All rights reserved.
13431344
#
13441345
# Redistribution and use in source and binary forms, with or without
1345-
# modification,
1346-
# are permitted provided that the following conditions are met:
1347-
#
1348-
#
1349-
# Redistributions of source code must retain the above copyright notice, this
1350-
# list of conditions and the following disclaimer. Redistributions in
1351-
# binary form must reproduce the above copyright notice, this list of
1352-
# conditions and the following disclaimer in the documentation and/or
1353-
# other materials provided with the distribution.
1346+
# modification, are permitted provided that the following conditions are met:
13541347
#
1348+
# Redistributions of source code must retain the above copyright notice, this
1349+
# list of conditions and the following disclaimer. Redistributions in binary
1350+
# form must reproduce the above copyright notice, this list of conditions and
1351+
# the following disclaimer in the documentation and/or other materials
1352+
# provided with the distribution.
13551353
#
13561354
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
13571355
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
@@ -1560,6 +1558,17 @@ The externally maintained libraries used by Node.js are:
15601558
USE OR OTHER DEALINGS IN THE SOFTWARE.
15611559
"""
15621560

1561+
- corepack, located at deps/corepack, is licensed as follows:
1562+
"""
1563+
**Copyright © Corepack contributors**
1564+
1565+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1566+
1567+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1568+
1569+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1570+
"""
1571+
15631572
- OpenSSL, located at deps/openssl, is licensed as follows:
15641573
"""
15651574
Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
This changelog summarizes major changes between GraalVM versions of the GraalVM JavaScript (ECMAScript) language runtime.
44
The main focus is on user-observable behavior of the engine.
55

6+
## Version 21.3.2
7+
* Updated Node.js to version 14.19.1.
8+
69
## Version 21.3.1
710
* Updated Node.js to version 14.18.1.
811

common.jsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ local common_json = (import "common.json");
8888
capabilities: ['windows', 'amd64'],
8989
},
9090

91-
windows_jdk17: self.windows + common_json.devkits["windows-jdk17"] + {
91+
windows_jdk17: common_json.devkits["windows-jdk17"] + self.windows + {
9292
setup+: [
9393
['set-export', 'DEVKIT_VERSION', '2019'],
9494
],
9595
},
9696

97-
windows_jdk11: self.windows + common_json.devkits["windows-jdk11"] + {
97+
windows_jdk11: common_json.devkits["windows-jdk11"] + self.windows + {
9898
setup+: [
9999
['set-export', 'DEVKIT_VERSION', '2017'],
100100
],
101101
},
102102

103-
windows_jdk8: self.windows + common_json.devkits["windows-oraclejdk8"] + {
103+
windows_jdk8: common_json.devkits["windows-oraclejdk8"] + self.windows + {
104104
setup+: [
105105
['set-export', 'DEVKIT_VERSION', '2017'],
106106
],

graal-nodejs/.github/workflows/build-tarball.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
build-tarball:
1818
env:
19-
PYTHON_VERSION: 3.9
19+
PYTHON_VERSION: '3.10'
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v2
@@ -41,7 +41,7 @@ jobs:
4141
path: tarballs
4242
test-tarball-linux:
4343
env:
44-
PYTHON_VERSION: 3.9
44+
PYTHON_VERSION: '3.10'
4545
needs: build-tarball
4646
runs-on: ubuntu-latest
4747
steps:

graal-nodejs/.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ on:
1212
- v[0-9]+.x
1313

1414
env:
15-
PYTHON_VERSION: 3.9
15+
PYTHON_VERSION: '3.10'
1616
FLAKY_TESTS: dontcare
1717

1818
jobs:
1919
build-windows:
20-
runs-on: windows-latest
20+
runs-on: windows-2019
2121
steps:
2222
- uses: actions/checkout@v2
2323
- name: Set up Python ${{ env.PYTHON_VERSION }}

graal-nodejs/.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- v[0-9]+.x
1212

1313
env:
14-
PYTHON_VERSION: 3.9
14+
PYTHON_VERSION: '3.10'
1515
NODE_VERSION: lts/*
1616

1717
jobs:

graal-nodejs/.github/workflows/misc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- v[0-9]+.x
1212

1313
env:
14-
NODE_VERSION: lts/*
14+
NODE_VERSION: 14
1515

1616
jobs:
1717
build-docs:

graal-nodejs/.github/workflows/test-asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- 'doc/**'
1919

2020
env:
21-
PYTHON_VERSION: 3.9
21+
PYTHON_VERSION: '3.10'
2222
FLAKY_TESTS: dontcare
2323

2424
jobs:

graal-nodejs/.github/workflows/test-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
- v[0-9]+.x
1313

1414
env:
15-
PYTHON_VERSION: 3.9
15+
PYTHON_VERSION: '3.10'
1616
FLAKY_TESTS: dontcare
1717

1818
jobs:

graal-nodejs/.github/workflows/test-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- 'doc/**'
1919

2020
env:
21-
PYTHON_VERSION: 3.9
21+
PYTHON_VERSION: '3.10'
2222
FLAKY_TESTS: dontcare
2323

2424
jobs:

0 commit comments

Comments
 (0)