From 216084d334b7ec7f8b9daff17c7a86ea2a8322c3 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 21 Sep 2023 16:23:35 +0200 Subject: [PATCH 001/156] Add RUBY_BUILD_TARBALL_OVERRIDE to override the ruby tarball URL * Update the check for whether a package is a ruby. --- README.md | 3 ++- bin/ruby-build | 17 +++++++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 91ff2701..ca6185b0 100644 --- a/README.md +++ b/README.md @@ -82,9 +82,10 @@ The build process may be configured through the following environment variables: | `RUBY_BUILD_CURL_OPTS` | Additional options to pass to `curl` for downloading. | | `RUBY_BUILD_WGET_OPTS` | Additional options to pass to `wget` for downloading. | | `RUBY_BUILD_MIRROR_URL` | Custom mirror URL root. | -| `RUBY_BUILD_MIRROR_PACKAGE_URL` | Custom complete mirror URL (e.g. http://mirror.example.com/package-1.0.0.tar.gz). | +| `RUBY_BUILD_MIRROR_PACKAGE_URL` | Custom complete mirror URL (e.g. http://mirror.example.com/package-1.0.0.tar.gz). | | `RUBY_BUILD_SKIP_MIRROR` | Bypass the download mirror and fetch all package files from their original URLs. | | `RUBY_BUILD_ROOT` | Custom build definition directory. (Default: `share/ruby-build`) | +| `RUBY_BUILD_TARBALL_OVERRIDE` | Override the URL to fetch the ruby tarball from, optionally followed by `#checksum`. | | `RUBY_BUILD_DEFINITIONS` | Additional paths to search for build definitions. (Colon-separated list) | | `CC` | Path to the C compiler. | | `RUBY_CFLAGS` | Additional `CFLAGS` options (_e.g.,_ to override `-O3`). | diff --git a/bin/ruby-build b/bin/ruby-build index 51fde4bb..b706d0f9 100755 --- a/bin/ruby-build +++ b/bin/ruby-build @@ -381,6 +381,10 @@ fetch_tarball() { local checksum local extracted_dir + if is_ruby_package "$1" && [ -n "$RUBY_BUILD_TARBALL_OVERRIDE" ]; then + package_url="$RUBY_BUILD_TARBALL_OVERRIDE" + fi + if [ "$package_url" != "${package_url/\#}" ]; then checksum="${package_url#*#}" package_url="${package_url%%#*}" @@ -1257,14 +1261,23 @@ isolated_gem_install() { apply_ruby_patch() { local patchfile - case "$1" in - ruby-* | jruby-* | rubinius-* | truffleruby-* ) + if is_ruby_package "$1"; then patchfile="$(mktemp "${TMP}/ruby-patch.XXXXXX")" cat "${2:--}" >"$patchfile" local striplevel=0 grep -q '^--- a/' "$patchfile" && striplevel=1 patch -p$striplevel --force -i "$patchfile" + fi +} + +is_ruby_package() { + case "$1" in + ruby-* | jruby-* | rubinius-* | truffleruby[+-]* | mruby-* | picoruby-* ) + return 0 + ;; + *) + return 1 ;; esac } From 536495d1d3c422dd3a98dd88d176c39ee1ff56ff Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sat, 14 Oct 2023 12:19:11 +0200 Subject: [PATCH 002/156] ruby-build 20231014 --- bin/ruby-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ruby-build b/bin/ruby-build index b706d0f9..0afaa4b2 100755 --- a/bin/ruby-build +++ b/bin/ruby-build @@ -14,7 +14,7 @@ # --version Show version of ruby-build # -RUBY_BUILD_VERSION="20231012" +RUBY_BUILD_VERSION="20231014" OLDIFS="$IFS" From ae7e20149cab0886a66a5ad7586031c8c4fbcb4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:17:23 +0000 Subject: [PATCH 003/156] Bump redhat-plumbers-in-action/differential-shellcheck Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.3.1 to 5.4.0. - [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases) - [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/redhat-plumbers-in-action/differential-shellcheck/compare/b8c7b83d16cce15d13563f5d055b34b9e3360ed3...cc6721c45a8800cc666de45493545a07a638d121) --- updated-dependencies: - dependency-name: redhat-plumbers-in-action/differential-shellcheck dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3c5d182..0171332c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@b8c7b83d16cce15d13563f5d055b34b9e3360ed3 # v5.3.1 + - uses: redhat-plumbers-in-action/differential-shellcheck@cc6721c45a8800cc666de45493545a07a638d121 # v5.4.0 with: severity: error # TODO strengthen token: ${{ secrets.GITHUB_TOKEN }} From 8eaaecbe95e4c883f92cf1ef819e7d28959d583f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 18 Sep 2024 01:41:06 +0000 Subject: [PATCH 004/156] 22.9.0 Created with `npm run submit-definitions`. --- share/node-build/22.9.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.9.0 diff --git a/share/node-build/22.9.0 b/share/node-build/22.9.0 new file mode 100644 index 00000000..20ed1fed --- /dev/null +++ b/share/node-build/22.9.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.9.0/node-v22.9.0-aix-ppc64.tar.gz#6cdaa6e3c5c7cf0596dd5a3deafc63d22987eb7da95eca1fffccd168a70f4b1e" +binary darwin-arm64 "https://nodejs.org/dist/v22.9.0/node-v22.9.0-darwin-arm64.tar.gz#7d62217f64491524db6bcfb059049d64fd6a9adcae52565ed54aaad365a55afd" +binary darwin-x64 "https://nodejs.org/dist/v22.9.0/node-v22.9.0-darwin-x64.tar.gz#2d68692990a38078e1895763ff68f8ef0105299134e7f5654ddafaac69d4fa59" +binary linux-arm64 "https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-arm64.tar.gz#4497750edeba40349fae55c058103a7c3c606adb209839c087739d2184c25d8a" +binary linux-armv7l "https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-armv7l.tar.gz#67dbabeee7cee24fa56cb9ceba01dd9f41d7644d95744e0bd66897d472e6188c" +binary linux-ppc64le "https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-ppc64le.tar.gz#f3baf6120602e13436ab30bbe55593599a6f5681efe33ea21f77550af7cfde83" +binary linux-s390x "https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-s390x.tar.gz#70ee74fc334075f5822d46bd1c0286fcfb1547e0d55278c0dab5cefc70783af5" +binary linux-x64 "https://nodejs.org/dist/v22.9.0/node-v22.9.0-linux-x64.tar.gz#1efa7ba49fbb80b2110ebed50224705ca23b1edbdd1e3210e293faa006540488" + +install_package "node-v22.9.0" "https://nodejs.org/dist/v22.9.0/node-v22.9.0.tar.gz#296854aa1dca140b0462c2415637d0419e42af91114538a7e6fdf623971a6833" From d62a16e8fe1331753e3047c47aa6feb3793ae844 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:09:46 +0000 Subject: [PATCH 005/156] 5.3.12 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 5ad51833..b7f4e2ba 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.11 +NODE_BUILD_VERSION=5.3.12 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 6b46efe8..559b1d96 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.11", + "version": "5.3.12", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.11", + "version": "5.3.12", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 00f94238..de57f819 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.11", + "version": "5.3.12", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From fd88fcadb51d81be0445a14a36f3dac81e852a68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:29:32 +0000 Subject: [PATCH 006/156] Bump peter-evans/create-pull-request from 6.0.5 to 7.0.5 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 6.0.5 to 7.0.5. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/6d6857d36972b65feb161a90e484f2984215f83e...5e914681df9dc83aa4e4905692ca88beb2f9e91f) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/definitions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 1351ca1d..0d1ab82d 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -24,7 +24,7 @@ jobs: run: | msg=$(git log --format='- %s' --reverse ${{github.sha}}..) echo "::set-output name=message::${msg//$'\n'/'%0A'}" - - uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5 + - uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 with: token: ${{ secrets.BOT_TOKEN }} branch: latest-scraped-definitions @@ -38,7 +38,7 @@ jobs: - run: npm ci - run: npm run lint:lts -- --fix - if: failure() - uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5 + uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 with: token: ${{ secrets.BOT_TOKEN }} committer: 'nodenv bot ' From af42d89733827fd13028ca1310960604a97cb587 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 3 Oct 2024 18:30:18 +0000 Subject: [PATCH 007/156] 20.18.0 Created with `npm run submit-definitions`. --- share/node-build/20.18.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/20.18.0 diff --git a/share/node-build/20.18.0 b/share/node-build/20.18.0 new file mode 100644 index 00000000..fc1ffb0a --- /dev/null +++ b/share/node-build/20.18.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-aix-ppc64.tar.gz#612c1cbb613f7af05f9de71767c3ba791b1972abe07fe37dbc721e837f2df9bc" +binary darwin-arm64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-arm64.tar.gz#92e180624259d082562592bb12548037c6a417069be29e452ec5d158d657b4be" +binary darwin-x64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-x64.tar.gz#c02aa7560612a4e2cc359fd89fae7aedde370c06db621f2040a4a9f830a125dc" +binary linux-arm64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-arm64.tar.gz#38bccb35c06ee4edbcd00c77976e3fad1d69d2e57c3c0c363d1700a2a2493278" +binary linux-armv7l "https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-armv7l.tar.gz#9a522daa837d4d32dc700bf9b18dea9e21a229b113a22cfcf38f1f2240bbbc47" +binary linux-ppc64le "https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-ppc64le.tar.gz#627ead0c0dbb6db57db415dd440506764ecb7238a8b6ecb65720a43787ccfead" +binary linux-s390x "https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-s390x.tar.gz#41d3e8dc9fc23e0ae1a313fac27f57fc3358c790af11632943566600fc2ae2d3" +binary linux-x64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-linux-x64.tar.gz#24a5d58a1d4c2903478f4b7c3cfd2eeb5cea2cae3baee11a4dc6a1fed25fec6c" + +install_package "node-v20.18.0" "https://nodejs.org/dist/v20.18.0/node-v20.18.0.tar.gz#c0819f8fc5038584d24c22002aeffd23f2d4a6fd6b337b30c502cbe4a659720c" From 251cb414d566fd259fd7390df0d388d577f42d98 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Sat, 5 Oct 2024 10:08:36 +0000 Subject: [PATCH 008/156] 5.3.13 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index b7f4e2ba..b3f20bb5 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.12 +NODE_BUILD_VERSION=5.3.13 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 559b1d96..383cbc89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.12", + "version": "5.3.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.12", + "version": "5.3.13", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index de57f819..e25ec34d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.12", + "version": "5.3.13", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From b0622bb7b01e1a67f65e579054493f10f28b1754 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 17 Oct 2024 01:46:00 +0000 Subject: [PATCH 009/156] 22.10.0 Created with `npm run submit-definitions`. --- share/node-build/22.10.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.10.0 diff --git a/share/node-build/22.10.0 b/share/node-build/22.10.0 new file mode 100644 index 00000000..c865e63a --- /dev/null +++ b/share/node-build/22.10.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.10.0/node-v22.10.0-aix-ppc64.tar.gz#9fe24a08564eca8ce7e6ea3dfa58bc91ec5512f194e6871a388254c3ebe4f0a4" +binary darwin-arm64 "https://nodejs.org/dist/v22.10.0/node-v22.10.0-darwin-arm64.tar.gz#75e5b78d59187ca936e67f0b88a6db913f4ab8bb83a27a1d0a34f98089cb4f77" +binary darwin-x64 "https://nodejs.org/dist/v22.10.0/node-v22.10.0-darwin-x64.tar.gz#f8d4a064d3edd49900187e301424a7d7d30f75b60f618811d2aad80b665b42d5" +binary linux-arm64 "https://nodejs.org/dist/v22.10.0/node-v22.10.0-linux-arm64.tar.gz#17abee3dfe6ffcda95cab08bb5f43de7f88d04e9607c517e701c6e623358dc7c" +binary linux-armv7l "https://nodejs.org/dist/v22.10.0/node-v22.10.0-linux-armv7l.tar.gz#cd0bd2cd4098db1dde29314a60287661484e18df708ac94532e5a34f99eb6fd4" +binary linux-ppc64le "https://nodejs.org/dist/v22.10.0/node-v22.10.0-linux-ppc64le.tar.gz#52fb8ae36061e64d39499be50a1193fc1f10fa667b4211b651576db65b5558da" +binary linux-s390x "https://nodejs.org/dist/v22.10.0/node-v22.10.0-linux-s390x.tar.gz#6e976e9278f66e654f208fdca1bae80f49705f51ab4c47ef1acb5bd59b16e640" +binary linux-x64 "https://nodejs.org/dist/v22.10.0/node-v22.10.0-linux-x64.tar.gz#674fef1891cc9927b5dc2b0ee2399b77f6621e6b3157f563a9e9491ad3db107b" + +install_package "node-v22.10.0" "https://nodejs.org/dist/v22.10.0/node-v22.10.0.tar.gz#42e4ab4ce34383488185cef6f06f8d1267bf91ebc5c6596fc3786efb0f8b5aaa" From 13b62af5590294f1a223967f3e4d0813349b06c5 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 17 Oct 2024 01:46:00 +0000 Subject: [PATCH 010/156] 23.0.0 Created with `npm run submit-definitions`. --- share/node-build/23.0.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.0.0 diff --git a/share/node-build/23.0.0 b/share/node-build/23.0.0 new file mode 100644 index 00000000..d8b5d4fd --- /dev/null +++ b/share/node-build/23.0.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-aix-ppc64.tar.gz#1dd33c1cf52d16829283af113e90b5d1e8813ba6c8e1bef3f2808160fa078d93" +binary darwin-arm64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-darwin-arm64.tar.gz#72ce7905b83f9499b92501675cf76e53b545cb9d0a42dca497fa80c8eb5fbcf9" +binary darwin-x64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-darwin-x64.tar.gz#13915842f15bc32f76a24f8ea17fd43d650898d12d21c7b676b01d0e00dcb7fd" +binary linux-arm64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-linux-arm64.tar.gz#d908fc167d2242a50394e894d4ba258757a8a12b7bef29bd360f4f55c25acf3f" +binary linux-armv7l "https://nodejs.org/dist/v23.0.0/node-v23.0.0-linux-armv7l.tar.gz#a37a90d903c30d757deaac78bd78e31c7a20b0244fe0f925535dddefb7ca1efc" +binary linux-ppc64le "https://nodejs.org/dist/v23.0.0/node-v23.0.0-linux-ppc64le.tar.gz#4f2ac682752c904cb142e2585ec957a711cdb11f9268c1227863129e3c7c7421" +binary linux-s390x "https://nodejs.org/dist/v23.0.0/node-v23.0.0-linux-s390x.tar.gz#41448aced57e51e91e914849d41a758303c130ae30033fb6352eb6754c5e9df8" +binary linux-x64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-linux-x64.tar.gz#702cbc710fcf1102cef1aced74443fee34eff8df4827de30ec970d377ce31d9e" + +install_package "node-v23.0.0" "https://nodejs.org/dist/v23.0.0/node-v23.0.0.tar.gz#f686cd4be4994416e099ce23f9fe6ef3983f37c917d8d36963e17e4634a5edd1" From 6dfb6776b3dcdaaa83a4e8cd999c3885f9062750 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:11:03 +0000 Subject: [PATCH 011/156] 5.3.14 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index b3f20bb5..4e502b47 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.13 +NODE_BUILD_VERSION=5.3.14 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 383cbc89..87ecb742 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.13", + "version": "5.3.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.13", + "version": "5.3.14", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index e25ec34d..691d5651 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.13", + "version": "5.3.14", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From b51977d0639060f8d3986f94bdd4d379ac2ea000 Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Wed, 23 Oct 2024 01:45:38 +0000 Subject: [PATCH 012/156] Add LTS warning messages --- share/node-build/20.0.0 | 5 +++++ share/node-build/20.1.0 | 5 +++++ share/node-build/20.10.0 | 5 +++++ share/node-build/20.11.0 | 5 +++++ share/node-build/20.11.1 | 5 +++++ share/node-build/20.12.0 | 5 +++++ share/node-build/20.12.1 | 5 +++++ share/node-build/20.12.2 | 5 +++++ share/node-build/20.13.0 | 5 +++++ share/node-build/20.13.1 | 5 +++++ share/node-build/20.14.0 | 5 +++++ share/node-build/20.15.0 | 5 +++++ share/node-build/20.15.1 | 5 +++++ share/node-build/20.16.0 | 5 +++++ share/node-build/20.17.0 | 5 +++++ share/node-build/20.18.0 | 5 +++++ share/node-build/20.2.0 | 5 +++++ share/node-build/20.3.0 | 5 +++++ share/node-build/20.3.1 | 5 +++++ share/node-build/20.4.0 | 5 +++++ share/node-build/20.5.0 | 5 +++++ share/node-build/20.5.1 | 5 +++++ share/node-build/20.6.0 | 5 +++++ share/node-build/20.6.1 | 5 +++++ share/node-build/20.7.0 | 5 +++++ share/node-build/20.8.0 | 5 +++++ share/node-build/20.8.1 | 5 +++++ share/node-build/20.9.0 | 5 +++++ share/node-build/20.x-dev | 5 +++++ share/node-build/20.x-next | 5 +++++ 30 files changed, 150 insertions(+) diff --git a/share/node-build/20.0.0 b/share/node-build/20.0.0 index bd7f9994..7b27f0b8 100644 --- a/share/node-build/20.0.0 +++ b/share/node-build/20.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-aix-ppc64.tar.gz#5fdc8901c70116d29ed462e234d11485521027dc554962c2d47fe367b61409ed" binary darwin-arm64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-darwin-arm64.tar.gz#ee27eea6694a5d8c834b11a12fb85a5dae01a91178be12920a6da12d8c299c43" binary darwin-x64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-darwin-x64.tar.gz#a26019f8dc6f0b261b1eebabeedb00f478460c36950a99b5c7e161af005e400e" diff --git a/share/node-build/20.1.0 b/share/node-build/20.1.0 index 4f628017..f81230a9 100644 --- a/share/node-build/20.1.0 +++ b/share/node-build/20.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-aix-ppc64.tar.gz#0974cc4ae791faa7b72fbb828d49cf70d8d76fa4aadfcce9582e6119c00a620c" binary darwin-arm64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-darwin-arm64.tar.gz#fd3bca029883cb84d4f58e7adb1a2c4fc4e616a8297fb08cb5c34465b7c4071a" binary darwin-x64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-darwin-x64.tar.gz#770dd45c15cfafa3f945fce173aa84dfed94931923242700718edf6883b74fff" diff --git a/share/node-build/20.10.0 b/share/node-build/20.10.0 index 055e6536..4243aa83 100644 --- a/share/node-build/20.10.0 +++ b/share/node-build/20.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-aix-ppc64.tar.gz#97642ac79c8ec4778c20412256fdc9cd1c3ba782d67134fa43e17abdfe2dd3eb" binary darwin-arm64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-darwin-arm64.tar.gz#68b93099451d77aac116cf8fce179cabcf53fec079508dc6b39d3a086fb461a8" binary darwin-x64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-darwin-x64.tar.gz#5ff5e8abd3eea6e5f507eb6677554f5b2188eedef654096aa4168a9941e91a32" diff --git a/share/node-build/20.11.0 b/share/node-build/20.11.0 index 732ddccf..20187c2d 100644 --- a/share/node-build/20.11.0 +++ b/share/node-build/20.11.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-aix-ppc64.tar.gz#f76a47616ceb47b9766cb7182ec6b53100192349de6a8aebb11f3abce045748f" binary darwin-arm64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-darwin-arm64.tar.gz#94e443d007e2882f8e5aecc85d978f7591520dc3b642adc7583b3cb0b3fc37d7" binary darwin-x64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-darwin-x64.tar.gz#c0ba02c905814258bd99a362027f8d4d2cc738218a9cf1dce2620e8735e3a80e" diff --git a/share/node-build/20.11.1 b/share/node-build/20.11.1 index 1d5e8bb3..97bb9471 100644 --- a/share/node-build/20.11.1 +++ b/share/node-build/20.11.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-aix-ppc64.tar.gz#43a881788549e1b3425eb5f2b92608f438f146e08213de09c5bd5ff841cae7ae" binary darwin-arm64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-darwin-arm64.tar.gz#e0065c61f340e85106a99c4b54746c5cee09d59b08c5712f67f99e92aa44995d" binary darwin-x64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-darwin-x64.tar.gz#c52e7fb0709dbe63a4cbe08ac8af3479188692937a7bd8e776e0eedfa33bb848" diff --git a/share/node-build/20.12.0 b/share/node-build/20.12.0 index adf231e0..9e8708ff 100644 --- a/share/node-build/20.12.0 +++ b/share/node-build/20.12.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-aix-ppc64.tar.gz#8d2ce67d19e2eafe7581f5865382f19ce7f6e66c1d19ed451b7290dcb7b74bd9" binary darwin-arm64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-darwin-arm64.tar.gz#422a74b7ede14b697a8c2ca887ea161fe79898a35f163fdfb98435c5ab25027b" binary darwin-x64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-darwin-x64.tar.gz#5c7d71a1c1cf613037432e0b6c3d913d96604d9293b3397ec70b344730c81daf" diff --git a/share/node-build/20.12.1 b/share/node-build/20.12.1 index 3a98e7ab..b37e275e 100644 --- a/share/node-build/20.12.1 +++ b/share/node-build/20.12.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-aix-ppc64.tar.gz#2a75c3cc9ed139b2ee82be709a04c171ed2d96d962082d4ab5fbf7f486846f4f" binary darwin-arm64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-darwin-arm64.tar.gz#65df8cb0724e3a58c7757b75a70cc1057e1f67ffc5e852bfe6241de0b37c70a0" binary darwin-x64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-darwin-x64.tar.gz#f5dc3c71c87c58c9b019d9f85302db3a6a6c47167c5a0480b697f153d02ac316" diff --git a/share/node-build/20.12.2 b/share/node-build/20.12.2 index 8d5c8f58..91a5dacb 100644 --- a/share/node-build/20.12.2 +++ b/share/node-build/20.12.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-aix-ppc64.tar.gz#b1e8241fb06f3f27a3336b4beb193f1cb92f05f1aaaa904e5c62df1cd4f599f5" binary darwin-arm64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-darwin-arm64.tar.gz#98eb624b52efec2530079e1d11296ec0ac20771b94b087d21649250339cf5332" binary darwin-x64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-darwin-x64.tar.gz#cd5e9a80a38ccffc036a87b232a5402339c7bf8fa9a494ae0731a1a671687718" diff --git a/share/node-build/20.13.0 b/share/node-build/20.13.0 index 35dbe403..024b622b 100644 --- a/share/node-build/20.13.0 +++ b/share/node-build/20.13.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-aix-ppc64.tar.gz#d75b994a79a60fb5ae06cc1e46d9e5cae3baed4a02bebd63f699391dd663e7c3" binary darwin-arm64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-darwin-arm64.tar.gz#ef850bf9045d756c7a703c30fc09d7d9de9c7e7f254c6f4c02a1531381a806fd" binary darwin-x64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-darwin-x64.tar.gz#417fb4a3a3a70547d5f6d05e068e6d6ec226a6d12c94d91661641e4e11eaeb63" diff --git a/share/node-build/20.13.1 b/share/node-build/20.13.1 index 14b870a1..9fca2b08 100644 --- a/share/node-build/20.13.1 +++ b/share/node-build/20.13.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-aix-ppc64.tar.gz#941d645cc804274934a06813c87b0b7cee7a6c3f5a3c82e62e1f6f8dc7f0030c" binary darwin-arm64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-darwin-arm64.tar.gz#c30fe595f59dcd2c5158da6bf8bc251ffc85ca37304afa89db150fb3c62c4507" binary darwin-x64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-darwin-x64.tar.gz#80bde95dc976b84db5ca566738c07305087ae578f5f3b05191e0e6ff54aaeaf2" diff --git a/share/node-build/20.14.0 b/share/node-build/20.14.0 index e39674cd..78227c19 100644 --- a/share/node-build/20.14.0 +++ b/share/node-build/20.14.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-aix-ppc64.tar.gz#06ac9b1f35de7b05dc0aea58b99804edf608ee500b2e9b303d1a6044eb3eeab2" binary darwin-arm64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-darwin-arm64.tar.gz#d2148d79e9ff04d2982d00faeae942ceba488ca327a91065e528235167b9e9d6" binary darwin-x64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-darwin-x64.tar.gz#1dcc18a199cb5f46d43ed1c3c61b87a247d1a1a11dd6b32a36a9c46ac1088f86" diff --git a/share/node-build/20.15.0 b/share/node-build/20.15.0 index bafabca7..e29a49d0 100644 --- a/share/node-build/20.15.0 +++ b/share/node-build/20.15.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-aix-ppc64.tar.gz#6b6e7119a5b539bfcf3b37872b37771750fd7e8bd255eaab1285da749d71775b" binary darwin-arm64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-darwin-arm64.tar.gz#2646c338d2c5ecabba4f745fc315d6fdfbb7e01b5badecc154ad27dda00325fc" binary darwin-x64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-darwin-x64.tar.gz#95ca98b974d06f84095dd0a977dea5fde79e909d103715fb782856ded12d2146" diff --git a/share/node-build/20.15.1 b/share/node-build/20.15.1 index 86b5118f..329988b7 100644 --- a/share/node-build/20.15.1 +++ b/share/node-build/20.15.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-aix-ppc64.tar.gz#dd24c8b6fdaf46361e130c894fd7282266f944b54196636e6df583fdec1e836f" binary darwin-arm64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-darwin-arm64.tar.gz#4743bc042f90ba5d9edf09403207290a9cdd2f6061bdccf7caaa0bbfd49f343e" binary darwin-x64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-darwin-x64.tar.gz#f5379772ffae1404cfd1fcc8cf0c6c5971306b8fb2090d348019047306de39dc" diff --git a/share/node-build/20.16.0 b/share/node-build/20.16.0 index 8531b945..9ba43d3d 100644 --- a/share/node-build/20.16.0 +++ b/share/node-build/20.16.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-aix-ppc64.tar.gz#5eb1b7ea405c86be0a21ec3850997c89df238d6e4659a0b990aa793a8cbfd9cf" binary darwin-arm64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-darwin-arm64.tar.gz#fc7355e778b181575153b7dea4879e8021776eeb376c43c50f65893d2ea70aa3" binary darwin-x64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-darwin-x64.tar.gz#e18942cd706e4d69a4845ddacee2f1c17a72e853a229e3d2623d2edeb7efde72" diff --git a/share/node-build/20.17.0 b/share/node-build/20.17.0 index f1f5d6d1..d770c017 100644 --- a/share/node-build/20.17.0 +++ b/share/node-build/20.17.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-aix-ppc64.tar.gz#44e9bddedf7b6b21917174a7707d737cfa0ef61f9ecb06baf6dc1a208d41d54b" binary darwin-arm64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-darwin-arm64.tar.gz#476324108c4361935465631eec47df1c943ba2c87bc050853385b1d1c71f0b1f" binary darwin-x64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-darwin-x64.tar.gz#eefe9447dbb0b5b233d42730989c6c364487de4043145db2f63da94e9623c380" diff --git a/share/node-build/20.18.0 b/share/node-build/20.18.0 index fc1ffb0a..d1e1c1c3 100644 --- a/share/node-build/20.18.0 +++ b/share/node-build/20.18.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-aix-ppc64.tar.gz#612c1cbb613f7af05f9de71767c3ba791b1972abe07fe37dbc721e837f2df9bc" binary darwin-arm64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-arm64.tar.gz#92e180624259d082562592bb12548037c6a417069be29e452ec5d158d657b4be" binary darwin-x64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-x64.tar.gz#c02aa7560612a4e2cc359fd89fae7aedde370c06db621f2040a4a9f830a125dc" diff --git a/share/node-build/20.2.0 b/share/node-build/20.2.0 index 4ea6b3c2..c0bde5f6 100644 --- a/share/node-build/20.2.0 +++ b/share/node-build/20.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-aix-ppc64.tar.gz#40cd0361b75fb13b5cb6edf9113c48b0771dae961750622030c82dff2ac30911" binary darwin-arm64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-darwin-arm64.tar.gz#8dd23fb204b2c239239085761ccae232c5cdc129f633489598a8759248e5f063" binary darwin-x64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-darwin-x64.tar.gz#d92bc1e96b2458595f41f5e75749ad4d2b1dd8e96b5ebc34cf5a45ab21797cb3" diff --git a/share/node-build/20.3.0 b/share/node-build/20.3.0 index 5e1905f9..5684b290 100644 --- a/share/node-build/20.3.0 +++ b/share/node-build/20.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-aix-ppc64.tar.gz#45375449725aa845f605a77e6ff88886a2f73294183e82ea8d38e0c24722f853" binary darwin-arm64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-darwin-arm64.tar.gz#25d5db6192ebcb7013f4138c71a7c423d0da33f28149d28b3b6df7c00527dd40" binary darwin-x64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-darwin-x64.tar.gz#24293d0217f009cbf821e5f399dcf72c1df2cb27f70cb1f05fd07af2ee6ad2c2" diff --git a/share/node-build/20.3.1 b/share/node-build/20.3.1 index 8ebaaa9a..64687421 100644 --- a/share/node-build/20.3.1 +++ b/share/node-build/20.3.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-aix-ppc64.tar.gz#74408b56e0a20601cd073e52f90ffcafeb8d63a4e8deb8583fc3f0d26b502081" binary darwin-arm64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-darwin-arm64.tar.gz#fabf0d5bde4e1c16b6b96c310115425508c3750cd2b1d2992fa03d52b0050cf1" binary darwin-x64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-darwin-x64.tar.gz#fd2be29c8e17ef1460a3c67b5fd36ead27159367a8958fae8fe8f3945465e0db" diff --git a/share/node-build/20.4.0 b/share/node-build/20.4.0 index cdc3c551..5bb74f5b 100644 --- a/share/node-build/20.4.0 +++ b/share/node-build/20.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-aix-ppc64.tar.gz#d41a6396dbb29dbeab84d8bc8916bf9ddb6564793f2ac907868023e0ed53bb5a" binary darwin-arm64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-darwin-arm64.tar.gz#34f51397b6aad957b1a8eb70d13da5baf357ead124c1e429a7e939aa61266c06" binary darwin-x64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-darwin-x64.tar.gz#fe765474a8651b85cee04a64e8473089196b922a36621f464a985a5f4891a054" diff --git a/share/node-build/20.5.0 b/share/node-build/20.5.0 index 3a456eea..f9c16ed0 100644 --- a/share/node-build/20.5.0 +++ b/share/node-build/20.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-aix-ppc64.tar.gz#daba6c69f21af9802ce571b33e75d79854dd2489475308058f38e65f17ac70a0" binary darwin-arm64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-darwin-arm64.tar.gz#56d29a7c620415164e6226804cc1eb8eb7b05ea3123b60c86393fabb551bd5ea" binary darwin-x64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-darwin-x64.tar.gz#3da7e64ac76309cbbb25524bae75cd335fed2795fcbd4f55e3162bcbcec18176" diff --git a/share/node-build/20.5.1 b/share/node-build/20.5.1 index 6236a91e..a7548ea8 100644 --- a/share/node-build/20.5.1 +++ b/share/node-build/20.5.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-aix-ppc64.tar.gz#4b8da521c27a38131ce50ca3dbba5dd72854877e3f0b13c9252f075cecd3f37a" binary darwin-arm64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-darwin-arm64.tar.gz#9cc794517788aee103dfcffa04d0b90ac33854b0d10eb11a26ba4be38403f731" binary darwin-x64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-darwin-x64.tar.gz#7a451dd07551a14ce64afdcc5bf8a71df12558edc19a2a9446e37cefe1e572fb" diff --git a/share/node-build/20.6.0 b/share/node-build/20.6.0 index c360ef7f..89d3ce89 100644 --- a/share/node-build/20.6.0 +++ b/share/node-build/20.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-aix-ppc64.tar.gz#43d20b2df127e320281c195eeb9ba770dd531e504af98ab67adf79dddd727149" binary darwin-arm64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-darwin-arm64.tar.gz#1ed71ea4ef5985f11b65c3961875ad91223c201f2042c00568a82fe7020a5cea" binary darwin-x64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-darwin-x64.tar.gz#16657f07cbe8c3d5589d70104ef51955c04abf249ea83b1109f924444ed828aa" diff --git a/share/node-build/20.6.1 b/share/node-build/20.6.1 index 36d131ad..c5c9c243 100644 --- a/share/node-build/20.6.1 +++ b/share/node-build/20.6.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-aix-ppc64.tar.gz#ea52b4feaf917e08cd2c729c1186585fcacef07c261a01310c91333b9e41d93c" binary darwin-arm64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-darwin-arm64.tar.gz#d8ba8018d45b294429b1a7646ccbeaeb2af3cdf45b5c91dabbd93e2a2035cb46" binary darwin-x64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-darwin-x64.tar.gz#365ec544c6596f194afff9a613554abfc68d4a2274181b7651386d9a11cf5862" diff --git a/share/node-build/20.7.0 b/share/node-build/20.7.0 index e3c15083..3a99daea 100644 --- a/share/node-build/20.7.0 +++ b/share/node-build/20.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-aix-ppc64.tar.gz#55851cc966ec46863c4089292203982b60db9d38ca5444fc7bde65ae0c6519f7" binary darwin-arm64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-darwin-arm64.tar.gz#08aa09792f30a86e8904e334ba6d348ad73e926b5e441ed9abcdcbea651dc926" binary darwin-x64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-darwin-x64.tar.gz#ceeba829f44e7573949f2ce2ad5def27f1d6daa55f2860bea82964851fae01bc" diff --git a/share/node-build/20.8.0 b/share/node-build/20.8.0 index e8bd667c..fabd60ae 100644 --- a/share/node-build/20.8.0 +++ b/share/node-build/20.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-aix-ppc64.tar.gz#f8f5888d82c428136fd3a9b1951ebc06b759533eda5abf94a5676904417d7dd2" binary darwin-arm64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-darwin-arm64.tar.gz#cbcb7fdbcd9341662256df5e4488a0045242f87382879242093e0f0699511abc" binary darwin-x64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-darwin-x64.tar.gz#a6f6b573ea656c149956f69f35e04ebb242b945d59972bea2e96a944bbf50ad1" diff --git a/share/node-build/20.8.1 b/share/node-build/20.8.1 index 15d66b5f..0fa99ef9 100644 --- a/share/node-build/20.8.1 +++ b/share/node-build/20.8.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-aix-ppc64.tar.gz#eea26c68c1f4799fc3ac3f2da9bfd4038b987d51d19d9c4ba8b145b3eee53c7d" binary darwin-arm64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-darwin-arm64.tar.gz#5451f3651c89cd8f224e74961c84e68f4c8d63fe288431a3223b0465cc8b961e" binary darwin-x64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-darwin-x64.tar.gz#92b00b357c311eb45dd86516b032d80c63894aa069821c3ae3c8b3bbd00fdb9a" diff --git a/share/node-build/20.9.0 b/share/node-build/20.9.0 index c93a2aa4..5dc26ed8 100644 --- a/share/node-build/20.9.0 +++ b/share/node-build/20.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-aix-ppc64.tar.gz#fc802a4a01cb0e32ce2cb04b3f47f28dc68c9872a13641a101a2f4a9854a546c" binary darwin-arm64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-darwin-arm64.tar.gz#31d2d46ae8d8a3982f54e2ff1e60c2e4a8e80bf78a3e8b46dcaac95ac5d7ce6a" binary darwin-x64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-darwin-x64.tar.gz#fc5b73f2a78c17bbe926cdb1447d652f9f094c79582f1be6471b4b38a2e1ccc8" diff --git a/share/node-build/20.x-dev b/share/node-build/20.x-dev index 3ae27be4..9220b926 100644 --- a/share/node-build/20.x-dev +++ b/share/node-build/20.x-dev @@ -1 +1,6 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + install_git "20.x-dev" "https://github.com/nodejs/node.git" "v20.x-staging" standard diff --git a/share/node-build/20.x-next b/share/node-build/20.x-next index fe2ac6cf..5b98be2d 100644 --- a/share/node-build/20.x-next +++ b/share/node-build/20.x-next @@ -1 +1,6 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + install_git "20.x-next" "https://github.com/nodejs/node.git" "v20.x" standard From a0aa62099b0d909d886765caf44378b405a54e43 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 25 Oct 2024 01:46:53 +0000 Subject: [PATCH 013/156] 23.1.0 Created with `npm run submit-definitions`. --- share/node-build/23.1.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.1.0 diff --git a/share/node-build/23.1.0 b/share/node-build/23.1.0 new file mode 100644 index 00000000..c5cb30ad --- /dev/null +++ b/share/node-build/23.1.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-aix-ppc64.tar.gz#e153fef6a3e71d92b2314d2f56c4a9ca0699e8614493c246cf6be6a09f6197b1" +binary darwin-arm64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-darwin-arm64.tar.gz#414d4b68299be0cbccfabfac59e53d0726151320e9ff71457ab0bb507fc0592d" +binary darwin-x64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-darwin-x64.tar.gz#cb84bd83064ff75f63dd95f1a53b6f7f2d2d36c67e03e9e9c87cfa2b977511b6" +binary linux-arm64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-linux-arm64.tar.gz#21e20e961eb2f6ab3fcc24421d3975d1714b6a4525c8ecd4f3dbbee3938a95cc" +binary linux-armv7l "https://nodejs.org/dist/v23.1.0/node-v23.1.0-linux-armv7l.tar.gz#960287c96b4a13a7c2ba7eb71686550d1281aae0caf5d80afbd76f0c72044ae3" +binary linux-ppc64le "https://nodejs.org/dist/v23.1.0/node-v23.1.0-linux-ppc64le.tar.gz#51911fe95abce0d3866f436b3ba553252de1acf264369f3bcdd9aad4aad7454d" +binary linux-s390x "https://nodejs.org/dist/v23.1.0/node-v23.1.0-linux-s390x.tar.gz#b38024a98852e16476351ce0258b0cf2a35e408e9cf50c2cfa2b361687bb16f1" +binary linux-x64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-linux-x64.tar.gz#1c436b2ac33a4fef7cf08c08b8a33362325c0c8ac8d05d4054a79628d5d0b5ae" + +install_package "node-v23.1.0" "https://nodejs.org/dist/v23.1.0/node-v23.1.0.tar.gz#4ccf155c703d53caf4e56624004782f106fce2b6935496b3ff29c6da4d6b6674" From f1d57aae4b7d9bd00b70da3453c24ad2aaef9b3b Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Fri, 25 Oct 2024 01:46:54 +0000 Subject: [PATCH 014/156] [create-pull-request] automated change --- share/node-build/20.0.0 | 5 +++++ share/node-build/20.1.0 | 5 +++++ share/node-build/20.10.0 | 5 +++++ share/node-build/20.11.0 | 5 +++++ share/node-build/20.11.1 | 5 +++++ share/node-build/20.12.0 | 5 +++++ share/node-build/20.12.1 | 5 +++++ share/node-build/20.12.2 | 5 +++++ share/node-build/20.13.0 | 5 +++++ share/node-build/20.13.1 | 5 +++++ share/node-build/20.14.0 | 5 +++++ share/node-build/20.15.0 | 5 +++++ share/node-build/20.15.1 | 5 +++++ share/node-build/20.16.0 | 5 +++++ share/node-build/20.17.0 | 5 +++++ share/node-build/20.18.0 | 5 +++++ share/node-build/20.2.0 | 5 +++++ share/node-build/20.3.0 | 5 +++++ share/node-build/20.3.1 | 5 +++++ share/node-build/20.4.0 | 5 +++++ share/node-build/20.5.0 | 5 +++++ share/node-build/20.5.1 | 5 +++++ share/node-build/20.6.0 | 5 +++++ share/node-build/20.6.1 | 5 +++++ share/node-build/20.7.0 | 5 +++++ share/node-build/20.8.0 | 5 +++++ share/node-build/20.8.1 | 5 +++++ share/node-build/20.9.0 | 5 +++++ share/node-build/20.x-dev | 5 +++++ share/node-build/20.x-next | 5 +++++ 30 files changed, 150 insertions(+) diff --git a/share/node-build/20.0.0 b/share/node-build/20.0.0 index bd7f9994..7b27f0b8 100644 --- a/share/node-build/20.0.0 +++ b/share/node-build/20.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-aix-ppc64.tar.gz#5fdc8901c70116d29ed462e234d11485521027dc554962c2d47fe367b61409ed" binary darwin-arm64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-darwin-arm64.tar.gz#ee27eea6694a5d8c834b11a12fb85a5dae01a91178be12920a6da12d8c299c43" binary darwin-x64 "https://nodejs.org/dist/v20.0.0/node-v20.0.0-darwin-x64.tar.gz#a26019f8dc6f0b261b1eebabeedb00f478460c36950a99b5c7e161af005e400e" diff --git a/share/node-build/20.1.0 b/share/node-build/20.1.0 index 4f628017..f81230a9 100644 --- a/share/node-build/20.1.0 +++ b/share/node-build/20.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-aix-ppc64.tar.gz#0974cc4ae791faa7b72fbb828d49cf70d8d76fa4aadfcce9582e6119c00a620c" binary darwin-arm64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-darwin-arm64.tar.gz#fd3bca029883cb84d4f58e7adb1a2c4fc4e616a8297fb08cb5c34465b7c4071a" binary darwin-x64 "https://nodejs.org/dist/v20.1.0/node-v20.1.0-darwin-x64.tar.gz#770dd45c15cfafa3f945fce173aa84dfed94931923242700718edf6883b74fff" diff --git a/share/node-build/20.10.0 b/share/node-build/20.10.0 index 055e6536..4243aa83 100644 --- a/share/node-build/20.10.0 +++ b/share/node-build/20.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-aix-ppc64.tar.gz#97642ac79c8ec4778c20412256fdc9cd1c3ba782d67134fa43e17abdfe2dd3eb" binary darwin-arm64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-darwin-arm64.tar.gz#68b93099451d77aac116cf8fce179cabcf53fec079508dc6b39d3a086fb461a8" binary darwin-x64 "https://nodejs.org/dist/v20.10.0/node-v20.10.0-darwin-x64.tar.gz#5ff5e8abd3eea6e5f507eb6677554f5b2188eedef654096aa4168a9941e91a32" diff --git a/share/node-build/20.11.0 b/share/node-build/20.11.0 index 732ddccf..20187c2d 100644 --- a/share/node-build/20.11.0 +++ b/share/node-build/20.11.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-aix-ppc64.tar.gz#f76a47616ceb47b9766cb7182ec6b53100192349de6a8aebb11f3abce045748f" binary darwin-arm64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-darwin-arm64.tar.gz#94e443d007e2882f8e5aecc85d978f7591520dc3b642adc7583b3cb0b3fc37d7" binary darwin-x64 "https://nodejs.org/dist/v20.11.0/node-v20.11.0-darwin-x64.tar.gz#c0ba02c905814258bd99a362027f8d4d2cc738218a9cf1dce2620e8735e3a80e" diff --git a/share/node-build/20.11.1 b/share/node-build/20.11.1 index 1d5e8bb3..97bb9471 100644 --- a/share/node-build/20.11.1 +++ b/share/node-build/20.11.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-aix-ppc64.tar.gz#43a881788549e1b3425eb5f2b92608f438f146e08213de09c5bd5ff841cae7ae" binary darwin-arm64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-darwin-arm64.tar.gz#e0065c61f340e85106a99c4b54746c5cee09d59b08c5712f67f99e92aa44995d" binary darwin-x64 "https://nodejs.org/dist/v20.11.1/node-v20.11.1-darwin-x64.tar.gz#c52e7fb0709dbe63a4cbe08ac8af3479188692937a7bd8e776e0eedfa33bb848" diff --git a/share/node-build/20.12.0 b/share/node-build/20.12.0 index adf231e0..9e8708ff 100644 --- a/share/node-build/20.12.0 +++ b/share/node-build/20.12.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-aix-ppc64.tar.gz#8d2ce67d19e2eafe7581f5865382f19ce7f6e66c1d19ed451b7290dcb7b74bd9" binary darwin-arm64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-darwin-arm64.tar.gz#422a74b7ede14b697a8c2ca887ea161fe79898a35f163fdfb98435c5ab25027b" binary darwin-x64 "https://nodejs.org/dist/v20.12.0/node-v20.12.0-darwin-x64.tar.gz#5c7d71a1c1cf613037432e0b6c3d913d96604d9293b3397ec70b344730c81daf" diff --git a/share/node-build/20.12.1 b/share/node-build/20.12.1 index 3a98e7ab..b37e275e 100644 --- a/share/node-build/20.12.1 +++ b/share/node-build/20.12.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-aix-ppc64.tar.gz#2a75c3cc9ed139b2ee82be709a04c171ed2d96d962082d4ab5fbf7f486846f4f" binary darwin-arm64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-darwin-arm64.tar.gz#65df8cb0724e3a58c7757b75a70cc1057e1f67ffc5e852bfe6241de0b37c70a0" binary darwin-x64 "https://nodejs.org/dist/v20.12.1/node-v20.12.1-darwin-x64.tar.gz#f5dc3c71c87c58c9b019d9f85302db3a6a6c47167c5a0480b697f153d02ac316" diff --git a/share/node-build/20.12.2 b/share/node-build/20.12.2 index 8d5c8f58..91a5dacb 100644 --- a/share/node-build/20.12.2 +++ b/share/node-build/20.12.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-aix-ppc64.tar.gz#b1e8241fb06f3f27a3336b4beb193f1cb92f05f1aaaa904e5c62df1cd4f599f5" binary darwin-arm64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-darwin-arm64.tar.gz#98eb624b52efec2530079e1d11296ec0ac20771b94b087d21649250339cf5332" binary darwin-x64 "https://nodejs.org/dist/v20.12.2/node-v20.12.2-darwin-x64.tar.gz#cd5e9a80a38ccffc036a87b232a5402339c7bf8fa9a494ae0731a1a671687718" diff --git a/share/node-build/20.13.0 b/share/node-build/20.13.0 index 35dbe403..024b622b 100644 --- a/share/node-build/20.13.0 +++ b/share/node-build/20.13.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-aix-ppc64.tar.gz#d75b994a79a60fb5ae06cc1e46d9e5cae3baed4a02bebd63f699391dd663e7c3" binary darwin-arm64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-darwin-arm64.tar.gz#ef850bf9045d756c7a703c30fc09d7d9de9c7e7f254c6f4c02a1531381a806fd" binary darwin-x64 "https://nodejs.org/dist/v20.13.0/node-v20.13.0-darwin-x64.tar.gz#417fb4a3a3a70547d5f6d05e068e6d6ec226a6d12c94d91661641e4e11eaeb63" diff --git a/share/node-build/20.13.1 b/share/node-build/20.13.1 index 14b870a1..9fca2b08 100644 --- a/share/node-build/20.13.1 +++ b/share/node-build/20.13.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-aix-ppc64.tar.gz#941d645cc804274934a06813c87b0b7cee7a6c3f5a3c82e62e1f6f8dc7f0030c" binary darwin-arm64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-darwin-arm64.tar.gz#c30fe595f59dcd2c5158da6bf8bc251ffc85ca37304afa89db150fb3c62c4507" binary darwin-x64 "https://nodejs.org/dist/v20.13.1/node-v20.13.1-darwin-x64.tar.gz#80bde95dc976b84db5ca566738c07305087ae578f5f3b05191e0e6ff54aaeaf2" diff --git a/share/node-build/20.14.0 b/share/node-build/20.14.0 index e39674cd..78227c19 100644 --- a/share/node-build/20.14.0 +++ b/share/node-build/20.14.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-aix-ppc64.tar.gz#06ac9b1f35de7b05dc0aea58b99804edf608ee500b2e9b303d1a6044eb3eeab2" binary darwin-arm64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-darwin-arm64.tar.gz#d2148d79e9ff04d2982d00faeae942ceba488ca327a91065e528235167b9e9d6" binary darwin-x64 "https://nodejs.org/dist/v20.14.0/node-v20.14.0-darwin-x64.tar.gz#1dcc18a199cb5f46d43ed1c3c61b87a247d1a1a11dd6b32a36a9c46ac1088f86" diff --git a/share/node-build/20.15.0 b/share/node-build/20.15.0 index bafabca7..e29a49d0 100644 --- a/share/node-build/20.15.0 +++ b/share/node-build/20.15.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-aix-ppc64.tar.gz#6b6e7119a5b539bfcf3b37872b37771750fd7e8bd255eaab1285da749d71775b" binary darwin-arm64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-darwin-arm64.tar.gz#2646c338d2c5ecabba4f745fc315d6fdfbb7e01b5badecc154ad27dda00325fc" binary darwin-x64 "https://nodejs.org/dist/v20.15.0/node-v20.15.0-darwin-x64.tar.gz#95ca98b974d06f84095dd0a977dea5fde79e909d103715fb782856ded12d2146" diff --git a/share/node-build/20.15.1 b/share/node-build/20.15.1 index 86b5118f..329988b7 100644 --- a/share/node-build/20.15.1 +++ b/share/node-build/20.15.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-aix-ppc64.tar.gz#dd24c8b6fdaf46361e130c894fd7282266f944b54196636e6df583fdec1e836f" binary darwin-arm64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-darwin-arm64.tar.gz#4743bc042f90ba5d9edf09403207290a9cdd2f6061bdccf7caaa0bbfd49f343e" binary darwin-x64 "https://nodejs.org/dist/v20.15.1/node-v20.15.1-darwin-x64.tar.gz#f5379772ffae1404cfd1fcc8cf0c6c5971306b8fb2090d348019047306de39dc" diff --git a/share/node-build/20.16.0 b/share/node-build/20.16.0 index 8531b945..9ba43d3d 100644 --- a/share/node-build/20.16.0 +++ b/share/node-build/20.16.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-aix-ppc64.tar.gz#5eb1b7ea405c86be0a21ec3850997c89df238d6e4659a0b990aa793a8cbfd9cf" binary darwin-arm64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-darwin-arm64.tar.gz#fc7355e778b181575153b7dea4879e8021776eeb376c43c50f65893d2ea70aa3" binary darwin-x64 "https://nodejs.org/dist/v20.16.0/node-v20.16.0-darwin-x64.tar.gz#e18942cd706e4d69a4845ddacee2f1c17a72e853a229e3d2623d2edeb7efde72" diff --git a/share/node-build/20.17.0 b/share/node-build/20.17.0 index f1f5d6d1..d770c017 100644 --- a/share/node-build/20.17.0 +++ b/share/node-build/20.17.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-aix-ppc64.tar.gz#44e9bddedf7b6b21917174a7707d737cfa0ef61f9ecb06baf6dc1a208d41d54b" binary darwin-arm64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-darwin-arm64.tar.gz#476324108c4361935465631eec47df1c943ba2c87bc050853385b1d1c71f0b1f" binary darwin-x64 "https://nodejs.org/dist/v20.17.0/node-v20.17.0-darwin-x64.tar.gz#eefe9447dbb0b5b233d42730989c6c364487de4043145db2f63da94e9623c380" diff --git a/share/node-build/20.18.0 b/share/node-build/20.18.0 index fc1ffb0a..d1e1c1c3 100644 --- a/share/node-build/20.18.0 +++ b/share/node-build/20.18.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-aix-ppc64.tar.gz#612c1cbb613f7af05f9de71767c3ba791b1972abe07fe37dbc721e837f2df9bc" binary darwin-arm64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-arm64.tar.gz#92e180624259d082562592bb12548037c6a417069be29e452ec5d158d657b4be" binary darwin-x64 "https://nodejs.org/dist/v20.18.0/node-v20.18.0-darwin-x64.tar.gz#c02aa7560612a4e2cc359fd89fae7aedde370c06db621f2040a4a9f830a125dc" diff --git a/share/node-build/20.2.0 b/share/node-build/20.2.0 index 4ea6b3c2..c0bde5f6 100644 --- a/share/node-build/20.2.0 +++ b/share/node-build/20.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-aix-ppc64.tar.gz#40cd0361b75fb13b5cb6edf9113c48b0771dae961750622030c82dff2ac30911" binary darwin-arm64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-darwin-arm64.tar.gz#8dd23fb204b2c239239085761ccae232c5cdc129f633489598a8759248e5f063" binary darwin-x64 "https://nodejs.org/dist/v20.2.0/node-v20.2.0-darwin-x64.tar.gz#d92bc1e96b2458595f41f5e75749ad4d2b1dd8e96b5ebc34cf5a45ab21797cb3" diff --git a/share/node-build/20.3.0 b/share/node-build/20.3.0 index 5e1905f9..5684b290 100644 --- a/share/node-build/20.3.0 +++ b/share/node-build/20.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-aix-ppc64.tar.gz#45375449725aa845f605a77e6ff88886a2f73294183e82ea8d38e0c24722f853" binary darwin-arm64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-darwin-arm64.tar.gz#25d5db6192ebcb7013f4138c71a7c423d0da33f28149d28b3b6df7c00527dd40" binary darwin-x64 "https://nodejs.org/dist/v20.3.0/node-v20.3.0-darwin-x64.tar.gz#24293d0217f009cbf821e5f399dcf72c1df2cb27f70cb1f05fd07af2ee6ad2c2" diff --git a/share/node-build/20.3.1 b/share/node-build/20.3.1 index 8ebaaa9a..64687421 100644 --- a/share/node-build/20.3.1 +++ b/share/node-build/20.3.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-aix-ppc64.tar.gz#74408b56e0a20601cd073e52f90ffcafeb8d63a4e8deb8583fc3f0d26b502081" binary darwin-arm64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-darwin-arm64.tar.gz#fabf0d5bde4e1c16b6b96c310115425508c3750cd2b1d2992fa03d52b0050cf1" binary darwin-x64 "https://nodejs.org/dist/v20.3.1/node-v20.3.1-darwin-x64.tar.gz#fd2be29c8e17ef1460a3c67b5fd36ead27159367a8958fae8fe8f3945465e0db" diff --git a/share/node-build/20.4.0 b/share/node-build/20.4.0 index cdc3c551..5bb74f5b 100644 --- a/share/node-build/20.4.0 +++ b/share/node-build/20.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-aix-ppc64.tar.gz#d41a6396dbb29dbeab84d8bc8916bf9ddb6564793f2ac907868023e0ed53bb5a" binary darwin-arm64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-darwin-arm64.tar.gz#34f51397b6aad957b1a8eb70d13da5baf357ead124c1e429a7e939aa61266c06" binary darwin-x64 "https://nodejs.org/dist/v20.4.0/node-v20.4.0-darwin-x64.tar.gz#fe765474a8651b85cee04a64e8473089196b922a36621f464a985a5f4891a054" diff --git a/share/node-build/20.5.0 b/share/node-build/20.5.0 index 3a456eea..f9c16ed0 100644 --- a/share/node-build/20.5.0 +++ b/share/node-build/20.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-aix-ppc64.tar.gz#daba6c69f21af9802ce571b33e75d79854dd2489475308058f38e65f17ac70a0" binary darwin-arm64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-darwin-arm64.tar.gz#56d29a7c620415164e6226804cc1eb8eb7b05ea3123b60c86393fabb551bd5ea" binary darwin-x64 "https://nodejs.org/dist/v20.5.0/node-v20.5.0-darwin-x64.tar.gz#3da7e64ac76309cbbb25524bae75cd335fed2795fcbd4f55e3162bcbcec18176" diff --git a/share/node-build/20.5.1 b/share/node-build/20.5.1 index 6236a91e..a7548ea8 100644 --- a/share/node-build/20.5.1 +++ b/share/node-build/20.5.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-aix-ppc64.tar.gz#4b8da521c27a38131ce50ca3dbba5dd72854877e3f0b13c9252f075cecd3f37a" binary darwin-arm64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-darwin-arm64.tar.gz#9cc794517788aee103dfcffa04d0b90ac33854b0d10eb11a26ba4be38403f731" binary darwin-x64 "https://nodejs.org/dist/v20.5.1/node-v20.5.1-darwin-x64.tar.gz#7a451dd07551a14ce64afdcc5bf8a71df12558edc19a2a9446e37cefe1e572fb" diff --git a/share/node-build/20.6.0 b/share/node-build/20.6.0 index c360ef7f..89d3ce89 100644 --- a/share/node-build/20.6.0 +++ b/share/node-build/20.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-aix-ppc64.tar.gz#43d20b2df127e320281c195eeb9ba770dd531e504af98ab67adf79dddd727149" binary darwin-arm64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-darwin-arm64.tar.gz#1ed71ea4ef5985f11b65c3961875ad91223c201f2042c00568a82fe7020a5cea" binary darwin-x64 "https://nodejs.org/dist/v20.6.0/node-v20.6.0-darwin-x64.tar.gz#16657f07cbe8c3d5589d70104ef51955c04abf249ea83b1109f924444ed828aa" diff --git a/share/node-build/20.6.1 b/share/node-build/20.6.1 index 36d131ad..c5c9c243 100644 --- a/share/node-build/20.6.1 +++ b/share/node-build/20.6.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-aix-ppc64.tar.gz#ea52b4feaf917e08cd2c729c1186585fcacef07c261a01310c91333b9e41d93c" binary darwin-arm64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-darwin-arm64.tar.gz#d8ba8018d45b294429b1a7646ccbeaeb2af3cdf45b5c91dabbd93e2a2035cb46" binary darwin-x64 "https://nodejs.org/dist/v20.6.1/node-v20.6.1-darwin-x64.tar.gz#365ec544c6596f194afff9a613554abfc68d4a2274181b7651386d9a11cf5862" diff --git a/share/node-build/20.7.0 b/share/node-build/20.7.0 index e3c15083..3a99daea 100644 --- a/share/node-build/20.7.0 +++ b/share/node-build/20.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-aix-ppc64.tar.gz#55851cc966ec46863c4089292203982b60db9d38ca5444fc7bde65ae0c6519f7" binary darwin-arm64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-darwin-arm64.tar.gz#08aa09792f30a86e8904e334ba6d348ad73e926b5e441ed9abcdcbea651dc926" binary darwin-x64 "https://nodejs.org/dist/v20.7.0/node-v20.7.0-darwin-x64.tar.gz#ceeba829f44e7573949f2ce2ad5def27f1d6daa55f2860bea82964851fae01bc" diff --git a/share/node-build/20.8.0 b/share/node-build/20.8.0 index e8bd667c..fabd60ae 100644 --- a/share/node-build/20.8.0 +++ b/share/node-build/20.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-aix-ppc64.tar.gz#f8f5888d82c428136fd3a9b1951ebc06b759533eda5abf94a5676904417d7dd2" binary darwin-arm64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-darwin-arm64.tar.gz#cbcb7fdbcd9341662256df5e4488a0045242f87382879242093e0f0699511abc" binary darwin-x64 "https://nodejs.org/dist/v20.8.0/node-v20.8.0-darwin-x64.tar.gz#a6f6b573ea656c149956f69f35e04ebb242b945d59972bea2e96a944bbf50ad1" diff --git a/share/node-build/20.8.1 b/share/node-build/20.8.1 index 15d66b5f..0fa99ef9 100644 --- a/share/node-build/20.8.1 +++ b/share/node-build/20.8.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-aix-ppc64.tar.gz#eea26c68c1f4799fc3ac3f2da9bfd4038b987d51d19d9c4ba8b145b3eee53c7d" binary darwin-arm64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-darwin-arm64.tar.gz#5451f3651c89cd8f224e74961c84e68f4c8d63fe288431a3223b0465cc8b961e" binary darwin-x64 "https://nodejs.org/dist/v20.8.1/node-v20.8.1-darwin-x64.tar.gz#92b00b357c311eb45dd86516b032d80c63894aa069821c3ae3c8b3bbd00fdb9a" diff --git a/share/node-build/20.9.0 b/share/node-build/20.9.0 index c93a2aa4..5dc26ed8 100644 --- a/share/node-build/20.9.0 +++ b/share/node-build/20.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-aix-ppc64.tar.gz#fc802a4a01cb0e32ce2cb04b3f47f28dc68c9872a13641a101a2f4a9854a546c" binary darwin-arm64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-darwin-arm64.tar.gz#31d2d46ae8d8a3982f54e2ff1e60c2e4a8e80bf78a3e8b46dcaac95ac5d7ce6a" binary darwin-x64 "https://nodejs.org/dist/v20.9.0/node-v20.9.0-darwin-x64.tar.gz#fc5b73f2a78c17bbe926cdb1447d652f9f094c79582f1be6471b4b38a2e1ccc8" diff --git a/share/node-build/20.x-dev b/share/node-build/20.x-dev index 3ae27be4..9220b926 100644 --- a/share/node-build/20.x-dev +++ b/share/node-build/20.x-dev @@ -1 +1,6 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + install_git "20.x-dev" "https://github.com/nodejs/node.git" "v20.x-staging" standard diff --git a/share/node-build/20.x-next b/share/node-build/20.x-next index fe2ac6cf..5b98be2d 100644 --- a/share/node-build/20.x-next +++ b/share/node-build/20.x-next @@ -1 +1,6 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + install_git "20.x-next" "https://github.com/nodejs/node.git" "v20.x" standard From 2af56d414cebb4d4a2fbde00563219b940221cd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:18:58 +0000 Subject: [PATCH 015/156] Bump actions/checkout from 4.1.7 to 4.2.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/692973e3d937129bcbf40652eb9f2f61becf3332...11bd71901bbe5b1630ceea73d27597364c9af683) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/definitions.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- .github/workflows/version.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 0d1ab82d..b070683e 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -9,7 +9,7 @@ jobs: scrape: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run scrape-definitions - run: npm run lint:lts -- --fix @@ -34,7 +34,7 @@ jobs: lts: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run lint:lts -- --fix - if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0171332c..391067d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: permissions: {contents: read, security-events: write} runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - uses: redhat-plumbers-in-action/differential-shellcheck@cc6721c45a8800cc666de45493545a07a638d121 # v5.4.0 with: @@ -32,7 +32,7 @@ jobs: lts: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run lint:lts @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: # FIXME workaround https://github.com/actions/checkout/issues/910 - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: { fetch-depth: 0 } - run: npm ci - if: github.event_name == 'pull_request' diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 44861c8c..586b96ac 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -14,7 +14,7 @@ jobs: bump: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 token: ${{ secrets.BOT_TOKEN }} From fcf782e415d6521009be3960ca8830aefb32f2e6 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 29 Oct 2024 10:10:47 +0000 Subject: [PATCH 016/156] 5.3.15 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 4e502b47..71a649b7 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.14 +NODE_BUILD_VERSION=5.3.15 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 87ecb742..46e0822c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.14", + "version": "5.3.15", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.14", + "version": "5.3.15", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 691d5651..857e985a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.14", + "version": "5.3.15", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 1b7b97909ae2919fd9647c3c7fe9adc7a0271708 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 29 Oct 2024 18:30:57 +0000 Subject: [PATCH 017/156] 22.11.0 Created with `npm run submit-definitions`. --- share/node-build/22.11.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.11.0 diff --git a/share/node-build/22.11.0 b/share/node-build/22.11.0 new file mode 100644 index 00000000..a9614343 --- /dev/null +++ b/share/node-build/22.11.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.11.0/node-v22.11.0-aix-ppc64.tar.gz#1bbf7e632ea55eabf920e8e27bb3e73ca4923eca78a300e5767635e9b2c0c603" +binary darwin-arm64 "https://nodejs.org/dist/v22.11.0/node-v22.11.0-darwin-arm64.tar.gz#2e89afe6f4e3aa6c7e21c560d8a0453d84807e97850bbb819b998531a22bdfde" +binary darwin-x64 "https://nodejs.org/dist/v22.11.0/node-v22.11.0-darwin-x64.tar.gz#668d30b9512137b5f5baeef6c1bb4c46efff9a761ba990a034fb6b28b9da2465" +binary linux-arm64 "https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-arm64.tar.gz#27453f7a0dd6b9e6738f1f6ea6a09b102ec7aa484de1e39d6a1c3608ad47aa6a" +binary linux-armv7l "https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-armv7l.tar.gz#f85ced095b17e2535859fd2a5641370c3fca12dd72147f93d2696e2909fe1e9d" +binary linux-ppc64le "https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-ppc64le.tar.gz#0532965a717d3996302a111703c007dac2763e01795730d488dadbc2fcfac2fa" +binary linux-s390x "https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-s390x.tar.gz#64f691400ffe3a84be930e0cb03607d0b95bef122a679f7893d8e2972e90c521" +binary linux-x64 "https://nodejs.org/dist/v22.11.0/node-v22.11.0-linux-x64.tar.gz#4f862bab52039835efbe613b532238b6e4dde98d139a34e6923193e073438b13" + +install_package "node-v22.11.0" "https://nodejs.org/dist/v22.11.0/node-v22.11.0.tar.gz#24e5130fa7bc1eaab218a0c9cb05e03168fa381bb9e3babddc6a11f655799222" From 9b1f4d7862cf5a7857f8d9ac7f2ab970a6cd1718 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 31 Oct 2024 10:10:23 +0000 Subject: [PATCH 018/156] 5.3.16 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 71a649b7..017b84b6 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.15 +NODE_BUILD_VERSION=5.3.16 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 46e0822c..d16834a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.15", + "version": "5.3.16", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.15", + "version": "5.3.16", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 857e985a..af8d1404 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.15", + "version": "5.3.16", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From be24beb245c9e116a24616ab6692c7c7eebc2a07 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 12 Nov 2024 01:43:05 +0000 Subject: [PATCH 019/156] 23.2.0 Created with `npm run submit-definitions`. --- share/node-build/23.2.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.2.0 diff --git a/share/node-build/23.2.0 b/share/node-build/23.2.0 new file mode 100644 index 00000000..6362be02 --- /dev/null +++ b/share/node-build/23.2.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-aix-ppc64.tar.gz#43e0c6a6ef0c123e33a9af2f055516c4170a58e26b473fff273c8bdbf0518c6b" +binary darwin-arm64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-darwin-arm64.tar.gz#0a4c1379f81b02cb724b7f69b7e2fdf8a4765d98710ae8e05c4ee2da85a54f94" +binary darwin-x64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-darwin-x64.tar.gz#5d5c8150b5b8dd31930f029535ccee06b259c2d75db8c78f7f33a7fa8b8152a7" +binary linux-arm64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-linux-arm64.tar.gz#987045f6b23dc9c6514ecae89bc5d116851992812698558d9641fd9bc34645ff" +binary linux-armv7l "https://nodejs.org/dist/v23.2.0/node-v23.2.0-linux-armv7l.tar.gz#9fb13ca5c47d30cfc67d51d6d38315f31c63a11653d0b08418ba61e09549024f" +binary linux-ppc64le "https://nodejs.org/dist/v23.2.0/node-v23.2.0-linux-ppc64le.tar.gz#eafde03bccadf18e848f327a1d4766f935e3c1df05c5bb88fd20a3574d68ea1c" +binary linux-s390x "https://nodejs.org/dist/v23.2.0/node-v23.2.0-linux-s390x.tar.gz#d9f602acfacdfad261062a1e5fac90aa29e82da0221cb809af24041e5d7e3b8c" +binary linux-x64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-linux-x64.tar.gz#b88f5d5b6f9a17818a85b7afbf325700434fc8755cec105c7709c6fd363b17ca" + +install_package "node-v23.2.0" "https://nodejs.org/dist/v23.2.0/node-v23.2.0.tar.gz#79900219d5f835cbfdc9092a9d3d60c5bf2f9f94eb8e19dccd327a6d15f560af" From 5d66a8102fd0676b10bdabf86318ffec83755021 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:09:55 +0000 Subject: [PATCH 020/156] 5.3.17 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 017b84b6..776b8a55 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.16 +NODE_BUILD_VERSION=5.3.17 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index d16834a1..92b8a576 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.16", + "version": "5.3.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.16", + "version": "5.3.17", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index af8d1404..4e73684f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.16", + "version": "5.3.17", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From fbab6582369bfc4dd60089cb53d5d2cb1e6b56cc Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 13 Nov 2024 01:45:20 +0000 Subject: [PATCH 021/156] 18.20.5 Created with `npm run submit-definitions`. --- share/node-build/18.20.5 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/18.20.5 diff --git a/share/node-build/18.20.5 b/share/node-build/18.20.5 new file mode 100644 index 00000000..35996f1b --- /dev/null +++ b/share/node-build/18.20.5 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v18.20.5/node-v18.20.5-aix-ppc64.tar.gz#b01bc9ce5911152d2bedafb47b7dab868e2102907304162f54ebc93573f27b06" +binary darwin-arm64 "https://nodejs.org/dist/v18.20.5/node-v18.20.5-darwin-arm64.tar.gz#bdfeaf59dbf29aec08c0c66130edf0a8a17014b4f2997727641dfd0b58b51f48" +binary darwin-x64 "https://nodejs.org/dist/v18.20.5/node-v18.20.5-darwin-x64.tar.gz#dff01068da7d3fe7b515f72a3903dca96a34dc377f6f426b6a813901274b6441" +binary linux-arm64 "https://nodejs.org/dist/v18.20.5/node-v18.20.5-linux-arm64.tar.gz#759cfb9f76a1019daf65db9c2e5e43074ee660ec9b9ff3f31dcc4a88cca671e9" +binary linux-armv7l "https://nodejs.org/dist/v18.20.5/node-v18.20.5-linux-armv7l.tar.gz#8d358452e4fcf34b0dcf51a441ec8cf192f8ff83bdd4488708dcab18e8007621" +binary linux-ppc64le "https://nodejs.org/dist/v18.20.5/node-v18.20.5-linux-ppc64le.tar.gz#1f916c66f96d9265394e3145bfa92be918abbb45ac9711a441cce99d76618f4a" +binary linux-s390x "https://nodejs.org/dist/v18.20.5/node-v18.20.5-linux-s390x.tar.gz#e9ca8239a1256ff66ecd156bf42e88eaad7a1276c421c1c5fd0d6936dcc59300" +binary linux-x64 "https://nodejs.org/dist/v18.20.5/node-v18.20.5-linux-x64.tar.gz#e7b80346bb586790ac6b29aa25c96716fcdf6039a6929c2ed506cec09cebc3c0" + +install_package "node-v18.20.5" "https://nodejs.org/dist/v18.20.5/node-v18.20.5.tar.gz#938735364745b7d4cd650b9325df6f2d2ec4240c56f9318e38638af910a820c6" From 193c501a26816fb2e44b64952c0467bc6813a679 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:10:01 +0000 Subject: [PATCH 022/156] 5.3.18 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 776b8a55..f9e1e0b5 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.17 +NODE_BUILD_VERSION=5.3.18 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 92b8a576..dcc5c6fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.17", + "version": "5.3.18", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.17", + "version": "5.3.18", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 4e73684f..4d2f70b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.17", + "version": "5.3.18", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From f6865d558d2017e8d9f206a21fcf19109d2135ab Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 21 Nov 2024 01:50:17 +0000 Subject: [PATCH 023/156] 20.18.1 Created with `npm run submit-definitions`. --- share/node-build/20.18.1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.18.1 diff --git a/share/node-build/20.18.1 b/share/node-build/20.18.1 new file mode 100644 index 00000000..8c6db41f --- /dev/null +++ b/share/node-build/20.18.1 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.18.1/node-v20.18.1-aix-ppc64.tar.gz#dc148e207d1a6456af05bf55d2c5af0185a2c79139fa64c8278ca257dc4894d5" +binary darwin-arm64 "https://nodejs.org/dist/v20.18.1/node-v20.18.1-darwin-arm64.tar.gz#9e92ce1032455a9cc419fe71e908b27ae477799371b45a0844eedb02279922a4" +binary darwin-x64 "https://nodejs.org/dist/v20.18.1/node-v20.18.1-darwin-x64.tar.gz#c5497dd17c8875b53712edaf99052f961013cedc203964583fc0cfc0aaf93581" +binary linux-arm64 "https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-arm64.tar.gz#73cd297378572e0bc9dfc187c5ec8cca8d43aee6a596c10ebea1ed5f9ec682b6" +binary linux-armv7l "https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-armv7l.tar.gz#7b7c3315818e9fe57512737c2380fada14d8717ce88945fb6f7b8baadd3cfb92" +binary linux-ppc64le "https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-ppc64le.tar.gz#703fc140e330002020bf54cffcfbbf8a957413b23fe6940a9f5a147e5103e960" +binary linux-s390x "https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-s390x.tar.gz#15724744d75fa10f5856b17d5293d141175a2832b7c17bf12df669d4b22b12bc" +binary linux-x64 "https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-x64.tar.gz#259e5a8bf2e15ecece65bd2a47153262eda71c0b2c9700d5e703ce4951572784" + +install_package "node-v20.18.1" "https://nodejs.org/dist/v20.18.1/node-v20.18.1.tar.gz#5bad8ced873eef3b32e7daee703156bce9224920ac6044f4232f5393df0628b8" From d48543df749a186004ab7d51e5045e36ddf4dba0 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 21 Nov 2024 01:50:17 +0000 Subject: [PATCH 024/156] 23.3.0 Created with `npm run submit-definitions`. --- share/node-build/23.3.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.3.0 diff --git a/share/node-build/23.3.0 b/share/node-build/23.3.0 new file mode 100644 index 00000000..9778aa97 --- /dev/null +++ b/share/node-build/23.3.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-aix-ppc64.tar.gz#7573dd593cc56600ef573be8c5020ea82847ff26ad0fe94c0fa08470ba2e95ea" +binary darwin-arm64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-darwin-arm64.tar.gz#472b9109dd9987ea49916f12b01ed2f09f1c4bf4befcf5695c1b9fd9cff3d177" +binary darwin-x64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-darwin-x64.tar.gz#d1898f7901277968b78066f6b512cbc3bd7f2406950377826f9d8e02d4e24fe6" +binary linux-arm64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-linux-arm64.tar.gz#af48591482236007d21665aa2bd3d145f490aa953e85c1ca7a7c7bf04b711341" +binary linux-armv7l "https://nodejs.org/dist/v23.3.0/node-v23.3.0-linux-armv7l.tar.gz#95771bae444dcf2e7736c84ec328750267315f8118fdd49bc22eecdd2fe04998" +binary linux-ppc64le "https://nodejs.org/dist/v23.3.0/node-v23.3.0-linux-ppc64le.tar.gz#0b1b243804d2e97ae5013161a14b861d8fcdd44586b51d16260665aab5134603" +binary linux-s390x "https://nodejs.org/dist/v23.3.0/node-v23.3.0-linux-s390x.tar.gz#3413be8e927c49b6836fdd10b0f89f16f811b4c3c9085cd1165ce3443f381353" +binary linux-x64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-linux-x64.tar.gz#a4ceaf6e41d76017ee56705badc5d492cf3d5feca607c7a7d3ae54f7db14913b" + +install_package "node-v23.3.0" "https://nodejs.org/dist/v23.3.0/node-v23.3.0.tar.gz#256b2282698cf9eb1124485a5fde9415e0d106a670476dd6dc23bc228d7c2df9" From a333ce041e990f55fb1e52ed6036e65f4b83de5e Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:10:39 +0000 Subject: [PATCH 025/156] 5.3.19 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index f9e1e0b5..8ae8f5a3 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.18 +NODE_BUILD_VERSION=5.3.19 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index dcc5c6fd..5bd9ab1e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.18", + "version": "5.3.19", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.18", + "version": "5.3.19", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 4d2f70b4..e28bc73c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.18", + "version": "5.3.19", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 28ae2c8e8ddf8d15b473e779e967b9e28ad18ddd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 14:42:13 +0000 Subject: [PATCH 026/156] Bump bats from 1.11.0 to 1.11.1 Bumps [bats](https://github.com/bats-core/bats-core) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/bats-core/bats-core/releases) - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/bats-core/bats-core/compare/v1.11.0...v1.11.1) --- updated-dependencies: - dependency-name: bats dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5bd9ab1e..c552aa47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,17 +8,12 @@ "name": "@nodenv/node-build", "version": "5.3.19", "license": "MIT", - "bin": { - "node-build": "bin/node-build", - "nodenv-install": "bin/nodenv-install", - "nodenv-uninstall": "bin/nodenv-uninstall" - }, "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", "bats": "^1.11.0", - "bats-assert": "jasonkarns/bats-assert-1", + "bats-assert": "github:jasonkarns/bats-assert-1", "bats-mock": "^1", - "bats-support": "jasonkarns/bats-support" + "bats-support": "github:jasonkarns/bats-support" } }, "node_modules/@nodenv/node-build-update-defs": { @@ -36,10 +31,11 @@ } }, "node_modules/bats": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/bats/-/bats-1.11.0.tgz", - "integrity": "sha512-qiKdnS4ID3bJ1MaEOKuZe12R4w+t+psJF0ICj+UdkiHBBoObPMHv8xmD3w6F4a5qwUyZUHS+413lxENBNy8xcQ==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/bats/-/bats-1.11.1.tgz", + "integrity": "sha512-Dh26FsiLog+wwQeTkboYo2xYj9rUaPEbibUobnYb3G3M9hva/Kby00wrAN9VB9qqGVhl/pYjjt/LVBWwjXlD2A==", "dev": true, + "license": "MIT", "bin": { "bats": "bin/bats" } From a3df5210ccfb01cda8e5f5865633fcc5c0091964 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 4 Dec 2024 01:55:54 +0000 Subject: [PATCH 027/156] 22.12.0 Created with `npm run submit-definitions`. --- share/node-build/22.12.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.12.0 diff --git a/share/node-build/22.12.0 b/share/node-build/22.12.0 new file mode 100644 index 00000000..fed93139 --- /dev/null +++ b/share/node-build/22.12.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.12.0/node-v22.12.0-aix-ppc64.tar.gz#b4cb7707b22218154cdcf8cbc9bbb5c941dab09961a544cc7aba6ab50da99926" +binary darwin-arm64 "https://nodejs.org/dist/v22.12.0/node-v22.12.0-darwin-arm64.tar.gz#293dcc6c2408da21562d135b0412525e381bb6fe150d688edb58fe850d0f3e13" +binary darwin-x64 "https://nodejs.org/dist/v22.12.0/node-v22.12.0-darwin-x64.tar.gz#52bc25dd026db7247c3c00439afdb83e95087248267f02d6c1a7250d1f896173" +binary linux-arm64 "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-arm64.tar.gz#9e7905fdee722f9650a03ae644b51c4c6effd3b98ac93c588700072ab35c9ddb" +binary linux-armv7l "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-armv7l.tar.gz#f6f3dc6493befa7844e2f65024f857dc8fbbc0d86089b09f6e73d5eb7e2ce9ad" +binary linux-ppc64le "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-ppc64le.tar.gz#a01148778eb1e9c56413e6a69cfe8d4563524c914dc3f9c667948a0d7a1a151a" +binary linux-s390x "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-s390x.tar.gz#63dd2e20cb50e2145c06f8f55b5682753691965b20fa08797a969a15b751ac8e" +binary linux-x64 "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-x64.tar.gz#e05a4d65232ae2b27b3d77da2e368522fb46b923335b8e0d5f77624c32484044" + +install_package "node-v22.12.0" "https://nodejs.org/dist/v22.12.0/node-v22.12.0.tar.gz#3157e7c002b6e964bdbefb331ec38db1e2dceb064ab11c038275155461b22ce3" From a502fc42633bd7de65b74de0b5f56b84f27606df Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 5 Dec 2024 10:11:27 +0000 Subject: [PATCH 028/156] 5.3.20 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 8ae8f5a3..a1367732 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.19 +NODE_BUILD_VERSION=5.3.20 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index c552aa47..8f91d301 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.19", + "version": "5.3.20", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.19", + "version": "5.3.20", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index e28bc73c..16af7d64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.19", + "version": "5.3.20", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 4cd3dce7b650c5e48c31f04948057d683e3a3fe4 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 10 Dec 2024 18:33:53 +0000 Subject: [PATCH 029/156] 23.4.0 Created with `npm run submit-definitions`. --- share/node-build/23.4.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.4.0 diff --git a/share/node-build/23.4.0 b/share/node-build/23.4.0 new file mode 100644 index 00000000..3a1ccdc4 --- /dev/null +++ b/share/node-build/23.4.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-aix-ppc64.tar.gz#686f245ea6aefb46e6807cffa66ba6db5f3dad4b557434c2e81e402774c810f9" +binary darwin-arm64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-darwin-arm64.tar.gz#06623a5bf78ceedc56a7bed6c299d78fc8c8724fe96b963392fddf9b20d854de" +binary darwin-x64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-darwin-x64.tar.gz#5784c98d6710c0370f41243201d1684635d737ee8e6a40ea6f76b2b392cff396" +binary linux-arm64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-linux-arm64.tar.gz#69b3cfd03a9dee46254f3308f5a74fd282f29854a604a88a4bbedc2f83b0b8e3" +binary linux-armv7l "https://nodejs.org/dist/v23.4.0/node-v23.4.0-linux-armv7l.tar.gz#132bba301b4cb11ed4435c394b684c5a03e7a3f215a6b42875fd269dd6941f38" +binary linux-ppc64le "https://nodejs.org/dist/v23.4.0/node-v23.4.0-linux-ppc64le.tar.gz#26f7a2c1c89b960fd21aed5512a55dc5f3a1aa12964663496708107ac86d7c59" +binary linux-s390x "https://nodejs.org/dist/v23.4.0/node-v23.4.0-linux-s390x.tar.gz#c47f1b56859eaa6ee0a2737e4d875c280dc3d84ae173ffd727438bfb4624cb81" +binary linux-x64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-linux-x64.tar.gz#2d5ae1dfa7f67e96b23d1d1ff51b8c76c7ec51fbfb7c4c1f010101b9557a2a86" + +install_package "node-v23.4.0" "https://nodejs.org/dist/v23.4.0/node-v23.4.0.tar.gz#1abc3d7ed398b0fd8606837552732f7bebce0cd2285069477d0692d318442248" From 50db11e324e16802a4dced8abcb1657e4cf73db9 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:11:17 +0000 Subject: [PATCH 030/156] 5.3.21 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index a1367732..d8f6abce 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.20 +NODE_BUILD_VERSION=5.3.21 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 8f91d301..3697ec31 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.20", + "version": "5.3.21", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.20", + "version": "5.3.21", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 16af7d64..6be8707f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.20", + "version": "5.3.21", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 36c89b9e046627e035cdb01b7d2c900c61c37b9c Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:46:46 +0000 Subject: [PATCH 031/156] 23.5.0 Created with `npm run submit-definitions`. --- share/node-build/23.5.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.5.0 diff --git a/share/node-build/23.5.0 b/share/node-build/23.5.0 new file mode 100644 index 00000000..73575991 --- /dev/null +++ b/share/node-build/23.5.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-aix-ppc64.tar.gz#5b487cdc9b490fb617201e4bc8b5ac247c1871fa8108857e6868e12527d6df19" +binary darwin-arm64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-darwin-arm64.tar.gz#71b1ca0e4d776b9b7648781303d8c5eb12be32c5ed0df4f97a26fd779bc7ef80" +binary darwin-x64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-darwin-x64.tar.gz#887506572511e4b90e4aab044db491ac4836c014904ae7537a9ca5c11b47c26d" +binary linux-arm64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-linux-arm64.tar.gz#209018ce7a867f5082cbdfdc91f379f49d021a58252cc65c5488c591004a750c" +binary linux-armv7l "https://nodejs.org/dist/v23.5.0/node-v23.5.0-linux-armv7l.tar.gz#599411676cdb5ba7fb472a74b37957eec0ef8f97269ba8ca77ce36f14f0c3554" +binary linux-ppc64le "https://nodejs.org/dist/v23.5.0/node-v23.5.0-linux-ppc64le.tar.gz#21d158927d10d23d31cfa2673667be238a23520daedfd855a8978ee78df511f3" +binary linux-s390x "https://nodejs.org/dist/v23.5.0/node-v23.5.0-linux-s390x.tar.gz#13aea5d8d4ac3fd0aebcfaa762760415ab57eb1e92d8e7f47d399bae23211b71" +binary linux-x64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-linux-x64.tar.gz#72ca246aafffeac41486bf5594b0223f9a28e7c3d9081a07884b75cc21cf9e8a" + +install_package "node-v23.5.0" "https://nodejs.org/dist/v23.5.0/node-v23.5.0.tar.gz#d6c29133361faa7dd7dfda353cb15f150683a2f5c6fe6a8d19c4dcb1594c80e4" From 43a7788022b6134595f0b6981d4d70c2a7e45c58 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:10:04 +0000 Subject: [PATCH 032/156] 5.3.22 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index d8f6abce..f9130f5f 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.21 +NODE_BUILD_VERSION=5.3.22 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 3697ec31..ff4f1171 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.21", + "version": "5.3.22", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.21", + "version": "5.3.22", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 6be8707f..1e623d34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.21", + "version": "5.3.22", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 2c7b222bbe4889eb2d3f6f55286621d442237f36 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 8 Jan 2025 01:46:32 +0000 Subject: [PATCH 033/156] 22.13.0 Created with `npm run submit-definitions`. --- share/node-build/22.13.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.13.0 diff --git a/share/node-build/22.13.0 b/share/node-build/22.13.0 new file mode 100644 index 00000000..4324897c --- /dev/null +++ b/share/node-build/22.13.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.13.0/node-v22.13.0-aix-ppc64.tar.gz#24d17c7f6b9b18fe225ef4b70f030f86bc9e268b47847e5b4d78f82a377274bc" +binary darwin-arm64 "https://nodejs.org/dist/v22.13.0/node-v22.13.0-darwin-arm64.tar.gz#bc1e374e7393e2f4b20e5bbc157d02e9b1fb2c634b2f992136b38fb8ca2023b7" +binary darwin-x64 "https://nodejs.org/dist/v22.13.0/node-v22.13.0-darwin-x64.tar.gz#cfaaf5edde585a15547f858f5b3b62a292cf5929a23707b6f1e36c29a32487be" +binary linux-arm64 "https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-arm64.tar.gz#e0cc088cb4fb2e945d3d5c416c601e1101a15f73e0f024c9529b964d9f6dce5b" +binary linux-armv7l "https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-armv7l.tar.gz#6d1b640276bafc1a409886390bae6d20e07f18dae6904b860127a402409621e0" +binary linux-ppc64le "https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-ppc64le.tar.gz#90b96eb76faf409bdac018b2f7c91343983201f518382ac7f538b7758325ba47" +binary linux-s390x "https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-s390x.tar.gz#bef2a7077a3a6aa66bb0292d1fbaea929471aabcb1937741c8db50d6372b8da4" +binary linux-x64 "https://nodejs.org/dist/v22.13.0/node-v22.13.0-linux-x64.tar.gz#9a33e89093a0d946c54781dcb3ccab4ccf7538a7135286528ca41ca055e9b38f" + +install_package "node-v22.13.0" "https://nodejs.org/dist/v22.13.0/node-v22.13.0.tar.gz#38e15a1d0dd0e95c237bc4651d7c9930a78d3fe7954a7ee7693b403f2d879e46" From 6a810701b72166ee9c82653106ed6991e58ef9c3 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 8 Jan 2025 01:46:32 +0000 Subject: [PATCH 034/156] 23.6.0 Created with `npm run submit-definitions`. --- share/node-build/23.6.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.6.0 diff --git a/share/node-build/23.6.0 b/share/node-build/23.6.0 new file mode 100644 index 00000000..6e0e4561 --- /dev/null +++ b/share/node-build/23.6.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-aix-ppc64.tar.gz#6320c05068ec7d34997d11a343eab0360ff7c59711c69116446056918c868b45" +binary darwin-arm64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-darwin-arm64.tar.gz#93e84485e41e7f35246e11329ea920ee5a8e7e12e90bfcea2f8205953c869bc2" +binary darwin-x64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-darwin-x64.tar.gz#009f4b4955ddbebaad86e306ad4c65b568f06fd76d855e7fd617eb2748cd5f2d" +binary linux-arm64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-linux-arm64.tar.gz#f851e86f5022949a02329230fd1cf374a7485bf8826596b090c4c950698b9e0d" +binary linux-armv7l "https://nodejs.org/dist/v23.6.0/node-v23.6.0-linux-armv7l.tar.gz#60a319b55afa11c646066a6c1f1a368d586e40bd27fa38c855acccae7f262065" +binary linux-ppc64le "https://nodejs.org/dist/v23.6.0/node-v23.6.0-linux-ppc64le.tar.gz#6fcf84abbd9fa95856664e3cbd28b8359dde7d46b6831dc8d240184285fea93a" +binary linux-s390x "https://nodejs.org/dist/v23.6.0/node-v23.6.0-linux-s390x.tar.gz#3d3a5fe270de4f0e5f3b3c4a9023d9fdbf3c269656e37c4b52c17f2ad67f547c" +binary linux-x64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-linux-x64.tar.gz#14a2b49629e74820bd6d94b92498f658774e3819bb71b0cb8b3717d9c0c81b70" + +install_package "node-v23.6.0" "https://nodejs.org/dist/v23.6.0/node-v23.6.0.tar.gz#9cd2aaa44d7d658833bb03ab4ce4c57273ba4c9b716094c931c709e6948fd71d" From 41c937861c3fe023c1fd448a98c1b1c3dd6b783f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 9 Jan 2025 10:10:42 +0000 Subject: [PATCH 035/156] 5.3.23 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index f9130f5f..a83d7dcb 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.22 +NODE_BUILD_VERSION=5.3.23 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index ff4f1171..d2f23d64 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.22", + "version": "5.3.23", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.22", + "version": "5.3.23", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 1e623d34..ac32ae2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.22", + "version": "5.3.23", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 586b33eb5c6a7d8a95bd4f0f6189583a5b6b87e0 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:30:33 +0000 Subject: [PATCH 036/156] 18.20.6 Created with `npm run submit-definitions`. --- share/node-build/18.20.6 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/18.20.6 diff --git a/share/node-build/18.20.6 b/share/node-build/18.20.6 new file mode 100644 index 00000000..20ad7645 --- /dev/null +++ b/share/node-build/18.20.6 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v18.20.6/node-v18.20.6-aix-ppc64.tar.gz#25f9f8b8275186b632a9e0ff7f22bba85eebe3aeb7c4ed84822529ba917d2a04" +binary darwin-arm64 "https://nodejs.org/dist/v18.20.6/node-v18.20.6-darwin-arm64.tar.gz#7105fb1ac42968010020db61edcc0ea0a366b37d792405d2959668e45b612753" +binary darwin-x64 "https://nodejs.org/dist/v18.20.6/node-v18.20.6-darwin-x64.tar.gz#25a4040000e9838af28d0d168301c70d07dcc61294089dde5f5d9044dafda1e5" +binary linux-arm64 "https://nodejs.org/dist/v18.20.6/node-v18.20.6-linux-arm64.tar.gz#9580a8c3bb3e8014e15c6940595c45e831f5a878dec78f086824a8adf91a327f" +binary linux-armv7l "https://nodejs.org/dist/v18.20.6/node-v18.20.6-linux-armv7l.tar.gz#d55580014639304a9fc0567a5e5b772d8a19d6c02c40f3fd4006216f97c759c2" +binary linux-ppc64le "https://nodejs.org/dist/v18.20.6/node-v18.20.6-linux-ppc64le.tar.gz#afa669b8c424f0f0d33ef461764194d126a1e5a07bad432252cfbefb7f9a52d0" +binary linux-s390x "https://nodejs.org/dist/v18.20.6/node-v18.20.6-linux-s390x.tar.gz#bb65d62cd88f45c91b60da975563ad1bffefce9337ba6e85997fb42496c19fd0" +binary linux-x64 "https://nodejs.org/dist/v18.20.6/node-v18.20.6-linux-x64.tar.gz#bff0672c5117e6f0809c456d9194630b5886442ddf298b2292529959c45b92c0" + +install_package "node-v18.20.6" "https://nodejs.org/dist/v18.20.6/node-v18.20.6.tar.gz#e7ddfeabea3d1f7cc622cc9861d2fb0955b9e60940dbbedbed6f2f821ab3e4c7" From 0f16dced5d2bc4aee4d282f011c7bb09a795a894 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:30:33 +0000 Subject: [PATCH 037/156] 20.18.2 Created with `npm run submit-definitions`. --- share/node-build/20.18.2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.18.2 diff --git a/share/node-build/20.18.2 b/share/node-build/20.18.2 new file mode 100644 index 00000000..3053f2fe --- /dev/null +++ b/share/node-build/20.18.2 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.18.2/node-v20.18.2-aix-ppc64.tar.gz#efcddeb91b189b02706d1a75a67b4a111253ec8f64cc30cc3dc4649744abd52b" +binary darwin-arm64 "https://nodejs.org/dist/v20.18.2/node-v20.18.2-darwin-arm64.tar.gz#fa76d5b5340f14070ebaa88ef8faa28c1e9271502725e830cb52f0cf5b6493de" +binary darwin-x64 "https://nodejs.org/dist/v20.18.2/node-v20.18.2-darwin-x64.tar.gz#00a16bb0a82a2ad5d00d66b466ae1afa678482283747c27e9bce96668f334744" +binary linux-arm64 "https://nodejs.org/dist/v20.18.2/node-v20.18.2-linux-arm64.tar.gz#319789e8a055ff80793a05e633c8c5c9226050144a09da3747225b4ec56a2a99" +binary linux-armv7l "https://nodejs.org/dist/v20.18.2/node-v20.18.2-linux-armv7l.tar.gz#65397a4a63960bda94718099698d2961623e9ef400f60f4c3a71add2268bccfb" +binary linux-ppc64le "https://nodejs.org/dist/v20.18.2/node-v20.18.2-linux-ppc64le.tar.gz#9b2f0fd3b02d8b59bde3e2a251e4df501e755c99cfc4886b0bdf85fa4d0bc538" +binary linux-s390x "https://nodejs.org/dist/v20.18.2/node-v20.18.2-linux-s390x.tar.gz#7e52e03823feaa2483a7cbcf85767790776f87a2c7112d87600c3d9d3b1ae6e9" +binary linux-x64 "https://nodejs.org/dist/v20.18.2/node-v20.18.2-linux-x64.tar.gz#eb5b031bdd728871c3b9a82655dbfa533bc262c0b6da1d09a86842430cef07d4" + +install_package "node-v20.18.2" "https://nodejs.org/dist/v20.18.2/node-v20.18.2.tar.gz#cf3ef49fafbfee3cdcd936a0d6031341b73bfa6b26a484ea0a4936c26d24b829" From c43538c9b6f9baff667b253e7ab0091de7511cd3 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:30:33 +0000 Subject: [PATCH 038/156] 22.13.1 Created with `npm run submit-definitions`. --- share/node-build/22.13.1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.13.1 diff --git a/share/node-build/22.13.1 b/share/node-build/22.13.1 new file mode 100644 index 00000000..bc4d35c6 --- /dev/null +++ b/share/node-build/22.13.1 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.13.1/node-v22.13.1-aix-ppc64.tar.gz#ed52239294ad517fbe91a268146d5d2aa8a17d2d62d64873e43219078ba71c4e" +binary darwin-arm64 "https://nodejs.org/dist/v22.13.1/node-v22.13.1-darwin-arm64.tar.gz#97483ff4361d239a56d038c6335767a56a291e78c10f07446f463f05d9d19b89" +binary darwin-x64 "https://nodejs.org/dist/v22.13.1/node-v22.13.1-darwin-x64.tar.gz#6fdcc8412d434664238b0651ebd5ad55d15a08598ff42dcb6d9cf1d434a6c4be" +binary linux-arm64 "https://nodejs.org/dist/v22.13.1/node-v22.13.1-linux-arm64.tar.gz#911d9c07af38c82be22cd0a3db613aabc578ba940b35380aeedadd6d48070bc1" +binary linux-armv7l "https://nodejs.org/dist/v22.13.1/node-v22.13.1-linux-armv7l.tar.gz#82be9fa5e74ee29d7342d38306dbee19d3e2239b5b753870c04fd03768916a7e" +binary linux-ppc64le "https://nodejs.org/dist/v22.13.1/node-v22.13.1-linux-ppc64le.tar.gz#e4d34550d791cc809cfbfe8d0e3082634796add404169484b0849fbae0714576" +binary linux-s390x "https://nodejs.org/dist/v22.13.1/node-v22.13.1-linux-s390x.tar.gz#56375cf2c827a425d708bd0322fd635b6f2038e272468395f4e160e1ea4ae91e" +binary linux-x64 "https://nodejs.org/dist/v22.13.1/node-v22.13.1-linux-x64.tar.gz#666148b9fe0c7e1301cc1b029e33a45e9e4a893f68d2d2bb1cc88a931a88a004" + +install_package "node-v22.13.1" "https://nodejs.org/dist/v22.13.1/node-v22.13.1.tar.gz#e7d5b1e84e7f3c3cebda81e2b138469eef41ba4ecf16a87fd15fc3f7afa3f701" From 526de71c69ac235aea5b77428467ab7de71f47e6 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:30:33 +0000 Subject: [PATCH 039/156] 23.6.1 Created with `npm run submit-definitions`. --- share/node-build/23.6.1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.6.1 diff --git a/share/node-build/23.6.1 b/share/node-build/23.6.1 new file mode 100644 index 00000000..5f642bbf --- /dev/null +++ b/share/node-build/23.6.1 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-aix-ppc64.tar.gz#1a05b4193005a912b99674ee1198808ed3b38850224928a8966e298a33b50471" +binary darwin-arm64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-darwin-arm64.tar.gz#b87c90f1efff3f2f49070ce4714a11228a43331bb590b06fc7bcb36e530b2ea0" +binary darwin-x64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-darwin-x64.tar.gz#bcdc29188f2d8d7a129b88a6c19830ac91e53e64c3744b18f412dce533f67ef7" +binary linux-arm64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-linux-arm64.tar.gz#8b221bb5ef173e9b6fecf4fc4a31696a775bbfe07ea45f8c7bdf88d7b9c9460f" +binary linux-armv7l "https://nodejs.org/dist/v23.6.1/node-v23.6.1-linux-armv7l.tar.gz#3bdb2e31de44038f166531edb2f3d99278b6c36576392c4939762029efa53439" +binary linux-ppc64le "https://nodejs.org/dist/v23.6.1/node-v23.6.1-linux-ppc64le.tar.gz#c3db627673540e4c1ffd6f2f112e5dd8e6d89eaeba4fbdfdaa90e071c11d58b1" +binary linux-s390x "https://nodejs.org/dist/v23.6.1/node-v23.6.1-linux-s390x.tar.gz#68e8c2d68a749616ae82605ae85871a3e281c6ae0b68d5cb4ffa68320c949104" +binary linux-x64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-linux-x64.tar.gz#0aaa37396638ae6e71af66927dcc41414327051d5a8030d3057db1ceb7719854" + +install_package "node-v23.6.1" "https://nodejs.org/dist/v23.6.1/node-v23.6.1.tar.gz#35c0f7957085083071fcf01c7eaea953fba98f17afc4d7c189e3ef56925b453c" From dacc45f592d717d142db8f9e1f8b4efcd759ad43 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 22 Jan 2025 10:08:06 +0000 Subject: [PATCH 040/156] 5.3.24 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index a83d7dcb..a9c055ee 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.23 +NODE_BUILD_VERSION=5.3.24 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index d2f23d64..522cfc46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.23", + "version": "5.3.24", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.23", + "version": "5.3.24", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index ac32ae2d..999f8135 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.23", + "version": "5.3.24", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From af41d3fd5a93bb1a458473953ff5f28ae3166215 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 30 Jan 2025 18:29:32 +0000 Subject: [PATCH 041/156] 23.7.0 Created with `npm run submit-definitions`. --- share/node-build/23.7.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.7.0 diff --git a/share/node-build/23.7.0 b/share/node-build/23.7.0 new file mode 100644 index 00000000..c88b9425 --- /dev/null +++ b/share/node-build/23.7.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-aix-ppc64.tar.gz#798c6290890c79647af8614a85cffce0d6ee0a40dd1e5ba66cff2a1a3192dc9c" +binary darwin-arm64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-darwin-arm64.tar.gz#0dac0de3308a87f84cb14bab349a3f0ae5f6cdb8da32600459ee407236f9cebc" +binary darwin-x64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-darwin-x64.tar.gz#d32b53d95a42a64388486490e7c3f6a23f00ae3bf6175c64c200954cd41ef2ba" +binary linux-arm64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-linux-arm64.tar.gz#3997bbd0e56d5e3664b66025b13072de2851743a811c2afb16e349ab798203c4" +binary linux-armv7l "https://nodejs.org/dist/v23.7.0/node-v23.7.0-linux-armv7l.tar.gz#af6958987ca97779fc36448adf425eef0255278a35a24590fa28762a016a0f78" +binary linux-ppc64le "https://nodejs.org/dist/v23.7.0/node-v23.7.0-linux-ppc64le.tar.gz#ce3557951af359312744863425f7ce4923d390753997701e1f739262bf169e0d" +binary linux-s390x "https://nodejs.org/dist/v23.7.0/node-v23.7.0-linux-s390x.tar.gz#ca716813317d8af02fe79cd854f1507c495bde018bc64a8e8cec138f6eea7b32" +binary linux-x64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-linux-x64.tar.gz#d9173025ec1f18264bc5f1e70e99c19d9bba72c563143d150db0ced98a177c2f" + +install_package "node-v23.7.0" "https://nodejs.org/dist/v23.7.0/node-v23.7.0.tar.gz#44288a847f8c2659d225ed1c14bfb557926c571d08465c897c3f41db0216a7a8" From 5a29c09c8bb99ba3970cdb4f9943dedded937a96 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Sat, 1 Feb 2025 10:09:07 +0000 Subject: [PATCH 042/156] 5.3.25 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index a9c055ee..f0af2f7f 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.24 +NODE_BUILD_VERSION=5.3.25 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 522cfc46..3b121ce7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.24", + "version": "5.3.25", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.24", + "version": "5.3.25", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 999f8135..177069c1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.24", + "version": "5.3.25", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From b41279efcea3bb1d9f9ac967ba9ed0ab7e21e949 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 13:23:57 +0000 Subject: [PATCH 043/156] Bump redhat-plumbers-in-action/differential-shellcheck Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.4.0 to 5.5.1. - [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases) - [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/redhat-plumbers-in-action/differential-shellcheck/compare/cc6721c45a8800cc666de45493545a07a638d121...5fa026e4797665181a0f7c6fa4a73c09348ae78c) --- updated-dependencies: - dependency-name: redhat-plumbers-in-action/differential-shellcheck dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 391067d0..0247eb5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@cc6721c45a8800cc666de45493545a07a638d121 # v5.4.0 + - uses: redhat-plumbers-in-action/differential-shellcheck@5fa026e4797665181a0f7c6fa4a73c09348ae78c # v5.5.1 with: severity: error # TODO strengthen token: ${{ secrets.GITHUB_TOKEN }} From ac799d1d7b1f72ff97715d7931baee287e9fa7e5 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Mon, 10 Feb 2025 18:30:42 +0000 Subject: [PATCH 044/156] 20.18.3 Created with `npm run submit-definitions`. --- share/node-build/20.18.3 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.18.3 diff --git a/share/node-build/20.18.3 b/share/node-build/20.18.3 new file mode 100644 index 00000000..a2216a57 --- /dev/null +++ b/share/node-build/20.18.3 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.18.3/node-v20.18.3-aix-ppc64.tar.gz#c0f0c72b80a67ef32402fda206b10a101b1c309158d850dbbedc9e751738d300" +binary darwin-arm64 "https://nodejs.org/dist/v20.18.3/node-v20.18.3-darwin-arm64.tar.gz#1f15b7ed18a580af31cf32bc126572292d820f547bf55bf9cdce08041a24e1d9" +binary darwin-x64 "https://nodejs.org/dist/v20.18.3/node-v20.18.3-darwin-x64.tar.gz#ba668f64df9239843fefcef095ee539f5ac5aa1b0fc15a71f1ecca16abedec7a" +binary linux-arm64 "https://nodejs.org/dist/v20.18.3/node-v20.18.3-linux-arm64.tar.gz#93a9df19238adfaa289f4784041d03edaf2fdd89fbb247faffca2fe4a1000703" +binary linux-armv7l "https://nodejs.org/dist/v20.18.3/node-v20.18.3-linux-armv7l.tar.gz#8a84eb34287db6a273066934d7195e429f57b91686b62fc19497210204a2b3de" +binary linux-ppc64le "https://nodejs.org/dist/v20.18.3/node-v20.18.3-linux-ppc64le.tar.gz#787612cd7a2461b5340fee1406d8f958e9bb9349030189a03d37fc92529d2f74" +binary linux-s390x "https://nodejs.org/dist/v20.18.3/node-v20.18.3-linux-s390x.tar.gz#72156704416f4c32f8eb72e9ee59a0fcacbd972f28b2e05b9c888c7098acd2d2" +binary linux-x64 "https://nodejs.org/dist/v20.18.3/node-v20.18.3-linux-x64.tar.gz#9fc3952da39b20d1fcfdb777b198cc035485afbbb1004b4df93f35245d61151e" + +install_package "node-v20.18.3" "https://nodejs.org/dist/v20.18.3/node-v20.18.3.tar.gz#eba088fa562735140b283c7bb33f53e026ccd5febe68c52c5737ef6e577ec874" From a0e8a188a7405bcf189d4673bc017e39a589e60e Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:10:34 +0000 Subject: [PATCH 045/156] 5.3.26 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index f0af2f7f..043a2fcd 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.25 +NODE_BUILD_VERSION=5.3.26 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 3b121ce7..6d4f030f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.25", + "version": "5.3.26", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.25", + "version": "5.3.26", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 177069c1..23bc3839 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.25", + "version": "5.3.26", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 32875cc886063788b54eaf05f14f6411a9daf8d6 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 11 Feb 2025 12:44:13 +0000 Subject: [PATCH 046/156] 22.14.0 Created with `npm run submit-definitions`. --- share/node-build/22.14.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.14.0 diff --git a/share/node-build/22.14.0 b/share/node-build/22.14.0 new file mode 100644 index 00000000..2c696d12 --- /dev/null +++ b/share/node-build/22.14.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.14.0/node-v22.14.0-aix-ppc64.tar.gz#ddec69aded8f826efbef8b4af09baa451f5ed8b057e84d836accf33de04d2d7a" +binary darwin-arm64 "https://nodejs.org/dist/v22.14.0/node-v22.14.0-darwin-arm64.tar.gz#e9404633bc02a5162c5c573b1e2490f5fb44648345d64a958b17e325729a5e42" +binary darwin-x64 "https://nodejs.org/dist/v22.14.0/node-v22.14.0-darwin-x64.tar.gz#6698587713ab565a94a360e091df9f6d91c8fadda6d00f0cf6526e9b40bed250" +binary linux-arm64 "https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-arm64.tar.gz#8cf30ff7250f9463b53c18f89c6c606dfda70378215b2c905d0a9a8b08bd45e0" +binary linux-armv7l "https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-armv7l.tar.gz#1cadf5aee7d71b6f0921235faec05e42d908ba5e8a76959f0697968fe0741204" +binary linux-ppc64le "https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-ppc64le.tar.gz#a0818ece898175db71a1df81dc4fdc3794a14b03a3901894a88e465e745ea429" +binary linux-s390x "https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-s390x.tar.gz#0e4232e4b3c0312a391bb9c0c36524623b3b616cac5d0338d743ae4228f984d1" +binary linux-x64 "https://nodejs.org/dist/v22.14.0/node-v22.14.0-linux-x64.tar.gz#9d942932535988091034dc94cc5f42b6dc8784d6366df3a36c4c9ccb3996f0c2" + +install_package "node-v22.14.0" "https://nodejs.org/dist/v22.14.0/node-v22.14.0.tar.gz#6c4e31ed5702dc45cfd8c435af56a36a474427e1bd7afe74c346136060beba8a" From 7d5773a402099a8f80c339099b29c7863d8aae62 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 12 Feb 2025 10:10:08 +0000 Subject: [PATCH 047/156] 5.3.27 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 043a2fcd..11c83e6a 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.26 +NODE_BUILD_VERSION=5.3.27 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 6d4f030f..6f66eca3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.26", + "version": "5.3.27", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.26", + "version": "5.3.27", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 23bc3839..9e638811 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.26", + "version": "5.3.27", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From ca44766c6581e624edfb466c099fa957a7d39f17 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 13 Feb 2025 18:30:54 +0000 Subject: [PATCH 048/156] 23.8.0 Created with `npm run submit-definitions`. --- share/node-build/23.8.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.8.0 diff --git a/share/node-build/23.8.0 b/share/node-build/23.8.0 new file mode 100644 index 00000000..bcca28fb --- /dev/null +++ b/share/node-build/23.8.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-aix-ppc64.tar.gz#7fefc7b97a47364a096d882f0ee3c43b4aa79fc472b17dc3ab3559da88cc48a7" +binary darwin-arm64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-darwin-arm64.tar.gz#7c3bb4ccfd558f5cc12ffb81df795c5960e429088feb1ae650fa2ae65418858a" +binary darwin-x64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-darwin-x64.tar.gz#a4c93b517d51d368248e9fddd20bc46ba1f6081df2a55d267a33015a4ab31886" +binary linux-arm64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-linux-arm64.tar.gz#d603dcce61cd8f27440bd0cdb2688f5963a7ac6cd0f425e5c9ae8c93cfaaa134" +binary linux-armv7l "https://nodejs.org/dist/v23.8.0/node-v23.8.0-linux-armv7l.tar.gz#02194b458283fcc0f41f826829e2452dac4622f2386b0c29e374bc859daa70ce" +binary linux-ppc64le "https://nodejs.org/dist/v23.8.0/node-v23.8.0-linux-ppc64le.tar.gz#66e0e26a27db7ecb591c7d146ca63b727e452610a8adfb334d423bbb76563619" +binary linux-s390x "https://nodejs.org/dist/v23.8.0/node-v23.8.0-linux-s390x.tar.gz#84996f533ddc37d720085a5134b898fd518b00fbc1f0f70a9a29fd3fd0df632d" +binary linux-x64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-linux-x64.tar.gz#f6d98bbdd0a4078c1e422a6a1d8bf07ad693a4dd793bb5772990456faeca6e95" + +install_package "node-v23.8.0" "https://nodejs.org/dist/v23.8.0/node-v23.8.0.tar.gz#23b5e0b0b6752a21c7af4e2361655a54ad499d3ae06b6f9af1dd311365b8496a" From 1c6375448ca257a77ce1706a2b5dcc97aab4770f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 14:35:48 +0000 Subject: [PATCH 049/156] Bump redhat-plumbers-in-action/differential-shellcheck Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.5.1 to 5.5.3. - [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases) - [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/redhat-plumbers-in-action/differential-shellcheck/compare/5fa026e4797665181a0f7c6fa4a73c09348ae78c...dd551ce780d8af741f8cd8bab6982667b906b457) --- updated-dependencies: - dependency-name: redhat-plumbers-in-action/differential-shellcheck dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0247eb5b..33081eec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@5fa026e4797665181a0f7c6fa4a73c09348ae78c # v5.5.1 + - uses: redhat-plumbers-in-action/differential-shellcheck@dd551ce780d8af741f8cd8bab6982667b906b457 # v5.5.3 with: severity: error # TODO strengthen token: ${{ secrets.GITHUB_TOKEN }} From a0850defc0095ed687fe1c90a5891431eba530d8 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 18 Feb 2025 10:10:24 +0000 Subject: [PATCH 050/156] 5.3.28 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 11c83e6a..0e02a5d2 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.27 +NODE_BUILD_VERSION=5.3.28 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 6f66eca3..2a719848 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.27", + "version": "5.3.28", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.27", + "version": "5.3.28", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 9e638811..5137ffa6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.27", + "version": "5.3.28", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 6071fba7d656be1c4ce9d6354f0a9421d9f50dad Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:45:19 +0000 Subject: [PATCH 051/156] 18.20.7 Created with `npm run submit-definitions`. --- share/node-build/18.20.7 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/18.20.7 diff --git a/share/node-build/18.20.7 b/share/node-build/18.20.7 new file mode 100644 index 00000000..8ca7ee9d --- /dev/null +++ b/share/node-build/18.20.7 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v18.20.7/node-v18.20.7-aix-ppc64.tar.gz#3e3aab6f6827063250c55cbecffe81624ec36c0ec1e6fe247f73697f78b52b86" +binary darwin-arm64 "https://nodejs.org/dist/v18.20.7/node-v18.20.7-darwin-arm64.tar.gz#cdbe696f68b9162872295d4ec88a0700a3827261ae729f5eaf0606c69d6ab37e" +binary darwin-x64 "https://nodejs.org/dist/v18.20.7/node-v18.20.7-darwin-x64.tar.gz#c42eee8d9557720052d05856651488074f7736583b3312a223760490b9f5ce0e" +binary linux-arm64 "https://nodejs.org/dist/v18.20.7/node-v18.20.7-linux-arm64.tar.gz#fc1f0e0c1022c5486da4726c58dc678c076ac2d7ad30b1b47b9071f043adce1e" +binary linux-armv7l "https://nodejs.org/dist/v18.20.7/node-v18.20.7-linux-armv7l.tar.gz#1e8d3685417be34f8714044015cada78d82747566c15f3824ef28e9c22e3e68a" +binary linux-ppc64le "https://nodejs.org/dist/v18.20.7/node-v18.20.7-linux-ppc64le.tar.gz#4520710588d6109f818c19568d17ffbdbf89d60c96e0f9547a8771730e135901" +binary linux-s390x "https://nodejs.org/dist/v18.20.7/node-v18.20.7-linux-s390x.tar.gz#fecbe173c8ce1ee1d2c6475546a8d30c4426861505ef69254bd048e6d91f23fb" +binary linux-x64 "https://nodejs.org/dist/v18.20.7/node-v18.20.7-linux-x64.tar.gz#ca593cc143875d33b257ab45ae629a02485333e8096221c44ef62c99678aa7fc" + +install_package "node-v18.20.7" "https://nodejs.org/dist/v18.20.7/node-v18.20.7.tar.gz#f2f2f1ac616d8e253ed69cf0b44de7d4843c40d8a614f64c776ee59ff0047031" From 2c6c72a1c7c2109eb877266b7336e922b78ef6e8 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Sat, 22 Feb 2025 10:08:46 +0000 Subject: [PATCH 052/156] 5.3.29 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 0e02a5d2..a3159338 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.28 +NODE_BUILD_VERSION=5.3.29 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 2a719848..4708f73c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.28", + "version": "5.3.29", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.28", + "version": "5.3.29", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 5137ffa6..cd7ac1ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.28", + "version": "5.3.29", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 262221ea643fb1792ef64699d562c66f93adcb27 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 26 Feb 2025 18:31:37 +0000 Subject: [PATCH 053/156] 23.9.0 Created with `npm run submit-definitions`. --- share/node-build/23.9.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.9.0 diff --git a/share/node-build/23.9.0 b/share/node-build/23.9.0 new file mode 100644 index 00000000..a5009c58 --- /dev/null +++ b/share/node-build/23.9.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-aix-ppc64.tar.gz#5837acfdfa601ba46163a01ef6ad53a2f6c6283cc9fc336db1145ec466220f68" +binary darwin-arm64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-darwin-arm64.tar.gz#02fea0822268b245066e895a20a0c530f750a710517ac9faafdc0f1cd4434994" +binary darwin-x64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-darwin-x64.tar.gz#535d8ed9d5e6a59f46df4e518e2940d5701e17ae795600815a702e8233552240" +binary linux-arm64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-linux-arm64.tar.gz#798301b15d2acdc9e62c50688d95480a7787051fa83000e210b32b9adfdcfa4c" +binary linux-armv7l "https://nodejs.org/dist/v23.9.0/node-v23.9.0-linux-armv7l.tar.gz#99a07e0655ab7fd72242b68b960a2cfcbe2d3d96b7852605a5a8cb098f9851b9" +binary linux-ppc64le "https://nodejs.org/dist/v23.9.0/node-v23.9.0-linux-ppc64le.tar.gz#437c9285740c2a628bd7cf68229c00528619076ef30c59cd557459b2cc61b63b" +binary linux-s390x "https://nodejs.org/dist/v23.9.0/node-v23.9.0-linux-s390x.tar.gz#dc10041dcb37c5296a747bc828e47875b9680e33a98bd2313995ca2a840d9068" +binary linux-x64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-linux-x64.tar.gz#bb1a81335c86578e70ee282eb9f93c5aa2e75f7cb6b99d9315a52899d42884f9" + +install_package "node-v23.9.0" "https://nodejs.org/dist/v23.9.0/node-v23.9.0.tar.gz#164ec8fe82aac21f74efc0d5890d9f6c0e0ba22ca285d400c0266913fb4ff8a0" From a33436fdc905418a75b20fed190d0616962fcd92 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 27 Feb 2025 10:10:24 +0000 Subject: [PATCH 054/156] 5.3.30 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index a3159338..1c5f0abf 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.29 +NODE_BUILD_VERSION=5.3.30 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 4708f73c..86a4adf1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.29", + "version": "5.3.30", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.29", + "version": "5.3.30", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index cd7ac1ce..7d2dbb60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.29", + "version": "5.3.30", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 44978c8455552724148800417f3ecb9faab06852 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 13:08:08 +0000 Subject: [PATCH 055/156] Bump bats-assert from `e2d855b` to `0ec504e` Bumps [bats-assert](https://github.com/jasonkarns/bats-assert-1) from `e2d855b` to `0ec504e`. - [Release notes](https://github.com/jasonkarns/bats-assert-1/releases) - [Commits](https://github.com/jasonkarns/bats-assert-1/compare/e2d855bc78619ee15b0c702b5c30fb074101159f...0ec504eb523fd87af924ad77e1221ee4fb8c1596) --- updated-dependencies: - dependency-name: bats-assert dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 86a4adf1..ad8f3ca1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,8 +42,8 @@ }, "node_modules/bats-assert": { "version": "2.1.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#e2d855bc78619ee15b0c702b5c30fb074101159f", - "integrity": "sha512-essBJNGadRCxpjrypamUSyJ2wzBnCAgvcO7/WS7VU1ZDrAxnWFSjx8hTNXZIcoGGcbps5eg3nS32prghhJO5aA==", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#0ec504eb523fd87af924ad77e1221ee4fb8c1596", + "integrity": "sha512-aetfMRy9S9ZDILwGQie0AxWPQS6mLMwmBaPp7Ow6seY7HhdLXEQoD64rAscws9/cyR8IEdDZGDkdl4oSsznoXQ==", "dev": true, "license": "CC0-1.0", "peerDependencies": { From c07a7fbf44926867be51a60587279456d166a7c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Mar 2025 13:25:39 +0000 Subject: [PATCH 056/156] Bump peter-evans/create-pull-request from 7.0.5 to 7.0.8 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.5 to 7.0.8. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/5e914681df9dc83aa4e4905692ca88beb2f9e91f...271a8d0340265f705b14b6d32b9829c1cb33d45e) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/definitions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index b070683e..2223d0a5 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -24,7 +24,7 @@ jobs: run: | msg=$(git log --format='- %s' --reverse ${{github.sha}}..) echo "::set-output name=message::${msg//$'\n'/'%0A'}" - - uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 + - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: token: ${{ secrets.BOT_TOKEN }} branch: latest-scraped-definitions @@ -38,7 +38,7 @@ jobs: - run: npm ci - run: npm run lint:lts -- --fix - if: failure() - uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5 + uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: token: ${{ secrets.BOT_TOKEN }} committer: 'nodenv bot ' From 66965dadf5bef34d42f85a9f6b7e28946ba66bc7 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 14 Mar 2025 01:50:07 +0000 Subject: [PATCH 057/156] 20.19.0 Created with `npm run submit-definitions`. --- share/node-build/20.19.0 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.0 diff --git a/share/node-build/20.19.0 b/share/node-build/20.19.0 new file mode 100644 index 00000000..e5012299 --- /dev/null +++ b/share/node-build/20.19.0 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.0/node-v20.19.0-aix-ppc64.tar.gz#0609a0e76791783a3ff7845d55455ba071cb0c70d9f40880b23c2d7863acd16e" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.0/node-v20.19.0-darwin-arm64.tar.gz#c016cd1975a264a29dc1b07c6fbe60d5df0a0c2beb4113c0450e3d998d1a0d9c" +binary darwin-x64 "https://nodejs.org/dist/v20.19.0/node-v20.19.0-darwin-x64.tar.gz#a8554af97d6491fdbdabe63d3a1cfb9571228d25a3ad9aed2df856facb131b20" +binary linux-arm64 "https://nodejs.org/dist/v20.19.0/node-v20.19.0-linux-arm64.tar.gz#618e4294602b78e97118a39050116b70d088b16197cd3819bba1fc18b473dfc4" +binary linux-armv7l "https://nodejs.org/dist/v20.19.0/node-v20.19.0-linux-armv7l.tar.gz#2deb2f333b42fcdeb0d215800b3d2b9af64dd88c1d0b05e67b980398d43c4dce" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.0/node-v20.19.0-linux-ppc64le.tar.gz#a408067f48198c8ade06c09c5ad36f12b976bc801144ea4220ad850ee14b62a8" +binary linux-s390x "https://nodejs.org/dist/v20.19.0/node-v20.19.0-linux-s390x.tar.gz#08c3a52fcb1ddcc83d45eb7f6a1366d71d4d499114387e00af64c0e38c471034" +binary linux-x64 "https://nodejs.org/dist/v20.19.0/node-v20.19.0-linux-x64.tar.gz#8a4dbcdd8bccef3132d21e8543940557e55dcf44f00f0a99ba8a062f4552e722" + +install_package "node-v20.19.0" "https://nodejs.org/dist/v20.19.0/node-v20.19.0.tar.gz#658572c4a0f546b0c07ea64d53b396a19c425ff183924872cb34712a17e15332" From 7cb30e9892c49d85c0f040cff5fc081516c33c1b Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 14 Mar 2025 01:50:07 +0000 Subject: [PATCH 058/156] 23.10.0 Created with `npm run submit-definitions`. --- share/node-build/23.10.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/23.10.0 diff --git a/share/node-build/23.10.0 b/share/node-build/23.10.0 new file mode 100644 index 00000000..7164cb13 --- /dev/null +++ b/share/node-build/23.10.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-aix-ppc64.tar.gz#269cc2c2ec25228285a9f4221567a9d501171958ad3a3a468ea4d5b422b6df23" +binary darwin-arm64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-darwin-arm64.tar.gz#f44ff5990735df42c79820654e2e394b6351ac9fd5eb140c3cae953cf7af302c" +binary darwin-x64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-darwin-x64.tar.gz#6c60ebd659dddca673ae7deff9e8e1cc4048f81a6311811a98ba4fe98372275f" +binary linux-arm64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-linux-arm64.tar.gz#a7a2d642f43436ea22b0a050a3e7b8b9876ea33410e0d74cb18c0901cc9635d0" +binary linux-armv7l "https://nodejs.org/dist/v23.10.0/node-v23.10.0-linux-armv7l.tar.gz#fac3f7d4f42dac741e3a538f9fa356b23c81272fe7bc135b944a30b7a4b3face" +binary linux-ppc64le "https://nodejs.org/dist/v23.10.0/node-v23.10.0-linux-ppc64le.tar.gz#ef494e1627423e15aae09c283de854f5e745bcd95bc5dc58652c040307ffded5" +binary linux-s390x "https://nodejs.org/dist/v23.10.0/node-v23.10.0-linux-s390x.tar.gz#78c176dcb05578c31cb5866ab294ba361b2659e3b20ac816fd644b234e3a0394" +binary linux-x64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-linux-x64.tar.gz#26f85defcb75e3f8f00c6ad429f9a5b2fb1766e955045fe97e31b11c44315f2d" + +install_package "node-v23.10.0" "https://nodejs.org/dist/v23.10.0/node-v23.10.0.tar.gz#27fea91e7df3f3a18875f76afb63ba4ac60926ffb10ad2be557160ef48787266" From d5701994ca93bf879897b7e063d96b74343d67a3 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 14 Mar 2025 10:10:38 +0000 Subject: [PATCH 059/156] 5.3.31 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 1c5f0abf..6e7133bc 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.30 +NODE_BUILD_VERSION=5.3.31 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index ad8f3ca1..de75bfd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.30", + "version": "5.3.31", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.30", + "version": "5.3.31", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 7d2dbb60..30600bca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.30", + "version": "5.3.31", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From eacfa5269ed4af235000bde831aec32e3e034444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 14:24:49 +0000 Subject: [PATCH 060/156] Bump bats-assert from `0ec504e` to `b93143a` Bumps [bats-assert](https://github.com/jasonkarns/bats-assert-1) from `0ec504e` to `b93143a`. - [Release notes](https://github.com/jasonkarns/bats-assert-1/releases) - [Commits](https://github.com/jasonkarns/bats-assert-1/compare/0ec504eb523fd87af924ad77e1221ee4fb8c1596...b93143a1bfbde41d9b7343aab0d36f3ef6549e6b) --- updated-dependencies: - dependency-name: bats-assert dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index de75bfd9..0471f922 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,8 +42,8 @@ }, "node_modules/bats-assert": { "version": "2.1.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#0ec504eb523fd87af924ad77e1221ee4fb8c1596", - "integrity": "sha512-aetfMRy9S9ZDILwGQie0AxWPQS6mLMwmBaPp7Ow6seY7HhdLXEQoD64rAscws9/cyR8IEdDZGDkdl4oSsznoXQ==", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#b93143a1bfbde41d9b7343aab0d36f3ef6549e6b", + "integrity": "sha512-O9lM6A7Yv2HupfoiISSr3KExsaaa2ZaHUFyKdxvoEUWfSCl8QCZzSePRYCAahZmzaI9GcLEfa7qsUQb+HTblXg==", "dev": true, "license": "CC0-1.0", "peerDependencies": { From 188296a7926a0b392ad8182ac8358fc453f72d2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 14:24:54 +0000 Subject: [PATCH 061/156] Bump bats-support from `9bf10e8` to `d007fc1` Bumps [bats-support](https://github.com/jasonkarns/bats-support) from `9bf10e8` to `d007fc1`. - [Release notes](https://github.com/jasonkarns/bats-support/releases) - [Commits](https://github.com/jasonkarns/bats-support/compare/9bf10e876dd6b624fe44423f0b35e064225f7556...d007fc1f451abbad55204fa9c9eb3e6ed5dc5f61) --- updated-dependencies: - dependency-name: bats-support dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index de75bfd9..69b06417 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,8 +62,8 @@ }, "node_modules/bats-support": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-support.git#9bf10e876dd6b624fe44423f0b35e064225f7556", - "integrity": "sha512-Y4m/iyagkCQqX8B6tWRau6W3bc88e/ArlhcAbxuQ3h7pZjV1DO22OvwSqwdbtJl7XylWVjfovnUyqo+v63c2ig==", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-support.git#d007fc1f451abbad55204fa9c9eb3e6ed5dc5f61", + "integrity": "sha512-lZueJbfb9JqaFTNZcaoj7uhAPxSRKRCe+PBA2Y1OvQEtSQjdVn4v/+QtZlKGq88krlHOA2cpOMHz7VLfwphO8A==", "dev": true, "license": "CC0-1.0", "peerDependencies": { From 74c08cd03a1afa230fbb609044f3afafe25466ad Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Thu, 3 Apr 2025 15:16:29 +0000 Subject: [PATCH 062/156] Add LTS warning messages --- share/node-build/23.0.0 | 5 +++++ share/node-build/23.1.0 | 5 +++++ share/node-build/23.10.0 | 5 +++++ share/node-build/23.2.0 | 5 +++++ share/node-build/23.3.0 | 5 +++++ share/node-build/23.4.0 | 5 +++++ share/node-build/23.5.0 | 5 +++++ share/node-build/23.6.0 | 5 +++++ share/node-build/23.6.1 | 5 +++++ share/node-build/23.7.0 | 5 +++++ share/node-build/23.8.0 | 5 +++++ share/node-build/23.9.0 | 5 +++++ 12 files changed, 60 insertions(+) diff --git a/share/node-build/23.0.0 b/share/node-build/23.0.0 index d8b5d4fd..7217e57d 100644 --- a/share/node-build/23.0.0 +++ b/share/node-build/23.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-aix-ppc64.tar.gz#1dd33c1cf52d16829283af113e90b5d1e8813ba6c8e1bef3f2808160fa078d93" binary darwin-arm64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-darwin-arm64.tar.gz#72ce7905b83f9499b92501675cf76e53b545cb9d0a42dca497fa80c8eb5fbcf9" binary darwin-x64 "https://nodejs.org/dist/v23.0.0/node-v23.0.0-darwin-x64.tar.gz#13915842f15bc32f76a24f8ea17fd43d650898d12d21c7b676b01d0e00dcb7fd" diff --git a/share/node-build/23.1.0 b/share/node-build/23.1.0 index c5cb30ad..b0c1493b 100644 --- a/share/node-build/23.1.0 +++ b/share/node-build/23.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-aix-ppc64.tar.gz#e153fef6a3e71d92b2314d2f56c4a9ca0699e8614493c246cf6be6a09f6197b1" binary darwin-arm64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-darwin-arm64.tar.gz#414d4b68299be0cbccfabfac59e53d0726151320e9ff71457ab0bb507fc0592d" binary darwin-x64 "https://nodejs.org/dist/v23.1.0/node-v23.1.0-darwin-x64.tar.gz#cb84bd83064ff75f63dd95f1a53b6f7f2d2d36c67e03e9e9c87cfa2b977511b6" diff --git a/share/node-build/23.10.0 b/share/node-build/23.10.0 index 7164cb13..6f9b0d07 100644 --- a/share/node-build/23.10.0 +++ b/share/node-build/23.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-aix-ppc64.tar.gz#269cc2c2ec25228285a9f4221567a9d501171958ad3a3a468ea4d5b422b6df23" binary darwin-arm64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-darwin-arm64.tar.gz#f44ff5990735df42c79820654e2e394b6351ac9fd5eb140c3cae953cf7af302c" binary darwin-x64 "https://nodejs.org/dist/v23.10.0/node-v23.10.0-darwin-x64.tar.gz#6c60ebd659dddca673ae7deff9e8e1cc4048f81a6311811a98ba4fe98372275f" diff --git a/share/node-build/23.2.0 b/share/node-build/23.2.0 index 6362be02..4f393a70 100644 --- a/share/node-build/23.2.0 +++ b/share/node-build/23.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-aix-ppc64.tar.gz#43e0c6a6ef0c123e33a9af2f055516c4170a58e26b473fff273c8bdbf0518c6b" binary darwin-arm64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-darwin-arm64.tar.gz#0a4c1379f81b02cb724b7f69b7e2fdf8a4765d98710ae8e05c4ee2da85a54f94" binary darwin-x64 "https://nodejs.org/dist/v23.2.0/node-v23.2.0-darwin-x64.tar.gz#5d5c8150b5b8dd31930f029535ccee06b259c2d75db8c78f7f33a7fa8b8152a7" diff --git a/share/node-build/23.3.0 b/share/node-build/23.3.0 index 9778aa97..064852b2 100644 --- a/share/node-build/23.3.0 +++ b/share/node-build/23.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-aix-ppc64.tar.gz#7573dd593cc56600ef573be8c5020ea82847ff26ad0fe94c0fa08470ba2e95ea" binary darwin-arm64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-darwin-arm64.tar.gz#472b9109dd9987ea49916f12b01ed2f09f1c4bf4befcf5695c1b9fd9cff3d177" binary darwin-x64 "https://nodejs.org/dist/v23.3.0/node-v23.3.0-darwin-x64.tar.gz#d1898f7901277968b78066f6b512cbc3bd7f2406950377826f9d8e02d4e24fe6" diff --git a/share/node-build/23.4.0 b/share/node-build/23.4.0 index 3a1ccdc4..cccafcc7 100644 --- a/share/node-build/23.4.0 +++ b/share/node-build/23.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-aix-ppc64.tar.gz#686f245ea6aefb46e6807cffa66ba6db5f3dad4b557434c2e81e402774c810f9" binary darwin-arm64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-darwin-arm64.tar.gz#06623a5bf78ceedc56a7bed6c299d78fc8c8724fe96b963392fddf9b20d854de" binary darwin-x64 "https://nodejs.org/dist/v23.4.0/node-v23.4.0-darwin-x64.tar.gz#5784c98d6710c0370f41243201d1684635d737ee8e6a40ea6f76b2b392cff396" diff --git a/share/node-build/23.5.0 b/share/node-build/23.5.0 index 73575991..05984667 100644 --- a/share/node-build/23.5.0 +++ b/share/node-build/23.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-aix-ppc64.tar.gz#5b487cdc9b490fb617201e4bc8b5ac247c1871fa8108857e6868e12527d6df19" binary darwin-arm64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-darwin-arm64.tar.gz#71b1ca0e4d776b9b7648781303d8c5eb12be32c5ed0df4f97a26fd779bc7ef80" binary darwin-x64 "https://nodejs.org/dist/v23.5.0/node-v23.5.0-darwin-x64.tar.gz#887506572511e4b90e4aab044db491ac4836c014904ae7537a9ca5c11b47c26d" diff --git a/share/node-build/23.6.0 b/share/node-build/23.6.0 index 6e0e4561..674a71e3 100644 --- a/share/node-build/23.6.0 +++ b/share/node-build/23.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-aix-ppc64.tar.gz#6320c05068ec7d34997d11a343eab0360ff7c59711c69116446056918c868b45" binary darwin-arm64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-darwin-arm64.tar.gz#93e84485e41e7f35246e11329ea920ee5a8e7e12e90bfcea2f8205953c869bc2" binary darwin-x64 "https://nodejs.org/dist/v23.6.0/node-v23.6.0-darwin-x64.tar.gz#009f4b4955ddbebaad86e306ad4c65b568f06fd76d855e7fd617eb2748cd5f2d" diff --git a/share/node-build/23.6.1 b/share/node-build/23.6.1 index 5f642bbf..4d582a64 100644 --- a/share/node-build/23.6.1 +++ b/share/node-build/23.6.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-aix-ppc64.tar.gz#1a05b4193005a912b99674ee1198808ed3b38850224928a8966e298a33b50471" binary darwin-arm64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-darwin-arm64.tar.gz#b87c90f1efff3f2f49070ce4714a11228a43331bb590b06fc7bcb36e530b2ea0" binary darwin-x64 "https://nodejs.org/dist/v23.6.1/node-v23.6.1-darwin-x64.tar.gz#bcdc29188f2d8d7a129b88a6c19830ac91e53e64c3744b18f412dce533f67ef7" diff --git a/share/node-build/23.7.0 b/share/node-build/23.7.0 index c88b9425..96852609 100644 --- a/share/node-build/23.7.0 +++ b/share/node-build/23.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-aix-ppc64.tar.gz#798c6290890c79647af8614a85cffce0d6ee0a40dd1e5ba66cff2a1a3192dc9c" binary darwin-arm64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-darwin-arm64.tar.gz#0dac0de3308a87f84cb14bab349a3f0ae5f6cdb8da32600459ee407236f9cebc" binary darwin-x64 "https://nodejs.org/dist/v23.7.0/node-v23.7.0-darwin-x64.tar.gz#d32b53d95a42a64388486490e7c3f6a23f00ae3bf6175c64c200954cd41ef2ba" diff --git a/share/node-build/23.8.0 b/share/node-build/23.8.0 index bcca28fb..ea3838c4 100644 --- a/share/node-build/23.8.0 +++ b/share/node-build/23.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-aix-ppc64.tar.gz#7fefc7b97a47364a096d882f0ee3c43b4aa79fc472b17dc3ab3559da88cc48a7" binary darwin-arm64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-darwin-arm64.tar.gz#7c3bb4ccfd558f5cc12ffb81df795c5960e429088feb1ae650fa2ae65418858a" binary darwin-x64 "https://nodejs.org/dist/v23.8.0/node-v23.8.0-darwin-x64.tar.gz#a4c93b517d51d368248e9fddd20bc46ba1f6081df2a55d267a33015a4ab31886" diff --git a/share/node-build/23.9.0 b/share/node-build/23.9.0 index a5009c58..029b3f7b 100644 --- a/share/node-build/23.9.0 +++ b/share/node-build/23.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + binary aix-ppc64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-aix-ppc64.tar.gz#5837acfdfa601ba46163a01ef6ad53a2f6c6283cc9fc336db1145ec466220f68" binary darwin-arm64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-darwin-arm64.tar.gz#02fea0822268b245066e895a20a0c530f750a710517ac9faafdc0f1cd4434994" binary darwin-x64 "https://nodejs.org/dist/v23.9.0/node-v23.9.0-darwin-x64.tar.gz#535d8ed9d5e6a59f46df4e518e2940d5701e17ae795600815a702e8233552240" From 7dd9ef4ee62fc41022493e80009ae7ed07a02ddd Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 3 Apr 2025 15:16:34 +0000 Subject: [PATCH 063/156] 18.20.8 Created with `npm run submit-definitions`. --- share/node-build/18.20.8 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/18.20.8 diff --git a/share/node-build/18.20.8 b/share/node-build/18.20.8 new file mode 100644 index 00000000..881d96f0 --- /dev/null +++ b/share/node-build/18.20.8 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v18.20.8/node-v18.20.8-aix-ppc64.tar.gz#5a962ef966f9548117dea4d57615012efc6386a7b55c9a12c16fd7e674af375b" +binary darwin-arm64 "https://nodejs.org/dist/v18.20.8/node-v18.20.8-darwin-arm64.tar.gz#bae4965d29d29bd32f96364eefbe3bca576a03e917ddbb70b9330d75f2cacd76" +binary darwin-x64 "https://nodejs.org/dist/v18.20.8/node-v18.20.8-darwin-x64.tar.gz#ed2554677188f4afc0d050ecd8bd56effb2572d6518f8da6d40321ede6698509" +binary linux-arm64 "https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-arm64.tar.gz#2e3dfc51154e6fea9fc86a90c4ea8f3ecb8b60acaf7367c4b76691da192571c1" +binary linux-armv7l "https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-armv7l.tar.gz#d09ea19ff5eb7b0ff47d80316c708092ac401c138254e018e21b89bb6ed9abd0" +binary linux-ppc64le "https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-ppc64le.tar.gz#3c0c7e5f414c2123b185924e3afac3bc6fcc3edbe14ec2782e9d5210a76d8b8e" +binary linux-s390x "https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-s390x.tar.gz#6db3d48cabcb22f1f4af29633431b62d1040099a6e27182ad9f018c90f09d65b" +binary linux-x64 "https://nodejs.org/dist/v18.20.8/node-v18.20.8-linux-x64.tar.gz#27a9f3f14d5e99ad05a07ed3524ba3ee92f8ff8b6db5ff80b00f9feb5ec8097a" + +install_package "node-v18.20.8" "https://nodejs.org/dist/v18.20.8/node-v18.20.8.tar.gz#ec60a6d2344ef9e1f093991ca1bb6bbe92c61c29d1762c4b99e08f87dbb91e2f" From 14222f289df87007cfab72957e7fb78f70171e45 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 3 Apr 2025 15:16:34 +0000 Subject: [PATCH 064/156] 23.11.0 Created with `npm run submit-definitions`. --- share/node-build/23.11.0 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/23.11.0 diff --git a/share/node-build/23.11.0 b/share/node-build/23.11.0 new file mode 100644 index 00000000..fbc44954 --- /dev/null +++ b/share/node-build/23.11.0 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v23.11.0/node-v23.11.0-aix-ppc64.tar.gz#281c642514a14bc326b2b4953acef169dd20aac78d138607b778eabf5521a2b6" +binary darwin-arm64 "https://nodejs.org/dist/v23.11.0/node-v23.11.0-darwin-arm64.tar.gz#635990b46610238e3c008cd01480c296e0c2bfe7ec59ea9a8cd789d5ac621bb0" +binary darwin-x64 "https://nodejs.org/dist/v23.11.0/node-v23.11.0-darwin-x64.tar.gz#a5782655748d4602c1ee1ee62732e0a16d29d3e4faac844db395b0fbb1c9dab8" +binary linux-arm64 "https://nodejs.org/dist/v23.11.0/node-v23.11.0-linux-arm64.tar.gz#12b29a87a7ccd7e1b97392d1e1533470d596578dad900430cff403e404fe72a7" +binary linux-armv7l "https://nodejs.org/dist/v23.11.0/node-v23.11.0-linux-armv7l.tar.gz#f20ced60e7f5b0136582ac7e3f5b2dafb4e320332dba81abb450e1f50ea64da4" +binary linux-ppc64le "https://nodejs.org/dist/v23.11.0/node-v23.11.0-linux-ppc64le.tar.gz#7fd70c5470d782dd03c31ca45505e563e6958e21790a8c7bf12a4c0fdd62b010" +binary linux-s390x "https://nodejs.org/dist/v23.11.0/node-v23.11.0-linux-s390x.tar.gz#3535e5ca971b9163c5f1b0232ea1a3c827bfcbe2cc0627458d43087e337934b8" +binary linux-x64 "https://nodejs.org/dist/v23.11.0/node-v23.11.0-linux-x64.tar.gz#66f768a7f2d89ecdda8fe1e33ee71ac04ed9180111cbf1c5fb944655fe7c90c7" + +install_package "node-v23.11.0" "https://nodejs.org/dist/v23.11.0/node-v23.11.0.tar.gz#0080beb9a481e2536543f70b59880093cb6c42470092efad8193563219efdc80" From 96f9efa0ef22e7e3cd630054bdca5fee3110d181 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 3 Apr 2025 15:21:22 +0000 Subject: [PATCH 065/156] 5.3.32 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 6e7133bc..e706396e 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.31 +NODE_BUILD_VERSION=5.3.32 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 0452b835..e8c431d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.31", + "version": "5.3.32", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.31", + "version": "5.3.32", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 30600bca..21f321b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.31", + "version": "5.3.32", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 9649bc3fc6fa9c069d35ae3be1e1b2b2e2c959d3 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 22 Apr 2025 12:49:53 +0000 Subject: [PATCH 066/156] 20.19.1 Created with `npm run submit-definitions`. --- share/node-build/20.19.1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.1 diff --git a/share/node-build/20.19.1 b/share/node-build/20.19.1 new file mode 100644 index 00000000..f5da10f2 --- /dev/null +++ b/share/node-build/20.19.1 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.1/node-v20.19.1-aix-ppc64.tar.gz#0a303961d5910a3c35258e7f984ba1dd49fe95450134feccd6b28b274eb9656b" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.1/node-v20.19.1-darwin-arm64.tar.gz#d3746fee0e00e3a7fedf50633f8e04adb6873b1fe9b5b50c37dff16f64a4f2c7" +binary darwin-x64 "https://nodejs.org/dist/v20.19.1/node-v20.19.1-darwin-x64.tar.gz#f4963877f026cca411b537029cee01d1fde6d3293cfb88d77096794cb89c866b" +binary linux-arm64 "https://nodejs.org/dist/v20.19.1/node-v20.19.1-linux-arm64.tar.gz#f8fac0cc6cb06b4e443febda59178d5a6c6a5379e0194e6d156d3d3116e75b5f" +binary linux-armv7l "https://nodejs.org/dist/v20.19.1/node-v20.19.1-linux-armv7l.tar.gz#8bcb0c923f0c6ebd0e4e635fb8765bf1a02b64a5f9a679a4fa94cd9f53e5ee74" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.1/node-v20.19.1-linux-ppc64le.tar.gz#e9f603f6494a453164dcd9ede175d14ea13e61838881dc0944cf230ff5d68c69" +binary linux-s390x "https://nodejs.org/dist/v20.19.1/node-v20.19.1-linux-s390x.tar.gz#062c526695ed64cacab20d266b0a993ce264ee3e1fe5da007a51ba98357c7321" +binary linux-x64 "https://nodejs.org/dist/v20.19.1/node-v20.19.1-linux-x64.tar.gz#086ab500a98900a4c05127559b2cec4d659b3aa674453be5028d416de4eb1532" + +install_package "node-v20.19.1" "https://nodejs.org/dist/v20.19.1/node-v20.19.1.tar.gz#691011ddb85c9ab86afb7ead2b6db2ddd45592f1c8fd26687d152dcadc182229" From 4c2d9bbf7cc9dfcd9e4909e69a7433c4c2761670 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 23 Apr 2025 10:11:39 +0000 Subject: [PATCH 067/156] 5.3.33 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index e706396e..de4981cd 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.32 +NODE_BUILD_VERSION=5.3.33 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index e8c431d1..4a56e778 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.32", + "version": "5.3.33", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.32", + "version": "5.3.33", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 21f321b5..b4a380a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.32", + "version": "5.3.33", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 228eab3697c39cc3b8e7be4abfa94c7fa22c376e Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 23 Apr 2025 12:51:00 +0000 Subject: [PATCH 068/156] 22.15.0 Created with `npm run submit-definitions`. --- share/node-build/22.15.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.15.0 diff --git a/share/node-build/22.15.0 b/share/node-build/22.15.0 new file mode 100644 index 00000000..1af92b38 --- /dev/null +++ b/share/node-build/22.15.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.15.0/node-v22.15.0-aix-ppc64.tar.gz#049718cc0ce4f58de90f7b752b82a78868a21fe7685af1c603ba1d22ae8a4d67" +binary darwin-arm64 "https://nodejs.org/dist/v22.15.0/node-v22.15.0-darwin-arm64.tar.gz#92eb58f54d172ed9dee320b8450f1390db629d4262c936d5c074b25a110fed02" +binary darwin-x64 "https://nodejs.org/dist/v22.15.0/node-v22.15.0-darwin-x64.tar.gz#f7f42bee60d602783d3a842f0a02a2ecd9cb9d7f6f3088686c79295b0222facf" +binary linux-arm64 "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-arm64.tar.gz#c3582722db988ed1eaefd590b877b86aaace65f68746726c1f8c79d26e5cc7de" +binary linux-armv7l "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-armv7l.tar.gz#639a3ee3217049ba20e6f05651c7281a9d007111196387eb177081af8851e52f" +binary linux-ppc64le "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-ppc64le.tar.gz#a744107732546a3b112630cde1cc2db681559668cea36bee851348ed036c101c" +binary linux-s390x "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-s390x.tar.gz#600afa22128e5d1b7d472109b8f9f93ace161dab3c1a8a642895675471916d86" +binary linux-x64 "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-x64.tar.gz#29d1c60c5b64ccdb0bc4e5495135e68e08a872e0ae91f45d9ec34fc135a17981" + +install_package "node-v22.15.0" "https://nodejs.org/dist/v22.15.0/node-v22.15.0.tar.gz#8e64edbc70a7188873e0f4f07c812fa747c27c477d558b23dcb135bdf5e32298" From dd054cc6230d842a7b907d9f7eeaea65c113c47d Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 23 Apr 2025 14:35:22 +0000 Subject: [PATCH 069/156] 5.3.34 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index de4981cd..ae526f84 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.33 +NODE_BUILD_VERSION=5.3.34 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 4a56e778..0063cbfe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.33", + "version": "5.3.34", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.33", + "version": "5.3.34", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index b4a380a6..1f65029b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.33", + "version": "5.3.34", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 36d06e3937216640e4adc1f6f9cdb55a58edc65d Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Apr 2025 10:45:17 -0400 Subject: [PATCH 070/156] Bump version when defs are modified on main --- .github/workflows/version.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 586b96ac..67e3eccc 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -1,5 +1,6 @@ name: Version Bump on: + push: { branches: main, paths: [share/node-build]} schedule: [{ cron: '0 10 * * *' }] # daily: https://crontab.guru/#0_10_*_*_* workflow_dispatch: inputs: From f3103086e7eb39dfa355be05f342663eff835b33 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Apr 2025 10:48:57 -0400 Subject: [PATCH 071/156] Update version.yml --- .github/workflows/version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 67e3eccc..0ad949e2 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -1,6 +1,6 @@ name: Version Bump on: - push: { branches: main, paths: [share/node-build]} + push: { branches: main, paths: share/node-build} schedule: [{ cron: '0 10 * * *' }] # daily: https://crontab.guru/#0_10_*_*_* workflow_dispatch: inputs: From 28a428a1290e3b756309acc56c1e92a1d1fe6d0f Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Thu, 1 May 2025 02:08:17 +0000 Subject: [PATCH 072/156] Add LTS warning messages --- share/node-build/18.0.0 | 5 +++++ share/node-build/18.1.0 | 5 +++++ share/node-build/18.10.0 | 5 +++++ share/node-build/18.11.0 | 5 +++++ share/node-build/18.12.0 | 5 +++++ share/node-build/18.12.1 | 5 +++++ share/node-build/18.13.0 | 5 +++++ share/node-build/18.14.0 | 5 +++++ share/node-build/18.14.1 | 5 +++++ share/node-build/18.14.2 | 5 +++++ share/node-build/18.15.0 | 5 +++++ share/node-build/18.16.0 | 5 +++++ share/node-build/18.16.1 | 5 +++++ share/node-build/18.17.0 | 5 +++++ share/node-build/18.17.1 | 5 +++++ share/node-build/18.18.0 | 5 +++++ share/node-build/18.18.1 | 5 +++++ share/node-build/18.18.2 | 5 +++++ share/node-build/18.19.0 | 5 +++++ share/node-build/18.19.1 | 5 +++++ share/node-build/18.2.0 | 5 +++++ share/node-build/18.20.0 | 5 +++++ share/node-build/18.20.1 | 5 +++++ share/node-build/18.20.2 | 5 +++++ share/node-build/18.20.3 | 5 +++++ share/node-build/18.20.4 | 5 +++++ share/node-build/18.20.5 | 5 +++++ share/node-build/18.20.6 | 5 +++++ share/node-build/18.20.7 | 5 +++++ share/node-build/18.20.8 | 5 +++++ share/node-build/18.3.0 | 5 +++++ share/node-build/18.4.0 | 5 +++++ share/node-build/18.5.0 | 5 +++++ share/node-build/18.6.0 | 5 +++++ share/node-build/18.7.0 | 5 +++++ share/node-build/18.8.0 | 5 +++++ share/node-build/18.9.0 | 5 +++++ share/node-build/18.9.1 | 5 +++++ share/node-build/18.x-dev | 5 +++++ share/node-build/18.x-next | 5 +++++ 40 files changed, 200 insertions(+) diff --git a/share/node-build/18.0.0 b/share/node-build/18.0.0 index 10e26f31..33f3c10d 100644 --- a/share/node-build/18.0.0 +++ b/share/node-build/18.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.1.0 b/share/node-build/18.1.0 index 6c610f53..f61ec6bb 100644 --- a/share/node-build/18.1.0 +++ b/share/node-build/18.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.10.0 b/share/node-build/18.10.0 index a903a0f7..87d52cb1 100644 --- a/share/node-build/18.10.0 +++ b/share/node-build/18.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.11.0 b/share/node-build/18.11.0 index 1806e794..11ecc15b 100644 --- a/share/node-build/18.11.0 +++ b/share/node-build/18.11.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.12.0 b/share/node-build/18.12.0 index 3e386f16..b06026e8 100644 --- a/share/node-build/18.12.0 +++ b/share/node-build/18.12.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.12.1 b/share/node-build/18.12.1 index afa64766..3cc1da78 100644 --- a/share/node-build/18.12.1 +++ b/share/node-build/18.12.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.13.0 b/share/node-build/18.13.0 index 92f170d5..d1797287 100644 --- a/share/node-build/18.13.0 +++ b/share/node-build/18.13.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.0 b/share/node-build/18.14.0 index 9773a589..e4f59081 100644 --- a/share/node-build/18.14.0 +++ b/share/node-build/18.14.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.1 b/share/node-build/18.14.1 index 24c9aa32..f7d3a596 100644 --- a/share/node-build/18.14.1 +++ b/share/node-build/18.14.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.2 b/share/node-build/18.14.2 index 8fdf4320..f29603e2 100644 --- a/share/node-build/18.14.2 +++ b/share/node-build/18.14.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.15.0 b/share/node-build/18.15.0 index c2c3da2b..f072faea 100644 --- a/share/node-build/18.15.0 +++ b/share/node-build/18.15.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.16.0 b/share/node-build/18.16.0 index a7c24a2f..6d88e950 100644 --- a/share/node-build/18.16.0 +++ b/share/node-build/18.16.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.16.1 b/share/node-build/18.16.1 index bc62e12f..3c1a42fd 100644 --- a/share/node-build/18.16.1 +++ b/share/node-build/18.16.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.17.0 b/share/node-build/18.17.0 index 104b5ead..7a2111cf 100644 --- a/share/node-build/18.17.0 +++ b/share/node-build/18.17.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.17.1 b/share/node-build/18.17.1 index f9016499..df8c600b 100644 --- a/share/node-build/18.17.1 +++ b/share/node-build/18.17.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.0 b/share/node-build/18.18.0 index 122755ae..897fe718 100644 --- a/share/node-build/18.18.0 +++ b/share/node-build/18.18.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.1 b/share/node-build/18.18.1 index aad1176a..0705552d 100644 --- a/share/node-build/18.18.1 +++ b/share/node-build/18.18.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.2 b/share/node-build/18.18.2 index e23f0538..87dddffb 100644 --- a/share/node-build/18.18.2 +++ b/share/node-build/18.18.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.19.0 b/share/node-build/18.19.0 index afd5a90c..6e5f824a 100644 --- a/share/node-build/18.19.0 +++ b/share/node-build/18.19.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.19.1 b/share/node-build/18.19.1 index e5cd28b7..bc540afc 100644 --- a/share/node-build/18.19.1 +++ b/share/node-build/18.19.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.2.0 b/share/node-build/18.2.0 index e3992c26..1c4534b5 100644 --- a/share/node-build/18.2.0 +++ b/share/node-build/18.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.0 b/share/node-build/18.20.0 index 08539d0d..6f12e687 100644 --- a/share/node-build/18.20.0 +++ b/share/node-build/18.20.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.1 b/share/node-build/18.20.1 index c5b94f27..daa05b89 100644 --- a/share/node-build/18.20.1 +++ b/share/node-build/18.20.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.2 b/share/node-build/18.20.2 index 499487a0..4ead33fe 100644 --- a/share/node-build/18.20.2 +++ b/share/node-build/18.20.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.3 b/share/node-build/18.20.3 index 8e8e6aba..465b8e75 100644 --- a/share/node-build/18.20.3 +++ b/share/node-build/18.20.3 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.4 b/share/node-build/18.20.4 index 4e9c5dd5..107ed572 100644 --- a/share/node-build/18.20.4 +++ b/share/node-build/18.20.4 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.5 b/share/node-build/18.20.5 index 35996f1b..01bc1810 100644 --- a/share/node-build/18.20.5 +++ b/share/node-build/18.20.5 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.6 b/share/node-build/18.20.6 index 20ad7645..29545afe 100644 --- a/share/node-build/18.20.6 +++ b/share/node-build/18.20.6 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.7 b/share/node-build/18.20.7 index 8ca7ee9d..dc030308 100644 --- a/share/node-build/18.20.7 +++ b/share/node-build/18.20.7 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.8 b/share/node-build/18.20.8 index 881d96f0..4c148a6d 100644 --- a/share/node-build/18.20.8 +++ b/share/node-build/18.20.8 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.3.0 b/share/node-build/18.3.0 index b33582b6..e5e20bec 100644 --- a/share/node-build/18.3.0 +++ b/share/node-build/18.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.4.0 b/share/node-build/18.4.0 index 91289c2f..e2e7d678 100644 --- a/share/node-build/18.4.0 +++ b/share/node-build/18.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.5.0 b/share/node-build/18.5.0 index df88f616..4c709199 100644 --- a/share/node-build/18.5.0 +++ b/share/node-build/18.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.6.0 b/share/node-build/18.6.0 index 95075f53..0921abc6 100644 --- a/share/node-build/18.6.0 +++ b/share/node-build/18.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.7.0 b/share/node-build/18.7.0 index c079356b..6e67a5e1 100644 --- a/share/node-build/18.7.0 +++ b/share/node-build/18.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.8.0 b/share/node-build/18.8.0 index 4b809cda..a4ccae5a 100644 --- a/share/node-build/18.8.0 +++ b/share/node-build/18.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.9.0 b/share/node-build/18.9.0 index 447dc2c7..7b812856 100644 --- a/share/node-build/18.9.0 +++ b/share/node-build/18.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.9.1 b/share/node-build/18.9.1 index 33f3ccb2..e327f9d0 100644 --- a/share/node-build/18.9.1 +++ b/share/node-build/18.9.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.x-dev b/share/node-build/18.x-dev index e2bf1350..84fa6b46 100644 --- a/share/node-build/18.x-dev +++ b/share/node-build/18.x-dev @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.x-next b/share/node-build/18.x-next index 81ef1734..a07e7e6b 100644 --- a/share/node-build/18.x-next +++ b/share/node-build/18.x-next @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } From 305e6b2ed9d4b2c6f4b634b10d0f17177c387e57 Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Thu, 1 May 2025 02:08:22 +0000 Subject: [PATCH 073/156] [create-pull-request] automated change --- share/node-build/18.0.0 | 5 +++++ share/node-build/18.1.0 | 5 +++++ share/node-build/18.10.0 | 5 +++++ share/node-build/18.11.0 | 5 +++++ share/node-build/18.12.0 | 5 +++++ share/node-build/18.12.1 | 5 +++++ share/node-build/18.13.0 | 5 +++++ share/node-build/18.14.0 | 5 +++++ share/node-build/18.14.1 | 5 +++++ share/node-build/18.14.2 | 5 +++++ share/node-build/18.15.0 | 5 +++++ share/node-build/18.16.0 | 5 +++++ share/node-build/18.16.1 | 5 +++++ share/node-build/18.17.0 | 5 +++++ share/node-build/18.17.1 | 5 +++++ share/node-build/18.18.0 | 5 +++++ share/node-build/18.18.1 | 5 +++++ share/node-build/18.18.2 | 5 +++++ share/node-build/18.19.0 | 5 +++++ share/node-build/18.19.1 | 5 +++++ share/node-build/18.2.0 | 5 +++++ share/node-build/18.20.0 | 5 +++++ share/node-build/18.20.1 | 5 +++++ share/node-build/18.20.2 | 5 +++++ share/node-build/18.20.3 | 5 +++++ share/node-build/18.20.4 | 5 +++++ share/node-build/18.20.5 | 5 +++++ share/node-build/18.20.6 | 5 +++++ share/node-build/18.20.7 | 5 +++++ share/node-build/18.20.8 | 5 +++++ share/node-build/18.3.0 | 5 +++++ share/node-build/18.4.0 | 5 +++++ share/node-build/18.5.0 | 5 +++++ share/node-build/18.6.0 | 5 +++++ share/node-build/18.7.0 | 5 +++++ share/node-build/18.8.0 | 5 +++++ share/node-build/18.9.0 | 5 +++++ share/node-build/18.9.1 | 5 +++++ share/node-build/18.x-dev | 5 +++++ share/node-build/18.x-next | 5 +++++ 40 files changed, 200 insertions(+) diff --git a/share/node-build/18.0.0 b/share/node-build/18.0.0 index 10e26f31..33f3c10d 100644 --- a/share/node-build/18.0.0 +++ b/share/node-build/18.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.1.0 b/share/node-build/18.1.0 index 6c610f53..f61ec6bb 100644 --- a/share/node-build/18.1.0 +++ b/share/node-build/18.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.10.0 b/share/node-build/18.10.0 index a903a0f7..87d52cb1 100644 --- a/share/node-build/18.10.0 +++ b/share/node-build/18.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.11.0 b/share/node-build/18.11.0 index 1806e794..11ecc15b 100644 --- a/share/node-build/18.11.0 +++ b/share/node-build/18.11.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.12.0 b/share/node-build/18.12.0 index 3e386f16..b06026e8 100644 --- a/share/node-build/18.12.0 +++ b/share/node-build/18.12.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.12.1 b/share/node-build/18.12.1 index afa64766..3cc1da78 100644 --- a/share/node-build/18.12.1 +++ b/share/node-build/18.12.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.13.0 b/share/node-build/18.13.0 index 92f170d5..d1797287 100644 --- a/share/node-build/18.13.0 +++ b/share/node-build/18.13.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.0 b/share/node-build/18.14.0 index 9773a589..e4f59081 100644 --- a/share/node-build/18.14.0 +++ b/share/node-build/18.14.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.1 b/share/node-build/18.14.1 index 24c9aa32..f7d3a596 100644 --- a/share/node-build/18.14.1 +++ b/share/node-build/18.14.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.14.2 b/share/node-build/18.14.2 index 8fdf4320..f29603e2 100644 --- a/share/node-build/18.14.2 +++ b/share/node-build/18.14.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.15.0 b/share/node-build/18.15.0 index c2c3da2b..f072faea 100644 --- a/share/node-build/18.15.0 +++ b/share/node-build/18.15.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.16.0 b/share/node-build/18.16.0 index a7c24a2f..6d88e950 100644 --- a/share/node-build/18.16.0 +++ b/share/node-build/18.16.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.16.1 b/share/node-build/18.16.1 index bc62e12f..3c1a42fd 100644 --- a/share/node-build/18.16.1 +++ b/share/node-build/18.16.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.17.0 b/share/node-build/18.17.0 index 104b5ead..7a2111cf 100644 --- a/share/node-build/18.17.0 +++ b/share/node-build/18.17.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.17.1 b/share/node-build/18.17.1 index f9016499..df8c600b 100644 --- a/share/node-build/18.17.1 +++ b/share/node-build/18.17.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.0 b/share/node-build/18.18.0 index 122755ae..897fe718 100644 --- a/share/node-build/18.18.0 +++ b/share/node-build/18.18.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.1 b/share/node-build/18.18.1 index aad1176a..0705552d 100644 --- a/share/node-build/18.18.1 +++ b/share/node-build/18.18.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.18.2 b/share/node-build/18.18.2 index e23f0538..87dddffb 100644 --- a/share/node-build/18.18.2 +++ b/share/node-build/18.18.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.19.0 b/share/node-build/18.19.0 index afd5a90c..6e5f824a 100644 --- a/share/node-build/18.19.0 +++ b/share/node-build/18.19.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.19.1 b/share/node-build/18.19.1 index e5cd28b7..bc540afc 100644 --- a/share/node-build/18.19.1 +++ b/share/node-build/18.19.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.2.0 b/share/node-build/18.2.0 index e3992c26..1c4534b5 100644 --- a/share/node-build/18.2.0 +++ b/share/node-build/18.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.0 b/share/node-build/18.20.0 index 08539d0d..6f12e687 100644 --- a/share/node-build/18.20.0 +++ b/share/node-build/18.20.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.1 b/share/node-build/18.20.1 index c5b94f27..daa05b89 100644 --- a/share/node-build/18.20.1 +++ b/share/node-build/18.20.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.2 b/share/node-build/18.20.2 index 499487a0..4ead33fe 100644 --- a/share/node-build/18.20.2 +++ b/share/node-build/18.20.2 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.3 b/share/node-build/18.20.3 index 8e8e6aba..465b8e75 100644 --- a/share/node-build/18.20.3 +++ b/share/node-build/18.20.3 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.4 b/share/node-build/18.20.4 index 4e9c5dd5..107ed572 100644 --- a/share/node-build/18.20.4 +++ b/share/node-build/18.20.4 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.5 b/share/node-build/18.20.5 index 35996f1b..01bc1810 100644 --- a/share/node-build/18.20.5 +++ b/share/node-build/18.20.5 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.6 b/share/node-build/18.20.6 index 20ad7645..29545afe 100644 --- a/share/node-build/18.20.6 +++ b/share/node-build/18.20.6 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.7 b/share/node-build/18.20.7 index 8ca7ee9d..dc030308 100644 --- a/share/node-build/18.20.7 +++ b/share/node-build/18.20.7 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.20.8 b/share/node-build/18.20.8 index 881d96f0..4c148a6d 100644 --- a/share/node-build/18.20.8 +++ b/share/node-build/18.20.8 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.3.0 b/share/node-build/18.3.0 index b33582b6..e5e20bec 100644 --- a/share/node-build/18.3.0 +++ b/share/node-build/18.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.4.0 b/share/node-build/18.4.0 index 91289c2f..e2e7d678 100644 --- a/share/node-build/18.4.0 +++ b/share/node-build/18.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.5.0 b/share/node-build/18.5.0 index df88f616..4c709199 100644 --- a/share/node-build/18.5.0 +++ b/share/node-build/18.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.6.0 b/share/node-build/18.6.0 index 95075f53..0921abc6 100644 --- a/share/node-build/18.6.0 +++ b/share/node-build/18.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.7.0 b/share/node-build/18.7.0 index c079356b..6e67a5e1 100644 --- a/share/node-build/18.7.0 +++ b/share/node-build/18.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.8.0 b/share/node-build/18.8.0 index 4b809cda..a4ccae5a 100644 --- a/share/node-build/18.8.0 +++ b/share/node-build/18.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.9.0 b/share/node-build/18.9.0 index 447dc2c7..7b812856 100644 --- a/share/node-build/18.9.0 +++ b/share/node-build/18.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.9.1 b/share/node-build/18.9.1 index 33f3ccb2..e327f9d0 100644 --- a/share/node-build/18.9.1 +++ b/share/node-build/18.9.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.x-dev b/share/node-build/18.x-dev index e2bf1350..84fa6b46 100644 --- a/share/node-build/18.x-dev +++ b/share/node-build/18.x-dev @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/18.x-next b/share/node-build/18.x-next index 81ef1734..a07e7e6b 100644 --- a/share/node-build/18.x-next +++ b/share/node-build/18.x-next @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } From c40295367d3d1ac716c4a23487d284325812ae01 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 1 May 2025 03:06:01 +0000 Subject: [PATCH 074/156] 5.3.35 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index ae526f84..226d08ee 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.34 +NODE_BUILD_VERSION=5.3.35 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 0063cbfe..9e507cfc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.34", + "version": "5.3.35", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.34", + "version": "5.3.35", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 1f65029b..dc80d9fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.34", + "version": "5.3.35", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 78bb5b3227c56aebad8186275d3b49c37c06ae68 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 9 May 2025 02:01:06 +0000 Subject: [PATCH 075/156] 24.0.0 Created with `npm run submit-definitions`. --- share/node-build/24.0.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.0.0 diff --git a/share/node-build/24.0.0 b/share/node-build/24.0.0 new file mode 100644 index 00000000..7ade175c --- /dev/null +++ b/share/node-build/24.0.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.0.0/node-v24.0.0-aix-ppc64.tar.gz#0befccb7064fd8430adc6cc749cf1df5be592c704d876ec0964c310cd36291f5" +binary darwin-arm64 "https://nodejs.org/dist/v24.0.0/node-v24.0.0-darwin-arm64.tar.gz#194e2f3dd3ec8c2adcaa713ed40f44c5ca38467880e160974ceac1659be60121" +binary darwin-x64 "https://nodejs.org/dist/v24.0.0/node-v24.0.0-darwin-x64.tar.gz#f716b3ce14a7e37a6cbf97c9de10d444d7da07ef833cd8da81dd944d111e6a4a" +binary linux-arm64 "https://nodejs.org/dist/v24.0.0/node-v24.0.0-linux-arm64.tar.gz#4104136ddd3d2f167d799f1b21bac72ccf500d80c24be849195f831df6371b83" +binary linux-ppc64le "https://nodejs.org/dist/v24.0.0/node-v24.0.0-linux-ppc64le.tar.gz#04654c22d8f9fc3021a27f37a95c16f820870908a49cd361f4cf74ed14509a10" +binary linux-s390x "https://nodejs.org/dist/v24.0.0/node-v24.0.0-linux-s390x.tar.gz#aa6fa7c5dc7d699116a39a781eb1685a68e3843d2d95bcd98527fd28922de63a" +binary linux-x64 "https://nodejs.org/dist/v24.0.0/node-v24.0.0-linux-x64.tar.gz#b760ed6de40c35a25eb011b3cf5943d35d7a76f0c8c331d5a801e10925826cb3" + +install_package "node-v24.0.0" "https://nodejs.org/dist/v24.0.0/node-v24.0.0.tar.gz#144fec7c01052003ddc1f7fb2f3d698ac897711659c1017f60ac8b45e672ba17" From f6ffa00d5679d06abcf378d6641ff66d954d1fc4 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 9 May 2025 02:01:06 +0000 Subject: [PATCH 076/156] 24.0.1 Created with `npm run submit-definitions`. --- share/node-build/24.0.1 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.0.1 diff --git a/share/node-build/24.0.1 b/share/node-build/24.0.1 new file mode 100644 index 00000000..ed7a9efd --- /dev/null +++ b/share/node-build/24.0.1 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.0.1/node-v24.0.1-aix-ppc64.tar.gz#264d0432fe5820e74e66a0f94fb9f51959728149985746021a9aae57ebe46761" +binary darwin-arm64 "https://nodejs.org/dist/v24.0.1/node-v24.0.1-darwin-arm64.tar.gz#f38faa6ea209aa31f56e5d82ee021ba5b8f149137734d81a31fda65c327f0be4" +binary darwin-x64 "https://nodejs.org/dist/v24.0.1/node-v24.0.1-darwin-x64.tar.gz#f0be72400208ff369b1dd4e2b6c0aa09713ad42e8cd99e7abf2a9b1575e2fef5" +binary linux-arm64 "https://nodejs.org/dist/v24.0.1/node-v24.0.1-linux-arm64.tar.gz#45a5ffeff5eae91e64f19575072f0241ff71da49c0cdf69fad360323c587a5bd" +binary linux-ppc64le "https://nodejs.org/dist/v24.0.1/node-v24.0.1-linux-ppc64le.tar.gz#66d74261b98d0aec8bec6b980e0f49c5b95543e4b2d365394cf96c7294b9d5a6" +binary linux-s390x "https://nodejs.org/dist/v24.0.1/node-v24.0.1-linux-s390x.tar.gz#a65aac6ec6324c0b81a68bf8a701cb2cb8654be1422866908b42dba680c9368d" +binary linux-x64 "https://nodejs.org/dist/v24.0.1/node-v24.0.1-linux-x64.tar.gz#58239e217440acffb3889954f1dc0977f46048c54f226e446280fc8feb8c5ab9" + +install_package "node-v24.0.1" "https://nodejs.org/dist/v24.0.1/node-v24.0.1.tar.gz#e02f2ad3fe56f74674657f2e76019c99f74a7172b4e5e02db0687e60c4c99508" From 5513903b647a5db7a03caaf7c1a552739b14388e Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Fri, 9 May 2025 07:56:35 -0400 Subject: [PATCH 077/156] Update version.yml paths filter --- .github/workflows/version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 0ad949e2..1e7f6659 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -1,6 +1,6 @@ name: Version Bump on: - push: { branches: main, paths: share/node-build} + push: { branches: main, paths: "share/node-build/"} schedule: [{ cron: '0 10 * * *' }] # daily: https://crontab.guru/#0_10_*_*_* workflow_dispatch: inputs: From a77aa718765c4879dfbc1d0c3f014a431f77fc16 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Fri, 9 May 2025 07:58:25 -0400 Subject: [PATCH 078/156] Update version.yml paths filter --- .github/workflows/version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 1e7f6659..df18736b 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -1,6 +1,6 @@ name: Version Bump on: - push: { branches: main, paths: "share/node-build/"} + push: { branches: main, paths: "share/node-build/**"} schedule: [{ cron: '0 10 * * *' }] # daily: https://crontab.guru/#0_10_*_*_* workflow_dispatch: inputs: From f3ee7bdf933bbd169e3cf9f3df19f61d059751cd Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 9 May 2025 11:59:13 +0000 Subject: [PATCH 079/156] 5.3.36 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 226d08ee..832991de 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.35 +NODE_BUILD_VERSION=5.3.36 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 9e507cfc..6ec530ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.35", + "version": "5.3.36", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.35", + "version": "5.3.36", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index dc80d9fb..0d3890d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.35", + "version": "5.3.36", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 01416aa6d4a226e6cede361f43e9ee6e3a7e3762 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 02:00:19 +0000 Subject: [PATCH 080/156] 20.19.2 Created with `npm run submit-definitions`. --- share/node-build/20.19.2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.2 diff --git a/share/node-build/20.19.2 b/share/node-build/20.19.2 new file mode 100644 index 00000000..3534d187 --- /dev/null +++ b/share/node-build/20.19.2 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.2/node-v20.19.2-aix-ppc64.tar.gz#4ba1a64cd4e2d1bdbc38afbf230c6171ed62fca7c38c83497f839c3911d8d13d" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.2/node-v20.19.2-darwin-arm64.tar.gz#5f96c725cd2be1151f08b25c05bf5a21866a2dc7db3803d351a6ea19fcc53665" +binary darwin-x64 "https://nodejs.org/dist/v20.19.2/node-v20.19.2-darwin-x64.tar.gz#29f91e05992a7d81498ab1d04938a184313cb4aaccab95bb4636e30e6424eae3" +binary linux-arm64 "https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-arm64.tar.gz#24c3090d4e8c3667cd57482263291ca4f562c2e0773d5e618a0c6ba32d21b39f" +binary linux-armv7l "https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-armv7l.tar.gz#aed2de774737d76a81254cbcd12ae5e9239f24efec0456b9608f150d27d58fe7" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-ppc64le.tar.gz#9fced2e270fb0879709f7fa19b358551244b2d6c8cbf39d6a860221dcc12181b" +binary linux-s390x "https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-s390x.tar.gz#94023e739c98ce55a057fbf5e86589253458e92af1990a2712dab8c6421cfe2f" +binary linux-x64 "https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-x64.tar.gz#eec2c7b9c6ac72e42885a42edfc0503c0e4ee455f855c4a17a6cbcf026656dd5" + +install_package "node-v20.19.2" "https://nodejs.org/dist/v20.19.2/node-v20.19.2.tar.gz#eaf8800608ffbcae7665beb4776d8e9d8484055fbb840ef44e346044f9b08ad5" From 46a9bd1acff0a599acaa6abeb0a48620f0a527ae Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 02:00:19 +0000 Subject: [PATCH 081/156] 22.15.1 Created with `npm run submit-definitions`. --- share/node-build/22.15.1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.15.1 diff --git a/share/node-build/22.15.1 b/share/node-build/22.15.1 new file mode 100644 index 00000000..57b55e3d --- /dev/null +++ b/share/node-build/22.15.1 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.15.1/node-v22.15.1-aix-ppc64.tar.gz#2fe635ed920633a890fd594860e5fe35f5ca1ef6da3cda62c6692c39cfefb894" +binary darwin-arm64 "https://nodejs.org/dist/v22.15.1/node-v22.15.1-darwin-arm64.tar.gz#d2689b86b17e1b51e76f801ffe2d9acca4225e76eda4b843c3d8438d4a7cd6fe" +binary darwin-x64 "https://nodejs.org/dist/v22.15.1/node-v22.15.1-darwin-x64.tar.gz#1c722d0dd6d3f60e8b0be014ea01b8a59f5088f4419197a1b37544854d61cc6f" +binary linux-arm64 "https://nodejs.org/dist/v22.15.1/node-v22.15.1-linux-arm64.tar.gz#eb3f232b83dfe83397b98395ec77a973e888e8959c978b3e4eeb551b8845b74f" +binary linux-armv7l "https://nodejs.org/dist/v22.15.1/node-v22.15.1-linux-armv7l.tar.gz#346426e2bca62c98fb12213c39e80b0e349d7620238f74b7208d12e18fde87fd" +binary linux-ppc64le "https://nodejs.org/dist/v22.15.1/node-v22.15.1-linux-ppc64le.tar.gz#156518af6901fb134ddde5f4b7ee39e047c4154480c3dd93030912a5d3f87097" +binary linux-s390x "https://nodejs.org/dist/v22.15.1/node-v22.15.1-linux-s390x.tar.gz#6b5a9615b66e553189578a4be33099f70add96c3b00bf38b7dcd91825ea1672f" +binary linux-x64 "https://nodejs.org/dist/v22.15.1/node-v22.15.1-linux-x64.tar.gz#f4b8eec683708acb1a2a73c7182ba2de5466a5dd5f705934a0830903df28821c" + +install_package "node-v22.15.1" "https://nodejs.org/dist/v22.15.1/node-v22.15.1.tar.gz#38aea029f8818f7783f273fbc70dcf930f9ef54bdd49c5f90c0152caec7a57be" From 953d3b8a22fc12772ff4bb49e6745a0d071eac63 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 02:00:19 +0000 Subject: [PATCH 082/156] 23.11.1 Created with `npm run submit-definitions`. --- share/node-build/23.11.1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/23.11.1 diff --git a/share/node-build/23.11.1 b/share/node-build/23.11.1 new file mode 100644 index 00000000..96b2ac42 --- /dev/null +++ b/share/node-build/23.11.1 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v23.11.1/node-v23.11.1-aix-ppc64.tar.gz#b8e4e7f8940f4d4f1dbce5099708ef7038c41f38176524ac3b4c14e7e7324201" +binary darwin-arm64 "https://nodejs.org/dist/v23.11.1/node-v23.11.1-darwin-arm64.tar.gz#255509d2c4fe8e1d6fefb950ad8db285ed75ba543e18744d83dc139f978e404d" +binary darwin-x64 "https://nodejs.org/dist/v23.11.1/node-v23.11.1-darwin-x64.tar.gz#7e384a0cfa8b44ee4833b3823485baad78bf258e54f47020d2d2b4b75e9275d3" +binary linux-arm64 "https://nodejs.org/dist/v23.11.1/node-v23.11.1-linux-arm64.tar.gz#277316a0b0ae3f50eb2cd57b74fa8a07f4d17fe0433468a790e6e47da297a9f6" +binary linux-armv7l "https://nodejs.org/dist/v23.11.1/node-v23.11.1-linux-armv7l.tar.gz#ead02a21e6f7144f588150f4684268502e467d9f76017ec5befb983caad9d0dd" +binary linux-ppc64le "https://nodejs.org/dist/v23.11.1/node-v23.11.1-linux-ppc64le.tar.gz#1ba6e2e20c4602adbf58180254ac85a8b65d14c7f1e4c8558e7c425635d462ca" +binary linux-s390x "https://nodejs.org/dist/v23.11.1/node-v23.11.1-linux-s390x.tar.gz#2c1dc5f4c9e1b4926391fae71a05f58bd7eb1eb0cf1af75bf21248988d86cc50" +binary linux-x64 "https://nodejs.org/dist/v23.11.1/node-v23.11.1-linux-x64.tar.gz#a2029c2b0cb05d10248e887c5df3f8547b7ab4aaa4e63b8e4da03e72f478140e" + +install_package "node-v23.11.1" "https://nodejs.org/dist/v23.11.1/node-v23.11.1.tar.gz#75509306732090bfa99b004d097909315f7789badb4a495e82b5f17b6329247a" From 5aaf6d945cf84b0709521f4e35df37a4a5a8f7df Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 02:00:19 +0000 Subject: [PATCH 083/156] 24.0.2 Created with `npm run submit-definitions`. --- share/node-build/24.0.2 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.0.2 diff --git a/share/node-build/24.0.2 b/share/node-build/24.0.2 new file mode 100644 index 00000000..b7109634 --- /dev/null +++ b/share/node-build/24.0.2 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.0.2/node-v24.0.2-aix-ppc64.tar.gz#ed574442f7a98dc5f88bf58d6a58d83a0a30243d51136000e42e5fb81becd2ab" +binary darwin-arm64 "https://nodejs.org/dist/v24.0.2/node-v24.0.2-darwin-arm64.tar.gz#dbd43bc96d7754eff03c241888c2cbc1e879bcbbf2f0961fb8e00e9cd3a21526" +binary darwin-x64 "https://nodejs.org/dist/v24.0.2/node-v24.0.2-darwin-x64.tar.gz#b408d41f8e322bcc71fd4d595156b34d4ad03ef149fba26386030c4cf7e2c1e9" +binary linux-arm64 "https://nodejs.org/dist/v24.0.2/node-v24.0.2-linux-arm64.tar.gz#78e02e66ea58612b6c84e349c9879333a3a83f51d8127f2593550a4d9a5c5c1a" +binary linux-ppc64le "https://nodejs.org/dist/v24.0.2/node-v24.0.2-linux-ppc64le.tar.gz#4dca6cffc15d1e67b43db342d6562f21918f281bc8a4c26b6d637cfcecf76153" +binary linux-s390x "https://nodejs.org/dist/v24.0.2/node-v24.0.2-linux-s390x.tar.gz#11bb07d9dfd5b0c11ff9ae240d1bb25e6c2f1eeec49d09157b1d262f8e97afa3" +binary linux-x64 "https://nodejs.org/dist/v24.0.2/node-v24.0.2-linux-x64.tar.gz#0a44c1982b14ad2c67ae0d8ec26934d99e43a55c11880459f44a76757775c8fa" + +install_package "node-v24.0.2" "https://nodejs.org/dist/v24.0.2/node-v24.0.2.tar.gz#db699b535192419b02f35668aadd48f4d80e99b8ef807997df159bcf15a5e6b9" From b3439eb0e2e5f7d3ef8abdf35fffb297c23dd33e Mon Sep 17 00:00:00 2001 From: Chongyi Zheng Date: Thu, 15 May 2025 04:14:53 -0400 Subject: [PATCH 084/156] Replace deprecated set-output command in workflows --- .github/workflows/definitions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 2223d0a5..286c66e0 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -23,7 +23,7 @@ jobs: - id: log run: | msg=$(git log --format='- %s' --reverse ${{github.sha}}..) - echo "::set-output name=message::${msg//$'\n'/'%0A'}" + echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_ENV - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: token: ${{ secrets.BOT_TOKEN }} From 2d37d7b0ee768e31d3b682a217b6aa038b595d03 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 15 May 2025 09:07:56 -0400 Subject: [PATCH 085/156] Use GITHUB_OUTPUT file per docs --- .github/workflows/definitions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 286c66e0..5e775728 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -23,7 +23,7 @@ jobs: - id: log run: | msg=$(git log --format='- %s' --reverse ${{github.sha}}..) - echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_ENV + echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_OUTPUT - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: token: ${{ secrets.BOT_TOKEN }} From adaaa99b6bcd9743ef370ed3001d2b1eb3b1ecca Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 13:10:08 +0000 Subject: [PATCH 086/156] 5.3.37 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 832991de..6a76f13d 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.36 +NODE_BUILD_VERSION=5.3.37 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 6ec530ab..cb7eec7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.36", + "version": "5.3.37", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.36", + "version": "5.3.37", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 0d3890d3..4d80d9ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.36", + "version": "5.3.37", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 4cd7b7a46d84046a378d5f5a2f40d82d8d14dc1a Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 15 May 2025 11:12:28 -0400 Subject: [PATCH 087/156] Include date in unmerged rbtags script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d80d9ee..3e484354 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "preversion": "script/preversion", "version": "script/version-sync", "postversion": "git push --follow-tags", - "unmerged": "git for-each-ref refs/rbtags --format='%(refname)' --no-merged" + "unmerged": "git for-each-ref refs/rbtags --format='%(refname) %(creatordate:short)' --no-merged" }, "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", From 39c143bc4480da0dee3dde052222d353880fdb96 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 15 May 2025 11:14:10 -0400 Subject: [PATCH 088/156] Remove ruby-build specific openssl script Reverts c520cac --- CONTRIBUTING.md | 4 ---- script/update-openssl | 21 --------------------- 2 files changed, 25 deletions(-) delete mode 100755 script/update-openssl diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4028e3cf..ea8977c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,10 +3,6 @@ > TODO > Use one of the scripts `script/update-*` to add a new Node version. -## Updating OpenSSL - -Use `script/update-openssl`. - ## Git configuration for fetching rbenv upstream In order to continually pull changes from rbenv/ruby-build into node-build, it is necessary to add rbenv/ruby-build as a git remote. diff --git a/script/update-openssl b/script/update-openssl deleted file mode 100755 index 29f7aad6..00000000 --- a/script/update-openssl +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env ruby - -raise "Usage: #{$0} NEW_VERSION SHA" unless ARGV.size == 2 -new_version, sha = ARGV - -major_minor = new_version.split('.')[0..1].join('.') - -Dir.glob('share/ruby-build/*') do |file| - contents = File.read(file) - - openssl_package = "\"openssl-#{major_minor}" - - next unless contents.include? openssl_package - - lines = contents.lines - line = lines.find { |line| line.include? openssl_package } - old_version = line[/"openssl-([\d.]+[a-z]?)"/, 1] or raise - line.gsub!(old_version, new_version) - line.sub!(/\.tar\.gz#(\h+)"/, ".tar.gz##{sha}\"") - File.write(file, lines.join) -end From bcee9f30782b59188e94e4b66705d2cf0104089d Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 15 May 2025 11:19:55 -0400 Subject: [PATCH 089/156] Begin documenting the update process --- CONTRIBUTING.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ea8977c7..5c1c03a1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,8 +1,16 @@ +# Contribution to node-build + ## Adding a new Node version > TODO > Use one of the scripts `script/update-*` to add a new Node version. +## Pull changes from rbenv/ruby-build upstream + +Lists all ruby-build tags that have not been merged into node-build. + + npm run unmerged + ## Git configuration for fetching rbenv upstream In order to continually pull changes from rbenv/ruby-build into node-build, it is necessary to add rbenv/ruby-build as a git remote. @@ -23,7 +31,6 @@ The configuration assumes node-build's remote is `origin`, and ruby-build's remo git config --add remote.ruby-build.fetch '+refs/tags/*:refs/rbtags/*' - Resulting snippet in `.git/config`: ```gitconfig From ad7b351142cfbc3ca935133f40709aafc2f89a26 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 15 May 2025 11:30:20 -0400 Subject: [PATCH 090/156] Generate URL to each unmerged ruby-build release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e484354..f784f926 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "preversion": "script/preversion", "version": "script/version-sync", "postversion": "git push --follow-tags", - "unmerged": "git for-each-ref refs/rbtags --format='%(refname) %(creatordate:short)' --no-merged" + "unmerged": "git for-each-ref refs/rbtags --format='%(creatordate:short) %(refname:short) https://github.com/rbenv/ruby-build/releases/tag/%(refname:lstrip=-1)' --no-merged" }, "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", From b845fc0d760bd4d009d272e0a8e4b52a0aa2c24a Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 15 May 2025 16:09:26 +0000 Subject: [PATCH 091/156] 5.4.0 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 13264dac..02fc8b83 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.3.37 +NODE_BUILD_VERSION=5.4.0 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index cb7eec7c..e482b06e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.3.37", + "version": "5.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.3.37", + "version": "5.4.0", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index f784f926..30ce11f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.3.37", + "version": "5.4.0", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From d19ebdcdc79a2580912e70a54ff6c7e4d3ca680b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 13:12:21 +0000 Subject: [PATCH 092/156] Bump bats from 1.11.1 to 1.12.0 Bumps [bats](https://github.com/bats-core/bats-core) from 1.11.1 to 1.12.0. - [Release notes](https://github.com/bats-core/bats-core/releases) - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/bats-core/bats-core/compare/v1.11.1...v1.12.0) --- updated-dependencies: - dependency-name: bats dependency-version: 1.12.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e482b06e..23265d71 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,9 +31,9 @@ } }, "node_modules/bats": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/bats/-/bats-1.11.1.tgz", - "integrity": "sha512-Dh26FsiLog+wwQeTkboYo2xYj9rUaPEbibUobnYb3G3M9hva/Kby00wrAN9VB9qqGVhl/pYjjt/LVBWwjXlD2A==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/bats/-/bats-1.12.0.tgz", + "integrity": "sha512-1HTv2n+fjn3bmY9SNDgmzS6bjoKtVlSK2pIHON5aSA2xaqGkZFoCCWP46/G6jm9zZ7MCi84mD+3Byw4t3KGwBg==", "dev": true, "license": "MIT", "bin": { From c9ff80d86f136a432dfc5fc3aad414e86031b46d Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 21 May 2025 18:35:17 +0000 Subject: [PATCH 093/156] 22.16.0 Created with `npm run submit-definitions`. --- share/node-build/22.16.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.16.0 diff --git a/share/node-build/22.16.0 b/share/node-build/22.16.0 new file mode 100644 index 00000000..a55c4c04 --- /dev/null +++ b/share/node-build/22.16.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.16.0/node-v22.16.0-aix-ppc64.tar.gz#17d4038360f2322e6c3b9f82e7115163ca039da470b59933ab708a4844c5e936" +binary darwin-arm64 "https://nodejs.org/dist/v22.16.0/node-v22.16.0-darwin-arm64.tar.gz#1d7f34ec4c03e12d8b33481e5c4560432d7dc31a0ef3ff5a4d9a8ada7cf6ecc9" +binary darwin-x64 "https://nodejs.org/dist/v22.16.0/node-v22.16.0-darwin-x64.tar.gz#838d400f7e66c804e5d11e2ecb61d6e9e878611146baff69d6a2def3cc23f4ac" +binary linux-arm64 "https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-arm64.tar.gz#1725602e9fb150eb8b8220a899085190e1c04d1a5f3862b01c3dc1dfce0157f9" +binary linux-armv7l "https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-armv7l.tar.gz#d4c3d8b6862208f0e0d6e20726a8dc5fb019cba8333c72dfd97b34ceed8d22a4" +binary linux-ppc64le "https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-ppc64le.tar.gz#b4eec15ffd2d738ae34566057a6928e789e02a0f47176f4af8520f1248c63aab" +binary linux-s390x "https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-s390x.tar.gz#668a5c65ade42f08d921c48a1c14437d10d026291e381d2541c2b0a585724567" +binary linux-x64 "https://nodejs.org/dist/v22.16.0/node-v22.16.0-linux-x64.tar.gz#fb870226119d47378fa9c92c4535389c72dae14fcc7b47e6fdcc82c43de5a547" + +install_package "node-v22.16.0" "https://nodejs.org/dist/v22.16.0/node-v22.16.0.tar.gz#108f250ff79cc103b464b3ef41fa60f4866e4e6c962117171adaac7325ebdab2" From a735611deefd68c8a043593ad513b4a5c5e9d082 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 21 May 2025 18:35:17 +0000 Subject: [PATCH 094/156] 24.1.0 Created with `npm run submit-definitions`. --- share/node-build/24.1.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.1.0 diff --git a/share/node-build/24.1.0 b/share/node-build/24.1.0 new file mode 100644 index 00000000..ab3715b4 --- /dev/null +++ b/share/node-build/24.1.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.1.0/node-v24.1.0-aix-ppc64.tar.gz#363a6826fa1ca6bec5028bc4e061b9dcf2f8e163ca4963e8c3d346c03b1ebff1" +binary darwin-arm64 "https://nodejs.org/dist/v24.1.0/node-v24.1.0-darwin-arm64.tar.gz#d474192c55b9f54ead37310dfab54431b9ba841fb8abdf8ca800e7a227afc1fb" +binary darwin-x64 "https://nodejs.org/dist/v24.1.0/node-v24.1.0-darwin-x64.tar.gz#cdb47a43209c2fa4b6d9ccf7b71e59096448d172d0034aa213284f8931ef0946" +binary linux-arm64 "https://nodejs.org/dist/v24.1.0/node-v24.1.0-linux-arm64.tar.gz#4ed15737d3781baa7d69b6a2e576507666229208fd25c83d58abf8d95b6a56f3" +binary linux-ppc64le "https://nodejs.org/dist/v24.1.0/node-v24.1.0-linux-ppc64le.tar.gz#62777e5245ec46c151409111172adb7f30f2ef9d006ff5ba11c7cae76b9e91ee" +binary linux-s390x "https://nodejs.org/dist/v24.1.0/node-v24.1.0-linux-s390x.tar.gz#83fcab77f7feafa235da6d9d8496adb4c6411b7a9468538447ea27f078decf31" +binary linux-x64 "https://nodejs.org/dist/v24.1.0/node-v24.1.0-linux-x64.tar.gz#4d2beaa55d962c1b31d6a4663cc831087f79f83f304a066963b65c8f4495843f" + +install_package "node-v24.1.0" "https://nodejs.org/dist/v24.1.0/node-v24.1.0.tar.gz#b565cba1dd8f2eb3db7c95e0c3a87ecc5e77f079611ea6a3688531511383ec72" From a98c54f313ee65f68ef720d34b864e352595384c Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 22 May 2025 13:29:48 +0000 Subject: [PATCH 095/156] 5.4.1 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 02fc8b83..baa8b7e9 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.0 +NODE_BUILD_VERSION=5.4.1 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 23265d71..43598428 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.0", + "version": "5.4.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.0", + "version": "5.4.1", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 30ce11f1..61b13696 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.0", + "version": "5.4.1", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 9b736237ec4db97ac2708257185afd351070c1af Mon Sep 17 00:00:00 2001 From: jasonkarns <119972+jasonkarns@users.noreply.github.com> Date: Mon, 2 Jun 2025 02:08:53 +0000 Subject: [PATCH 096/156] Add LTS warning messages --- share/node-build/23.0.0 | 5 +++++ share/node-build/23.1.0 | 5 +++++ share/node-build/23.10.0 | 5 +++++ share/node-build/23.11.0 | 5 +++++ share/node-build/23.11.1 | 5 +++++ share/node-build/23.2.0 | 5 +++++ share/node-build/23.3.0 | 5 +++++ share/node-build/23.4.0 | 5 +++++ share/node-build/23.5.0 | 5 +++++ share/node-build/23.6.0 | 5 +++++ share/node-build/23.6.1 | 5 +++++ share/node-build/23.7.0 | 5 +++++ share/node-build/23.8.0 | 5 +++++ share/node-build/23.9.0 | 5 +++++ 14 files changed, 70 insertions(+) diff --git a/share/node-build/23.0.0 b/share/node-build/23.0.0 index 7217e57d..1705346a 100644 --- a/share/node-build/23.0.0 +++ b/share/node-build/23.0.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.1.0 b/share/node-build/23.1.0 index b0c1493b..df60d655 100644 --- a/share/node-build/23.1.0 +++ b/share/node-build/23.1.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.10.0 b/share/node-build/23.10.0 index 6f9b0d07..7a156c12 100644 --- a/share/node-build/23.10.0 +++ b/share/node-build/23.10.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.11.0 b/share/node-build/23.11.0 index fbc44954..fdb1c8f5 100644 --- a/share/node-build/23.11.0 +++ b/share/node-build/23.11.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.11.1 b/share/node-build/23.11.1 index 96b2ac42..823061a1 100644 --- a/share/node-build/23.11.1 +++ b/share/node-build/23.11.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.2.0 b/share/node-build/23.2.0 index 4f393a70..95e75ba7 100644 --- a/share/node-build/23.2.0 +++ b/share/node-build/23.2.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.3.0 b/share/node-build/23.3.0 index 064852b2..196018b7 100644 --- a/share/node-build/23.3.0 +++ b/share/node-build/23.3.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.4.0 b/share/node-build/23.4.0 index cccafcc7..b77fa5bb 100644 --- a/share/node-build/23.4.0 +++ b/share/node-build/23.4.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.5.0 b/share/node-build/23.5.0 index 05984667..b9db3e1a 100644 --- a/share/node-build/23.5.0 +++ b/share/node-build/23.5.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.6.0 b/share/node-build/23.6.0 index 674a71e3..3dbeb2ab 100644 --- a/share/node-build/23.6.0 +++ b/share/node-build/23.6.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.6.1 b/share/node-build/23.6.1 index 4d582a64..62d4688b 100644 --- a/share/node-build/23.6.1 +++ b/share/node-build/23.6.1 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.7.0 b/share/node-build/23.7.0 index 96852609..3f8df220 100644 --- a/share/node-build/23.7.0 +++ b/share/node-build/23.7.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.8.0 b/share/node-build/23.8.0 index ea3838c4..49c8a4de 100644 --- a/share/node-build/23.8.0 +++ b/share/node-build/23.8.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } diff --git a/share/node-build/23.9.0 b/share/node-build/23.9.0 index 029b3f7b..8c781241 100644 --- a/share/node-build/23.9.0 +++ b/share/node-build/23.9.0 @@ -1,3 +1,8 @@ +before_install_package() { + build_package_warn_eol "$1" +} + + before_install_package() { build_package_warn_lts_maintenance "$1" } From bfed6b7c851aea1dd84a41bd1d86ced23b8fb71f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 3 Jun 2025 01:05:30 +0000 Subject: [PATCH 097/156] 5.4.2 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index baa8b7e9..0079545b 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.1 +NODE_BUILD_VERSION=5.4.2 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 43598428..4c7d3447 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.1", + "version": "5.4.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.1", + "version": "5.4.2", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 61b13696..118c027e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.1", + "version": "5.4.2", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 6050341a383f6c846e988f204d88c62d856e8791 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 10 Jun 2025 02:07:20 +0000 Subject: [PATCH 098/156] 24.2.0 Created with `npm run submit-definitions`. --- share/node-build/24.2.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.2.0 diff --git a/share/node-build/24.2.0 b/share/node-build/24.2.0 new file mode 100644 index 00000000..ef654ff7 --- /dev/null +++ b/share/node-build/24.2.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.2.0/node-v24.2.0-aix-ppc64.tar.gz#8563ebf595f3c4f93cbd43560c54fe3d60e86c94d5d233187ff61b7e05343e04" +binary darwin-arm64 "https://nodejs.org/dist/v24.2.0/node-v24.2.0-darwin-arm64.tar.gz#d35c21bb80dbf0d774d670b6b51b9467dd6a92581884ba78f29b09c3b50c9dee" +binary darwin-x64 "https://nodejs.org/dist/v24.2.0/node-v24.2.0-darwin-x64.tar.gz#d839ef904d7305f429d45288a8b0b43b095e9797dbbcf3bd67b0c8712066b7a3" +binary linux-arm64 "https://nodejs.org/dist/v24.2.0/node-v24.2.0-linux-arm64.tar.gz#e82b44212eb10ebf4de9bd945b2fcf950786117f6578581bcde0abf4d471af4a" +binary linux-ppc64le "https://nodejs.org/dist/v24.2.0/node-v24.2.0-linux-ppc64le.tar.gz#21a12614b868523799860b8f91462d6c947571d7da16675965cd5584077fa950" +binary linux-s390x "https://nodejs.org/dist/v24.2.0/node-v24.2.0-linux-s390x.tar.gz#32e493596dddb956da2388243159e6d22980a0c0439a0387cb7710106f402247" +binary linux-x64 "https://nodejs.org/dist/v24.2.0/node-v24.2.0-linux-x64.tar.gz#074e93576f2b0f0f689d12b5d71314c5cdc384b6efc315e264120f6a9dd348af" + +install_package "node-v24.2.0" "https://nodejs.org/dist/v24.2.0/node-v24.2.0.tar.gz#da739aedc45729436587cda9f063b28c1d881a32ba149b0a2f4e8aff55a18929" From e5f02320e548c861f91abeda1b802321efe3b92f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 10 Jun 2025 23:31:03 +0000 Subject: [PATCH 099/156] 5.4.3 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 0079545b..08e11604 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.2 +NODE_BUILD_VERSION=5.4.3 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 4c7d3447..58b65e24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.2", + "version": "5.4.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.2", + "version": "5.4.3", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 118c027e..92360ec1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.2", + "version": "5.4.3", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From e21e094f9be043daee6fa6360956e36f40ef86a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Jun 2025 16:15:38 +0000 Subject: [PATCH 100/156] Bump redhat-plumbers-in-action/differential-shellcheck Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.5.3 to 5.5.4. - [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases) - [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/redhat-plumbers-in-action/differential-shellcheck/compare/dd551ce780d8af741f8cd8bab6982667b906b457...929381c602ed76daa9b523e001ee29b82bd6d8e9) --- updated-dependencies: - dependency-name: redhat-plumbers-in-action/differential-shellcheck dependency-version: 5.5.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33081eec..5dd76e24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@dd551ce780d8af741f8cd8bab6982667b906b457 # v5.5.3 + - uses: redhat-plumbers-in-action/differential-shellcheck@929381c602ed76daa9b523e001ee29b82bd6d8e9 # v5.5.4 with: severity: error # TODO strengthen token: ${{ secrets.GITHUB_TOKEN }} From 7727c51d566f65b9fc8cdbcbe26f4b32f4fcc2b2 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Mon, 23 Jun 2025 12:55:18 +0000 Subject: [PATCH 101/156] 20.19.3 Created with `npm run submit-definitions`. --- share/node-build/20.19.3 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.3 diff --git a/share/node-build/20.19.3 b/share/node-build/20.19.3 new file mode 100644 index 00000000..eadd6f63 --- /dev/null +++ b/share/node-build/20.19.3 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.3/node-v20.19.3-aix-ppc64.tar.gz#3166216d8bb83dca6850643d585189e657b6038cf5e8331181fff7300a6d9f98" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.3/node-v20.19.3-darwin-arm64.tar.gz#4efd92305e36e6e9f8cfe8d7781b188eec86f306ca712535ecf2c10dc8c1ae13" +binary darwin-x64 "https://nodejs.org/dist/v20.19.3/node-v20.19.3-darwin-x64.tar.gz#6f9dc8cbce8f8c74e4df296fb58c20fc6e88f47880a299fc76bbb01a90219870" +binary linux-arm64 "https://nodejs.org/dist/v20.19.3/node-v20.19.3-linux-arm64.tar.gz#8e6939f63b736470bf2cbda596ab62393f26d9af9d7046d61270899880d4f149" +binary linux-armv7l "https://nodejs.org/dist/v20.19.3/node-v20.19.3-linux-armv7l.tar.gz#c9cb3e73efacb8e3cce47f36b0fd0b823a84b973047f1ab58a5fce99bc6b7536" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.3/node-v20.19.3-linux-ppc64le.tar.gz#b38c429376c4aeee09e0e3ba3294db9e2683e896747b0050aa84ed3401706389" +binary linux-s390x "https://nodejs.org/dist/v20.19.3/node-v20.19.3-linux-s390x.tar.gz#d2ffe8fbc8b3f6eef0cb6ea3719c562d0c4535870e2a2d2f0685e7d2ae8b1c69" +binary linux-x64 "https://nodejs.org/dist/v20.19.3/node-v20.19.3-linux-x64.tar.gz#76272878069683c3a36b933d2f4842436a26b527daa930ae9346b477011ee2f3" + +install_package "node-v20.19.3" "https://nodejs.org/dist/v20.19.3/node-v20.19.3.tar.gz#4c9f238ad7c57af35efa6ba6259521aebbe20c2f91f6d846860a861c97fc6b99" From a43a8397b0f4b14f9a7cdf9cf26fff099b3d0fe5 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:09:51 +0000 Subject: [PATCH 102/156] 5.4.4 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 08e11604..b73257b9 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.3 +NODE_BUILD_VERSION=5.4.4 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 58b65e24..345ad745 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.3", + "version": "5.4.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.3", + "version": "5.4.4", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 92360ec1..a03b013d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.3", + "version": "5.4.4", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From dcc858023b976e8ed4a1f22528f0b8c73487e11d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 15:26:43 +0000 Subject: [PATCH 103/156] Bump nodenv/.github from 4 to 5 Bumps [nodenv/.github](https://github.com/nodenv/.github) from 4 to 5. - [Release notes](https://github.com/nodenv/.github/releases) - [Commits](https://github.com/nodenv/.github/compare/v4...v5) --- updated-dependencies: - dependency-name: nodenv/.github dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- .github/workflows/sync-default-branch.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ea429b89..4c3212cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,5 +6,5 @@ permissions: {contents: read} jobs: release: permissions: {contents: write, id-token: write} - uses: nodenv/.github/.github/workflows/release.yml@v4 + uses: nodenv/.github/.github/workflows/release.yml@v5 secrets: inherit diff --git a/.github/workflows/sync-default-branch.yml b/.github/workflows/sync-default-branch.yml index ed1a1d5f..9d122c79 100644 --- a/.github/workflows/sync-default-branch.yml +++ b/.github/workflows/sync-default-branch.yml @@ -7,7 +7,7 @@ permissions: {} jobs: sync: permissions: {contents: write} - uses: nodenv/.github/.github/workflows/sync-default-branch.yml@v4 + uses: nodenv/.github/.github/workflows/sync-default-branch.yml@v5 # One-time commands for users to switch-over: # diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5dd76e24..4b11a8e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ permissions: {contents: read} jobs: test: - uses: nodenv/.github/.github/workflows/test.yml@v4 + uses: nodenv/.github/.github/workflows/test.yml@v5 with: {superlinter: false} # TODO renable superlinter permissions: contents: read From 3f9c520dfe0bd027f8de379f57c1d0e1844686cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 15:42:04 +0000 Subject: [PATCH 104/156] Bump bats-support from `d007fc1` to `0ad082d` Bumps [bats-support](https://github.com/jasonkarns/bats-support) from `d007fc1` to `0ad082d`. - [Release notes](https://github.com/jasonkarns/bats-support/releases) - [Commits](https://github.com/jasonkarns/bats-support/compare/d007fc1f451abbad55204fa9c9eb3e6ed5dc5f61...0ad082d4590108684c68975ca517a90459f05cd0) --- updated-dependencies: - dependency-name: bats-support dependency-version: 0ad082d4590108684c68975ca517a90459f05cd0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 345ad745..35ac3e6c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -62,7 +62,7 @@ }, "node_modules/bats-support": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-support.git#d007fc1f451abbad55204fa9c9eb3e6ed5dc5f61", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-support.git#0ad082d4590108684c68975ca517a90459f05cd0", "integrity": "sha512-lZueJbfb9JqaFTNZcaoj7uhAPxSRKRCe+PBA2Y1OvQEtSQjdVn4v/+QtZlKGq88krlHOA2cpOMHz7VLfwphO8A==", "dev": true, "license": "CC0-1.0", From d8d0aaf7e310178b8999aa85c189122c7930b6e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 16:18:28 +0000 Subject: [PATCH 105/156] Bump bats-assert from `b93143a` to `912a988` Bumps [bats-assert](https://github.com/jasonkarns/bats-assert-1) from `b93143a` to `912a988`. - [Release notes](https://github.com/jasonkarns/bats-assert-1/releases) - [Commits](https://github.com/jasonkarns/bats-assert-1/compare/b93143a1bfbde41d9b7343aab0d36f3ef6549e6b...912a98804efd34f24d5eae1bf97ee622ca770e99) --- updated-dependencies: - dependency-name: bats-assert dependency-version: 912a98804efd34f24d5eae1bf97ee622ca770e99 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 345ad745..a2566d08 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,8 +42,8 @@ }, "node_modules/bats-assert": { "version": "2.1.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#b93143a1bfbde41d9b7343aab0d36f3ef6549e6b", - "integrity": "sha512-O9lM6A7Yv2HupfoiISSr3KExsaaa2ZaHUFyKdxvoEUWfSCl8QCZzSePRYCAahZmzaI9GcLEfa7qsUQb+HTblXg==", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#912a98804efd34f24d5eae1bf97ee622ca770e99", + "integrity": "sha512-8Pc3O9hRB49qBv8TblBIGyObo/+C0XI89ssIsB0xcCLaX0KLbAsJOZj1OyjEDbrlxqNrjdMxs2GkseoyQeKmFg==", "dev": true, "license": "CC0-1.0", "peerDependencies": { From cb369a764d4161a6547629951fe420f93ce38712 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 25 Jun 2025 02:07:41 +0000 Subject: [PATCH 106/156] 22.17.0 Created with `npm run submit-definitions`. --- share/node-build/22.17.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.17.0 diff --git a/share/node-build/22.17.0 b/share/node-build/22.17.0 new file mode 100644 index 00000000..5c085bd7 --- /dev/null +++ b/share/node-build/22.17.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.17.0/node-v22.17.0-aix-ppc64.tar.gz#2af6ce32705926ad81e3873917ed67e9298665be4a1b57eed359e485e79b08d7" +binary darwin-arm64 "https://nodejs.org/dist/v22.17.0/node-v22.17.0-darwin-arm64.tar.gz#615dda58b5fb41fad2be43940b6398ca56554cbe05800953afadc724729cb09e" +binary darwin-x64 "https://nodejs.org/dist/v22.17.0/node-v22.17.0-darwin-x64.tar.gz#c39c8ec3cdadedfcc75de0cb3305df95ae2aecebc5db8d68a9b67bd74616d2ad" +binary linux-arm64 "https://nodejs.org/dist/v22.17.0/node-v22.17.0-linux-arm64.tar.gz#3e99df8b01b27dc8b334a2a30d1cd500442b3b0877d217b308fd61a9ccfc33d4" +binary linux-armv7l "https://nodejs.org/dist/v22.17.0/node-v22.17.0-linux-armv7l.tar.gz#ce120efe921de3eaaba2394edaacfab3e61376a56199cb93fc7e9bf0b3f14a16" +binary linux-ppc64le "https://nodejs.org/dist/v22.17.0/node-v22.17.0-linux-ppc64le.tar.gz#c3a49ac3d56404290a66afdd9b149d87201fa1dc52740c21cf70b182cf8dfc4c" +binary linux-s390x "https://nodejs.org/dist/v22.17.0/node-v22.17.0-linux-s390x.tar.gz#394f839554bfd8c7e8db006a4de7604553bc478c26e6082749731f6d612c6f78" +binary linux-x64 "https://nodejs.org/dist/v22.17.0/node-v22.17.0-linux-x64.tar.gz#0fa01328a0f3d10800623f7107fbcd654a60ec178fab1ef5b9779e94e0419e1a" + +install_package "node-v22.17.0" "https://nodejs.org/dist/v22.17.0/node-v22.17.0.tar.gz#f8bf095ff559033edf04108fb1f14f72e2be337c609d4f83e8af1e299af7f4b4" From d1a882504601de55d1f922ec802426109180071e Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 25 Jun 2025 02:07:41 +0000 Subject: [PATCH 107/156] 24.3.0 Created with `npm run submit-definitions`. --- share/node-build/24.3.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.3.0 diff --git a/share/node-build/24.3.0 b/share/node-build/24.3.0 new file mode 100644 index 00000000..aaf5842c --- /dev/null +++ b/share/node-build/24.3.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.3.0/node-v24.3.0-aix-ppc64.tar.gz#8dba56a4ecdfac96cb659d153fce30e7718829cb414d4d853cea9f00a6223362" +binary darwin-arm64 "https://nodejs.org/dist/v24.3.0/node-v24.3.0-darwin-arm64.tar.gz#fee91aa5febeda47ef9f6c0afd2f2bcd3dacb0e656c29de0b5274e0ea1ca3565" +binary darwin-x64 "https://nodejs.org/dist/v24.3.0/node-v24.3.0-darwin-x64.tar.gz#0c065ffa4e53b1a172ab9cd8ca08ae141b187aca8a07403c6856a7b8d0024804" +binary linux-arm64 "https://nodejs.org/dist/v24.3.0/node-v24.3.0-linux-arm64.tar.gz#371fc060d5dd4de565586c3cc70034956db67a8f3dae0f0e5724fa56147c472a" +binary linux-ppc64le "https://nodejs.org/dist/v24.3.0/node-v24.3.0-linux-ppc64le.tar.gz#2f3979aa58e30b78205a319f2bcb4c21f849d1f4a31acb753c63a0508046e87f" +binary linux-s390x "https://nodejs.org/dist/v24.3.0/node-v24.3.0-linux-s390x.tar.gz#bb5ca45bab065d7a23cdfda7e682b0aa6c64a3756c92bfc2bf13831731cd6324" +binary linux-x64 "https://nodejs.org/dist/v24.3.0/node-v24.3.0-linux-x64.tar.gz#bbeb5fb8113b44fc30f5a5887dbc0ab66af8e56139f5f9fbe7c7a1aa056246dc" + +install_package "node-v24.3.0" "https://nodejs.org/dist/v24.3.0/node-v24.3.0.tar.gz#f8cc1dcde9b76fa380765204fefbb98e51123e52c919ba4adcf4ccd235bbf70b" From 73a5315be96e41d33a26b14281a557679300e50f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 25 Jun 2025 17:31:06 +0000 Subject: [PATCH 108/156] 5.4.5 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index b73257b9..008ce64d 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.4 +NODE_BUILD_VERSION=5.4.5 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 2793587f..bff585f1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.4", + "version": "5.4.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.4", + "version": "5.4.5", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index a03b013d..029a062a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.4", + "version": "5.4.5", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From c88c27d811e77c0eb69afcba34ed0b062227b072 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 9 Jul 2025 12:54:42 +0000 Subject: [PATCH 109/156] 24.4.0 Created with `npm run submit-definitions`. --- share/node-build/24.4.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.4.0 diff --git a/share/node-build/24.4.0 b/share/node-build/24.4.0 new file mode 100644 index 00000000..df601ff5 --- /dev/null +++ b/share/node-build/24.4.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.4.0/node-v24.4.0-aix-ppc64.tar.gz#41394530a9b85327f1cd6aa618ca351f7386f0d9db41181973abf3f601637508" +binary darwin-arm64 "https://nodejs.org/dist/v24.4.0/node-v24.4.0-darwin-arm64.tar.gz#d7db0e5017d68f4e34405f5c99ad3895481793cc6420550e582b7eedf911780f" +binary darwin-x64 "https://nodejs.org/dist/v24.4.0/node-v24.4.0-darwin-x64.tar.gz#3dea0c90625c2e7be1e71c3561e1e3337d42d7b6e67dd6f3a3709ec12359bec7" +binary linux-arm64 "https://nodejs.org/dist/v24.4.0/node-v24.4.0-linux-arm64.tar.gz#637ab954900450101c9a254df9014771f5f21d5fd12fec53e4cf4f8bae7e7365" +binary linux-ppc64le "https://nodejs.org/dist/v24.4.0/node-v24.4.0-linux-ppc64le.tar.gz#dd7bbd65b315097c685aef1f0f0cd4cb5e605a1a94458dc44cae7da814eb209a" +binary linux-s390x "https://nodejs.org/dist/v24.4.0/node-v24.4.0-linux-s390x.tar.gz#efa22fc1bdb25c9eb656465b9304b02a037c2d07774c9f9adaf3bf3741583cd3" +binary linux-x64 "https://nodejs.org/dist/v24.4.0/node-v24.4.0-linux-x64.tar.gz#292c187efeb7a360dee81efb519518dea2e02cb98e4c0d1d5a0f0af62c31e4b6" + +install_package "node-v24.4.0" "https://nodejs.org/dist/v24.4.0/node-v24.4.0.tar.gz#20d683315d8ecd6ea21a786437d3b680b2a0693646662ddade8ccef4509b78b9" From bd103c3806909f3b019b89fbbd3c86a6f97afaad Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 9 Jul 2025 18:58:09 +0000 Subject: [PATCH 110/156] 5.4.6 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 008ce64d..73e25e2f 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.5 +NODE_BUILD_VERSION=5.4.6 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index bff585f1..b8b90df2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.5", + "version": "5.4.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.5", + "version": "5.4.6", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index 029a062a..c68b0dae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.5", + "version": "5.4.6", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From dd6f37a7ec886fbac289e349eeb597fedb2aa7b0 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:19:10 +0000 Subject: [PATCH 111/156] 20.19.4 Created with `npm run submit-definitions`. --- share/node-build/20.19.4 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.4 diff --git a/share/node-build/20.19.4 b/share/node-build/20.19.4 new file mode 100644 index 00000000..b6f227b5 --- /dev/null +++ b/share/node-build/20.19.4 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.4/node-v20.19.4-aix-ppc64.tar.gz#60230a634608f7ebefe9c56e98c690596e971a76e3ef2f9f90e276a410252ec1" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.4/node-v20.19.4-darwin-arm64.tar.gz#8b89801f527a85e3f7de539512c9dde08673ac99db6458cc7cc627e05d707054" +binary darwin-x64 "https://nodejs.org/dist/v20.19.4/node-v20.19.4-darwin-x64.tar.gz#cc47ed094c1876b211a9091d09a78537c1cbbb0f8cf5a49c9fd79933ee8fd7fd" +binary linux-arm64 "https://nodejs.org/dist/v20.19.4/node-v20.19.4-linux-arm64.tar.gz#d200798332b7a56d355888ce58e6a639fac7939a4833e5bc8780c66888e1ce4d" +binary linux-armv7l "https://nodejs.org/dist/v20.19.4/node-v20.19.4-linux-armv7l.tar.gz#bdff86d5ff91214c6d6c421b42b35442daebcf42f85bbfb6643e7a950a093c3b" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.4/node-v20.19.4-linux-ppc64le.tar.gz#572e3a4cc5371680b763eddda3df45704e3478d3c2d3c774927186184fba3ac9" +binary linux-s390x "https://nodejs.org/dist/v20.19.4/node-v20.19.4-linux-s390x.tar.gz#17a95c4591478bf3ccd8919ff74810feb46d320c73e90430ac8ef0fb724705ae" +binary linux-x64 "https://nodejs.org/dist/v20.19.4/node-v20.19.4-linux-x64.tar.gz#d80a33707605ced9a31b8f543cea9ab512bc3d2fef2c148f31a50e939ff07560" + +install_package "node-v20.19.4" "https://nodejs.org/dist/v20.19.4/node-v20.19.4.tar.gz#cc363c0a90fe5025939175c1c29ab67235f36ebe4b5d78506634da27a73eef5d" From 6e0beb1edac5f6fb690b1998b0818fdd236a8017 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:19:10 +0000 Subject: [PATCH 112/156] 22.17.1 Created with `npm run submit-definitions`. --- share/node-build/22.17.1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.17.1 diff --git a/share/node-build/22.17.1 b/share/node-build/22.17.1 new file mode 100644 index 00000000..1bd00db6 --- /dev/null +++ b/share/node-build/22.17.1 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.17.1/node-v22.17.1-aix-ppc64.tar.gz#988da3f531740238fea22bd73bd27b3d3a9d780c3248494ae797fd1dc4737b6e" +binary darwin-arm64 "https://nodejs.org/dist/v22.17.1/node-v22.17.1-darwin-arm64.tar.gz#a983f4f2a7b71512b78d7935b9ccf6b72120a255810070afd635c4146bca7b31" +binary darwin-x64 "https://nodejs.org/dist/v22.17.1/node-v22.17.1-darwin-x64.tar.gz#b925103150fac0d23a44a45b2d88a01b73e5fff101e5dcfbae98d32c08d4bee3" +binary linux-arm64 "https://nodejs.org/dist/v22.17.1/node-v22.17.1-linux-arm64.tar.gz#f53510706998cf044f634190416f0588e7e1937aecea938768952e0f0ac1f41b" +binary linux-armv7l "https://nodejs.org/dist/v22.17.1/node-v22.17.1-linux-armv7l.tar.gz#520dcd113eca345074cab3c3e7c23b93517a6a0a22fac98e843b195fcfdcc5d7" +binary linux-ppc64le "https://nodejs.org/dist/v22.17.1/node-v22.17.1-linux-ppc64le.tar.gz#c07ee9fb0c0396f5551a9c0228570fdb45ebf21ba9723f7098671320f364a202" +binary linux-s390x "https://nodejs.org/dist/v22.17.1/node-v22.17.1-linux-s390x.tar.gz#5ee94f6e421a383435c2f96b8e5742ad0eea54a851dc6b66583fc28a2f84cd33" +binary linux-x64 "https://nodejs.org/dist/v22.17.1/node-v22.17.1-linux-x64.tar.gz#cfb6ac0cf339825fe36efd1f18a79016b02aca19fbfa6c9547c57e27dc09f6ea" + +install_package "node-v22.17.1" "https://nodejs.org/dist/v22.17.1/node-v22.17.1.tar.gz#167539d86368bb911488f888a05355df5002b302285d353179c9dd957233add5" From 1db2fa1c203cd1a8a699cb012217215e40db275f Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:19:10 +0000 Subject: [PATCH 113/156] 24.4.1 Created with `npm run submit-definitions`. --- share/node-build/24.4.1 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.4.1 diff --git a/share/node-build/24.4.1 b/share/node-build/24.4.1 new file mode 100644 index 00000000..63e23975 --- /dev/null +++ b/share/node-build/24.4.1 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.4.1/node-v24.4.1-aix-ppc64.tar.gz#d2b3496c3795515844bd8d2d45404d0e8ddbc714855ce68e895a644a6059feb3" +binary darwin-arm64 "https://nodejs.org/dist/v24.4.1/node-v24.4.1-darwin-arm64.tar.gz#55a772a600b7bdafb4b35945b3935090e27aff9934b4c11b281220fcd99139d7" +binary darwin-x64 "https://nodejs.org/dist/v24.4.1/node-v24.4.1-darwin-x64.tar.gz#59fbad953a0705e78d220079fb6d10d341d0a61afd3aeb4db2a87207fddd8944" +binary linux-arm64 "https://nodejs.org/dist/v24.4.1/node-v24.4.1-linux-arm64.tar.gz#fde5421e2652e51199bc678e1e6c4d80bbb4c55337ec0a82206568517e9792ef" +binary linux-ppc64le "https://nodejs.org/dist/v24.4.1/node-v24.4.1-linux-ppc64le.tar.gz#b4ee745e4d8a2c3f3a793a50695d769322b81c79f2b7b79c2a359bca892a0f36" +binary linux-s390x "https://nodejs.org/dist/v24.4.1/node-v24.4.1-linux-s390x.tar.gz#8c9a680c3ae7c8b4a02f55faa055d960ab639a67b257efe7a466d49934746630" +binary linux-x64 "https://nodejs.org/dist/v24.4.1/node-v24.4.1-linux-x64.tar.gz#063f2eb299ba60e3fc9b424d8e87d0e2f6be84b39bdeadc421ee2865914c498b" + +install_package "node-v24.4.1" "https://nodejs.org/dist/v24.4.1/node-v24.4.1.tar.gz#f5d4525390f67bd2ba91efe2ad94722f570a9a4fd18756ab420cb5885d0f6c10" From 9632092695f18330ac2059d18b3283645f848adb Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 16 Jul 2025 02:45:34 +0000 Subject: [PATCH 114/156] 5.4.7 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 73e25e2f..814bee7a 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.6 +NODE_BUILD_VERSION=5.4.7 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index b8b90df2..e4162397 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.6", + "version": "5.4.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.6", + "version": "5.4.7", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.1", diff --git a/package.json b/package.json index c68b0dae..c52aaff8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.6", + "version": "5.4.7", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 2842613b764bd6e312e056d53a24725a216e91cb Mon Sep 17 00:00:00 2001 From: "stepsecurity-app[bot]" <188008098+stepsecurity-app[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 19:27:42 +0000 Subject: [PATCH 115/156] [StepSecurity] Apply security best practices Signed-off-by: StepSecurity Bot --- .github/workflows/definitions.yml | 10 ++++++++++ .github/workflows/test.yml | 15 +++++++++++++++ .github/workflows/version.yml | 5 +++++ 3 files changed, 30 insertions(+) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 5e775728..97d03698 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -9,6 +9,11 @@ jobs: scrape: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run scrape-definitions @@ -34,6 +39,11 @@ jobs: lts: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run lint:lts -- --fix diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b11a8e3..47fc4f2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,11 @@ jobs: permissions: {contents: read, security-events: write} runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - uses: redhat-plumbers-in-action/differential-shellcheck@929381c602ed76daa9b523e001ee29b82bd6d8e9 # v5.5.4 @@ -32,6 +37,11 @@ jobs: lts: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run lint:lts @@ -40,6 +50,11 @@ jobs: runs-on: ubuntu-latest steps: # FIXME workaround https://github.com/actions/checkout/issues/910 + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: { fetch-depth: 0 } - run: npm ci diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index df18736b..8facd917 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -15,6 +15,11 @@ jobs: bump: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: + egress-policy: audit + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 From 4484b50b28dc05f00d8cfcca87640883a7086235 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 14:58:57 +0000 Subject: [PATCH 116/156] Bump redhat-plumbers-in-action/differential-shellcheck Bumps [redhat-plumbers-in-action/differential-shellcheck](https://github.com/redhat-plumbers-in-action/differential-shellcheck) from 5.5.4 to 5.5.5. - [Release notes](https://github.com/redhat-plumbers-in-action/differential-shellcheck/releases) - [Changelog](https://github.com/redhat-plumbers-in-action/differential-shellcheck/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/redhat-plumbers-in-action/differential-shellcheck/compare/929381c602ed76daa9b523e001ee29b82bd6d8e9...0d9e5b29625f871e6a4215380486d6f1a7cb6cdd) --- updated-dependencies: - dependency-name: redhat-plumbers-in-action/differential-shellcheck dependency-version: 5.5.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b11a8e3..ac787f1b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@929381c602ed76daa9b523e001ee29b82bd6d8e9 # v5.5.4 + - uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd # v5.5.5 with: severity: error # TODO strengthen token: ${{ secrets.GITHUB_TOKEN }} From f771b0534431dc35fa1c76cd25fa8ae99145c989 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 21 Jul 2025 16:42:13 -0400 Subject: [PATCH 117/156] Batch and cooldown dependabot PRs --- .github/dependabot.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc69dfff..f33183a0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,18 @@ -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates +# Please see the documentation for all configuration options: +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference version: 2 updates: - - package-ecosystem: github-actions + - package-ecosystem: npm directory: "/" schedule: { interval: weekly } - - package-ecosystem: npm + cooldown: { default-days: 15 } + groups: + dev-deps: { dependency-type: development } + + - package-ecosystem: github-actions directory: "/" schedule: { interval: weekly } + cooldown: { default-days: 15 } + groups: + gh-actions: { patterns: ["*"] } From 1ba0089f4eafe43ce901559829104a279c572021 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 21 Jul 2025 20:02:03 -0400 Subject: [PATCH 118/156] Reduce default permissions --- .github/workflows/test.yml | 32 +++++++++++++------------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a468b06..85138e09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,11 @@ name: Test on: + push: pull_request: - push: {branches: main} - schedule: [{cron: '0 0 10 * *'}] # monthly https://crontab.guru/#0_0_10_*_* + schedule: [{ cron: "0 0 10 * *" }] # monthly https://crontab.guru/#0_0_10_*_* workflow_dispatch: -permissions: {contents: read} + +permissions: {} jobs: test: @@ -22,11 +23,8 @@ jobs: permissions: {contents: read, security-events: write} runs-on: ubuntu-latest steps: - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: - egress-policy: audit - + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: {fetch-depth: 0} - uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd # v5.5.5 @@ -37,27 +35,23 @@ jobs: lts: runs-on: ubuntu-latest steps: - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: - egress-policy: audit - + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci + - run: npm run lint:lts checksums: runs-on: ubuntu-latest steps: - # FIXME workaround https://github.com/actions/checkout/issues/910 - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: - egress-policy: audit - + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: { fetch-depth: 0 } - run: npm ci + + # FIXME workaround https://github.com/actions/checkout/issues/910 - if: github.event_name == 'pull_request' run: npm run lint:checksums -- origin/${{github.base_ref}} - run: npm run lint:checksums -- HEAD^ From 07fda433c2b5b2b878db60b40a86c47164d63c0f Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Jul 2025 09:58:04 -0400 Subject: [PATCH 119/156] Ungroup dependabot --- .github/dependabot.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f33183a0..ad24d052 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,12 +7,8 @@ updates: directory: "/" schedule: { interval: weekly } cooldown: { default-days: 15 } - groups: - dev-deps: { dependency-type: development } - package-ecosystem: github-actions directory: "/" schedule: { interval: weekly } cooldown: { default-days: 15 } - groups: - gh-actions: { patterns: ["*"] } From 0357767f05c19f8952b1ccdc220517d7aee59b87 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Jul 2025 15:46:56 -0400 Subject: [PATCH 120/156] Set permissions at the job level --- .github/workflows/definitions.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 97d03698..37186c08 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -3,11 +3,11 @@ on: schedule: [{cron: '0 */6 * * *'}] # 6hrly https://crontab.guru/#0_*/6_*_*_* workflow_dispatch: -permissions: {contents: read} - +permissions: {} jobs: scrape: runs-on: ubuntu-latest + permissions: { contents: read } steps: - name: Harden the runner (Audit all outbound calls) uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 @@ -38,6 +38,7 @@ jobs: lts: runs-on: ubuntu-latest + permissions: { contents: read } steps: - name: Harden the runner (Audit all outbound calls) uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 From a5563ed7bfc9ed5071a6dc90d219f1643cd97205 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Jul 2025 15:47:08 -0400 Subject: [PATCH 121/156] Simplify the harden-runner config --- .github/workflows/definitions.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 37186c08..ea2f63d6 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -9,11 +9,8 @@ jobs: runs-on: ubuntu-latest permissions: { contents: read } steps: - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: - egress-policy: audit - + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run scrape-definitions @@ -40,11 +37,8 @@ jobs: runs-on: ubuntu-latest permissions: { contents: read } steps: - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: - egress-policy: audit - + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci - run: npm run lint:lts -- --fix From 7897b44c262866b84a970bf12aa8f6cb2c616e57 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Jul 2025 15:49:03 -0400 Subject: [PATCH 122/156] Prettier yaml format --- .github/ISSUE_TEMPLATE/bug.md | 5 +- .github/ISSUE_TEMPLATE/enhancement.md | 5 +- .github/workflows/definitions.yml | 80 +++++++++++------------ .github/workflows/release.yml | 6 +- .github/workflows/sync-default-branch.yml | 3 +- .github/workflows/test.yml | 50 +++++++------- .github/workflows/version.yml | 10 +-- 7 files changed, 78 insertions(+), 81 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.md b/.github/ISSUE_TEMPLATE/bug.md index 915928f1..76d99245 100644 --- a/.github/ISSUE_TEMPLATE/bug.md +++ b/.github/ISSUE_TEMPLATE/bug.md @@ -1,10 +1,9 @@ --- name: "🐛 Bug report" about: Report a bug with node-build. For "BUILD FAILED" scenarios, see below -title: '' +title: "" labels: bug -assignees: '' - +assignees: "" --- ### Steps to reproduce the behavior diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md index 37a6ae24..b7922c8a 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -1,8 +1,7 @@ --- name: "⭐ Submit a feature request" about: Suggest a feature to be added to node-build -title: '' +title: "" labels: enhancement -assignees: '' - +assignees: "" --- diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index ea2f63d6..df42602c 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -1,6 +1,6 @@ name: Definitions on: - schedule: [{cron: '0 */6 * * *'}] # 6hrly https://crontab.guru/#0_*/6_*_*_* + schedule: [{ cron: "0 */6 * * *" }] # 6hrly https://crontab.guru/#0_*/6_*_*_* workflow_dispatch: permissions: {} @@ -9,48 +9,48 @@ jobs: runs-on: ubuntu-latest permissions: { contents: read } steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - run: npm ci - - run: npm run scrape-definitions - - run: npm run lint:lts -- --fix - continue-on-error: true - - run: npm run commit-definitions - env: - GIT_AUTHOR_NAME: ${{ vars.NODENV_BOT_NAME }} - GIT_AUTHOR_EMAIL: ${{ vars.NODENV_BOT_EMAIL }} - GIT_COMMITTER_NAME: ${{ vars.GHA_BOT_NAME }} - GIT_COMMITTER_EMAIL: ${{ vars.GHA_BOT_EMAIL }} - - id: log - run: | - msg=$(git log --format='- %s' --reverse ${{github.sha}}..) - echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_OUTPUT - - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 - with: - token: ${{ secrets.BOT_TOKEN }} - branch: latest-scraped-definitions - title: 'Scraped latest definitions' - body: ${{ steps.log.outputs.message }} + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - run: npm ci + - run: npm run scrape-definitions + - run: npm run lint:lts -- --fix + continue-on-error: true + - run: npm run commit-definitions + env: + GIT_AUTHOR_NAME: ${{ vars.NODENV_BOT_NAME }} + GIT_AUTHOR_EMAIL: ${{ vars.NODENV_BOT_EMAIL }} + GIT_COMMITTER_NAME: ${{ vars.GHA_BOT_NAME }} + GIT_COMMITTER_EMAIL: ${{ vars.GHA_BOT_EMAIL }} + - id: log + run: | + msg=$(git log --format='- %s' --reverse ${{github.sha}}..) + echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_OUTPUT + - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 + with: + token: ${{ secrets.BOT_TOKEN }} + branch: latest-scraped-definitions + title: "Scraped latest definitions" + body: ${{ steps.log.outputs.message }} lts: runs-on: ubuntu-latest permissions: { contents: read } steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - run: npm ci - - run: npm run lint:lts -- --fix - - if: failure() - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 - with: - token: ${{ secrets.BOT_TOKEN }} - committer: 'nodenv bot ' - commit-message: 'Add LTS warning messages' - branch: lts-warning-message - title: 'Adds/Updates LTS warning messages' - body: |- - [![node lts schedule](https://raw.githubusercontent.com/nodejs/Release/main/schedule.svg)](https://github.com/nodejs/Release) + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - run: npm ci + - run: npm run lint:lts -- --fix + - if: failure() + uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 + with: + token: ${{ secrets.BOT_TOKEN }} + committer: "nodenv bot " + commit-message: "Add LTS warning messages" + branch: lts-warning-message + title: "Adds/Updates LTS warning messages" + body: |- + [![node lts schedule](https://raw.githubusercontent.com/nodejs/Release/main/schedule.svg)](https://github.com/nodejs/Release) - > Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action + > Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4c3212cb..f0a2bbde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,10 @@ name: Release on: - push: { tags: 'v[0-9]+.[0-9]+.[0-9]+*' } -permissions: {contents: read} + push: { tags: "v[0-9]+.[0-9]+.[0-9]+*" } +permissions: { contents: read } jobs: release: - permissions: {contents: write, id-token: write} + permissions: { contents: write, id-token: write } uses: nodenv/.github/.github/workflows/release.yml@v5 secrets: inherit diff --git a/.github/workflows/sync-default-branch.yml b/.github/workflows/sync-default-branch.yml index 9d122c79..0d3b55e8 100644 --- a/.github/workflows/sync-default-branch.yml +++ b/.github/workflows/sync-default-branch.yml @@ -6,9 +6,8 @@ permissions: {} jobs: sync: - permissions: {contents: write} + permissions: { contents: write } uses: nodenv/.github/.github/workflows/sync-default-branch.yml@v5 - # One-time commands for users to switch-over: # # ```console diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 85138e09..b8bf3f50 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ permissions: {} jobs: test: uses: nodenv/.github/.github/workflows/test.yml@v5 - with: {superlinter: false} # TODO renable superlinter + with: { superlinter: false } # TODO renable superlinter permissions: contents: read packages: read @@ -20,39 +20,39 @@ jobs: # https://github.com/redhat-plumbers-in-action/differential-shellcheck shellcheck: - permissions: {contents: read, security-events: write} + permissions: { contents: read, security-events: write } runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: {fetch-depth: 0} - - uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd # v5.5.5 - with: - severity: error # TODO strengthen - token: ${{ secrets.GITHUB_TOKEN }} + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: { fetch-depth: 0 } + - uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd # v5.5.5 + with: + severity: error # TODO strengthen + token: ${{ secrets.GITHUB_TOKEN }} lts: runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - run: npm ci + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - run: npm ci - - run: npm run lint:lts + - run: npm run lint:lts checksums: runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 - with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - with: { fetch-depth: 0 } - - run: npm ci + - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + with: { egress-policy: audit } + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + with: { fetch-depth: 0 } + - run: npm ci - # FIXME workaround https://github.com/actions/checkout/issues/910 - - if: github.event_name == 'pull_request' - run: npm run lint:checksums -- origin/${{github.base_ref}} - - run: npm run lint:checksums -- HEAD^ - if: github.event_name == 'push' + # FIXME workaround https://github.com/actions/checkout/issues/910 + - if: github.event_name == 'pull_request' + run: npm run lint:checksums -- origin/${{github.base_ref}} + - run: npm run lint:checksums -- HEAD^ + if: github.event_name == 'push' diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 8facd917..6d76368a 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -1,15 +1,15 @@ name: Version Bump on: - push: { branches: main, paths: "share/node-build/**"} - schedule: [{ cron: '0 10 * * *' }] # daily: https://crontab.guru/#0_10_*_*_* + push: { branches: main, paths: "share/node-build/**" } + schedule: [{ cron: "0 10 * * *" }] # daily: https://crontab.guru/#0_10_*_*_* workflow_dispatch: inputs: version: - description: 'An explicit version (or major|minor|patch) to tag.' - default: '' + description: "An explicit version (or major|minor|patch) to tag." + default: "" required: false type: string -permissions: {contents: read} +permissions: { contents: read } jobs: bump: From 805b806f043709c954ec3a111cb57245b2cbd2e2 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Wed, 23 Jul 2025 15:55:48 -0400 Subject: [PATCH 123/156] Fix scaper PR body formatting --- .github/workflows/definitions.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index df42602c..c4dbb23e 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -13,6 +13,7 @@ jobs: with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci + - run: npm run scrape-definitions - run: npm run lint:lts -- --fix continue-on-error: true @@ -22,16 +23,14 @@ jobs: GIT_AUTHOR_EMAIL: ${{ vars.NODENV_BOT_EMAIL }} GIT_COMMITTER_NAME: ${{ vars.GHA_BOT_NAME }} GIT_COMMITTER_EMAIL: ${{ vars.GHA_BOT_EMAIL }} - - id: log - run: | - msg=$(git log --format='- %s' --reverse ${{github.sha}}..) - echo "message=${msg//$'\n'/'%0A'}" >> $GITHUB_OUTPUT + + - run: git log --format='- %s' --reverse ${{github.sha}}.. >> ${{ runner.temp }}/pr-body - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: token: ${{ secrets.BOT_TOKEN }} branch: latest-scraped-definitions title: "Scraped latest definitions" - body: ${{ steps.log.outputs.message }} + body-path: ${{ runner.temp }}/pr-body lts: runs-on: ubuntu-latest @@ -41,7 +40,9 @@ jobs: with: { egress-policy: audit } - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - run: npm ci + - run: npm run lint:lts -- --fix + - if: failure() uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 with: From 8285b1d3526b5fb891144e9e4e8c5851a53336fb Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Sat, 26 Jul 2025 16:25:34 +0000 Subject: [PATCH 124/156] Update @nodenv/node-build-update-defs to version 2.11.2 --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index e4162397..6d4141da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "5.4.7", "license": "MIT", "devDependencies": { - "@nodenv/node-build-update-defs": "^2.11.1", + "@nodenv/node-build-update-defs": "^2.11.2", "bats": "^1.11.0", "bats-assert": "github:jasonkarns/bats-assert-1", "bats-mock": "^1", @@ -17,9 +17,9 @@ } }, "node_modules/@nodenv/node-build-update-defs": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/@nodenv/node-build-update-defs/-/node-build-update-defs-2.11.1.tgz", - "integrity": "sha512-T6iXD6U5gqaBsEfNihPbBH8m1w5rID4DKxq4b++JGPKg4d5AcPmJeT6sck9fFqpoLo9iM38bJlGiia2OSZ4u0w==", + "version": "2.11.2", + "resolved": "https://registry.npmjs.org/@nodenv/node-build-update-defs/-/node-build-update-defs-2.11.2.tgz", + "integrity": "sha512-eS1ox49KP2cLima5H+lhtLs2vX6FphYTcpcmNhWH0lN1BFtbJworoLWEwBrcgOsuKoaDOSAz4ZAwKryWPUHfTg==", "dev": true, "hasInstallScript": true, "bin": { diff --git a/package.json b/package.json index c52aaff8..e922081b 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "unmerged": "git for-each-ref refs/rbtags --format='%(creatordate:short) %(refname:short) https://github.com/rbenv/ruby-build/releases/tag/%(refname:lstrip=-1)' --no-merged" }, "devDependencies": { - "@nodenv/node-build-update-defs": "^2.11.1", + "@nodenv/node-build-update-defs": "^2.11.2", "bats": "^1.11.0", "bats-assert": "github:jasonkarns/bats-assert-1", "bats-mock": "^1", From f0ec25f578b6180b6c1af3210e1fca4b03d2a598 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 1 Aug 2025 02:34:43 +0000 Subject: [PATCH 125/156] 22.18.0 Created with `npm run submit-definitions`. --- share/node-build/22.18.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.18.0 diff --git a/share/node-build/22.18.0 b/share/node-build/22.18.0 new file mode 100644 index 00000000..b7fe1b6b --- /dev/null +++ b/share/node-build/22.18.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.18.0/node-v22.18.0-aix-ppc64.tar.gz#7bb75af308fc9f63e568968e0ef0e1600bb105abe2d2af99217ac72e9a24ffd0" +binary darwin-arm64 "https://nodejs.org/dist/v22.18.0/node-v22.18.0-darwin-arm64.tar.gz#2c12913cba67af77ded8a399df3fd91c2e7f8628c7079da40bb9ff33bf00dfc0" +binary darwin-x64 "https://nodejs.org/dist/v22.18.0/node-v22.18.0-darwin-x64.tar.gz#9c8aa1e5ff5780b38cc1134e2263d84e2f4308eb84c02515e3af33936ca02cdc" +binary linux-arm64 "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-arm64.tar.gz#d415eeea90a2fdb60c66dd386b258acbfc4d1fa4720a8df5dea7369fbdbcddee" +binary linux-armv7l "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-armv7l.tar.gz#57830914581dc3640e8d95378b76c6910860f42531959e4e88eb445e0cd982b0" +binary linux-ppc64le "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-ppc64le.tar.gz#38f965cbaa5e730dbd3b1afe895cfdb86da96371474827d05d847d338a0c9c97" +binary linux-s390x "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-s390x.tar.gz#f3578b0e7cdf247045f6eeb766febd74942954352161102cb6040a4d4c3b4c3c" +binary linux-x64 "https://nodejs.org/dist/v22.18.0/node-v22.18.0-linux-x64.tar.gz#a2e703725d8683be86bb5da967bf8272f4518bdaf10f21389e2b2c9eaeae8c8a" + +install_package "node-v22.18.0" "https://nodejs.org/dist/v22.18.0/node-v22.18.0.tar.gz#26247ff9a75ac13f6dac7e07dca6172314554dcf20761675c5435f1e84e6c4b2" From 750b34418ced1f989ced885e41954766a32c592a Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 1 Aug 2025 02:34:43 +0000 Subject: [PATCH 126/156] 24.5.0 Created with `npm run submit-definitions`. --- share/node-build/24.5.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.5.0 diff --git a/share/node-build/24.5.0 b/share/node-build/24.5.0 new file mode 100644 index 00000000..4932ea00 --- /dev/null +++ b/share/node-build/24.5.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.5.0/node-v24.5.0-aix-ppc64.tar.gz#f2825d209bb71f24f2e886082631e9b68163f504628ee01d01a5bd250eaafec6" +binary darwin-arm64 "https://nodejs.org/dist/v24.5.0/node-v24.5.0-darwin-arm64.tar.gz#2a4172474565ecb8f0c87a1520590e00d6b28a78594c220d38eef991763dc276" +binary darwin-x64 "https://nodejs.org/dist/v24.5.0/node-v24.5.0-darwin-x64.tar.gz#2396c3dd148c8fce15593da27f839248cdea15aad971078ea7c06c73ba970f64" +binary linux-arm64 "https://nodejs.org/dist/v24.5.0/node-v24.5.0-linux-arm64.tar.gz#c643c118d907c8db42a677a12789eb5d55ad6de4b8e2c11bab08dbd23852da2e" +binary linux-ppc64le "https://nodejs.org/dist/v24.5.0/node-v24.5.0-linux-ppc64le.tar.gz#7f45e28aedae5a4077c04fa1934268c9e3620dcfb105624517c2410ca1deb00d" +binary linux-s390x "https://nodejs.org/dist/v24.5.0/node-v24.5.0-linux-s390x.tar.gz#1d151244f5502ff7e72271e603889d789dec021f0cb28148d90f4a8ce89eaf30" +binary linux-x64 "https://nodejs.org/dist/v24.5.0/node-v24.5.0-linux-x64.tar.gz#369f2a3668dde7e324697040fafdcf442fd198b8c102317145417b3c83a9794a" + +install_package "node-v24.5.0" "https://nodejs.org/dist/v24.5.0/node-v24.5.0.tar.gz#27a05a6925c1d9f023856513c93e4b4d34344fe95e19e0204d182f903fb120dc" From c2312f850e27a018faafd635d7bfae243c267f55 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 1 Aug 2025 11:56:50 +0000 Subject: [PATCH 127/156] 5.4.8 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 814bee7a..78528e9a 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.7 +NODE_BUILD_VERSION=5.4.8 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 6d4141da..aa6b7a3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.7", + "version": "5.4.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.7", + "version": "5.4.8", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.2", diff --git a/package.json b/package.json index e922081b..a37e2702 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.7", + "version": "5.4.8", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 82dac8c5e2ca97c4357b17eaf170f136d4a70e2a Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Thu, 7 Aug 2025 16:32:33 -0400 Subject: [PATCH 128/156] Open GH Issue for wiki edits --- .github/workflows/wiki.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/wiki.yml diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml new file mode 100644 index 00000000..a2b560fb --- /dev/null +++ b/.github/workflows/wiki.yml @@ -0,0 +1,19 @@ +on: gollum + +permissions: { issues: write } +jobs: + notify: + runs-on: ubuntu-latest + steps: + - run: > + gh issue new --label wiki -R ${{ github.repository }} + --title "wiki edit by @${{ github.event.sender.login }}" + --body-file - < Date: Fri, 15 Aug 2025 02:09:24 +0000 Subject: [PATCH 129/156] 24.6.0 Created with `npm run submit-definitions`. --- share/node-build/24.6.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.6.0 diff --git a/share/node-build/24.6.0 b/share/node-build/24.6.0 new file mode 100644 index 00000000..75e50e0f --- /dev/null +++ b/share/node-build/24.6.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.6.0/node-v24.6.0-aix-ppc64.tar.gz#7979be510ff68962e16891ee29c91080e321d7a55b9fbc6b398d8c20a5932bdf" +binary darwin-arm64 "https://nodejs.org/dist/v24.6.0/node-v24.6.0-darwin-arm64.tar.gz#768f14952403e3025fed8e2887500dfa63eeb55628a9b203e4b8ebb0fb09c7eb" +binary darwin-x64 "https://nodejs.org/dist/v24.6.0/node-v24.6.0-darwin-x64.tar.gz#695fc33454821b216d68cb198d646a9ad769c77d7c323e738381233e4666dffe" +binary linux-arm64 "https://nodejs.org/dist/v24.6.0/node-v24.6.0-linux-arm64.tar.gz#8956e11dbef5b197d62eb8b5b97a131eb42fbb25347fe0cdc9b62a1c1aa36df5" +binary linux-ppc64le "https://nodejs.org/dist/v24.6.0/node-v24.6.0-linux-ppc64le.tar.gz#fafc88baa9acb9fbf82a0898eb80659918534c0ed6d19a490d86756304c66e67" +binary linux-s390x "https://nodejs.org/dist/v24.6.0/node-v24.6.0-linux-s390x.tar.gz#1cd77586b48b6db1b5248669619c62c785aeca247a4bfaae95fe9820b77a5405" +binary linux-x64 "https://nodejs.org/dist/v24.6.0/node-v24.6.0-linux-x64.tar.gz#352ddbc48b586c11f018ec9b886225117909ea93e05b4a04a6db32f3e63d0281" + +install_package "node-v24.6.0" "https://nodejs.org/dist/v24.6.0/node-v24.6.0.tar.gz#eba12bb7a8bcd8d5e0bebb9d7733f34d3e4854db4e890702c32f1060151097ed" From fa2a30f8a96c2c03ad8422c32d27737573ae62b4 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 15 Aug 2025 13:58:16 +0000 Subject: [PATCH 130/156] 5.4.9 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 78528e9a..f8efa106 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.8 +NODE_BUILD_VERSION=5.4.9 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index aa6b7a3a..e985f152 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.8", + "version": "5.4.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.8", + "version": "5.4.9", "license": "MIT", "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.2", diff --git a/package.json b/package.json index a37e2702..185a012e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.8", + "version": "5.4.9", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From f3696a3c12d25d8fff0d9c68f5a6eba382abfbdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 17:19:34 +0000 Subject: [PATCH 131/156] Bump bats-assert from `912a988` to `3be0fb7` Bumps [bats-assert](https://github.com/jasonkarns/bats-assert-1) from `912a988` to `3be0fb7`. - [Release notes](https://github.com/jasonkarns/bats-assert-1/releases) - [Commits](https://github.com/jasonkarns/bats-assert-1/compare/912a98804efd34f24d5eae1bf97ee622ca770e99...3be0fb7856791b4a64aef7a1336e965f5252e45f) --- updated-dependencies: - dependency-name: bats-assert dependency-version: 3be0fb7856791b4a64aef7a1336e965f5252e45f dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e985f152..d6f95335 100644 --- a/package-lock.json +++ b/package-lock.json @@ -41,9 +41,9 @@ } }, "node_modules/bats-assert": { - "version": "2.1.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#912a98804efd34f24d5eae1bf97ee622ca770e99", - "integrity": "sha512-8Pc3O9hRB49qBv8TblBIGyObo/+C0XI89ssIsB0xcCLaX0KLbAsJOZj1OyjEDbrlxqNrjdMxs2GkseoyQeKmFg==", + "version": "2.2.0", + "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#3be0fb7856791b4a64aef7a1336e965f5252e45f", + "integrity": "sha512-kOtHQSBzhDwQK/hl93bQutS/Ar3xmIuxHo+0Tn1Ez9ltYaQOewGf1BlRJJCWC1g3P3bn65BDaHzAxJgCKashjQ==", "dev": true, "license": "CC0-1.0", "peerDependencies": { From f1d56ffb75ab6496270c50f38c0093e874993ca6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 19:18:26 +0000 Subject: [PATCH 132/156] Bump nodenv/.github from 5 to 6 Bumps [nodenv/.github](https://github.com/nodenv/.github) from 5 to 6. - [Release notes](https://github.com/nodenv/.github/releases) - [Commits](https://github.com/nodenv/.github/compare/v5...v6) --- updated-dependencies: - dependency-name: nodenv/.github dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- .github/workflows/sync-default-branch.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0a2bbde..055957ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,5 +6,5 @@ permissions: { contents: read } jobs: release: permissions: { contents: write, id-token: write } - uses: nodenv/.github/.github/workflows/release.yml@v5 + uses: nodenv/.github/.github/workflows/release.yml@v6 secrets: inherit diff --git a/.github/workflows/sync-default-branch.yml b/.github/workflows/sync-default-branch.yml index 0d3b55e8..44059111 100644 --- a/.github/workflows/sync-default-branch.yml +++ b/.github/workflows/sync-default-branch.yml @@ -7,7 +7,7 @@ permissions: {} jobs: sync: permissions: { contents: write } - uses: nodenv/.github/.github/workflows/sync-default-branch.yml@v5 + uses: nodenv/.github/.github/workflows/sync-default-branch.yml@v6 # One-time commands for users to switch-over: # # ```console diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8bf3f50..4374d5ba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ permissions: {} jobs: test: - uses: nodenv/.github/.github/workflows/test.yml@v5 + uses: nodenv/.github/.github/workflows/test.yml@v6 with: { superlinter: false } # TODO renable superlinter permissions: contents: read From 0a27df7c4f9f8213c2f8783323d1cb922dc3d5cb Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Tue, 19 Aug 2025 09:57:51 -0400 Subject: [PATCH 133/156] Pull bats-assert from npm --- package-lock.json | 11 ++++++++--- package.json | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d6f95335..8de9ea98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,10 +8,15 @@ "name": "@nodenv/node-build", "version": "5.4.9", "license": "MIT", + "bin": { + "node-build": "bin/node-build", + "nodenv-install": "bin/nodenv-install", + "nodenv-uninstall": "bin/nodenv-uninstall" + }, "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.2", "bats": "^1.11.0", - "bats-assert": "github:jasonkarns/bats-assert-1", + "bats-assert": "^2.2.0", "bats-mock": "^1", "bats-support": "github:jasonkarns/bats-support" } @@ -42,8 +47,8 @@ }, "node_modules/bats-assert": { "version": "2.2.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-assert-1.git#3be0fb7856791b4a64aef7a1336e965f5252e45f", - "integrity": "sha512-kOtHQSBzhDwQK/hl93bQutS/Ar3xmIuxHo+0Tn1Ez9ltYaQOewGf1BlRJJCWC1g3P3bn65BDaHzAxJgCKashjQ==", + "resolved": "https://registry.npmjs.org/bats-assert/-/bats-assert-2.2.0.tgz", + "integrity": "sha512-UwS5N8JItn8gCiFl5LegBgVzSAy4Wpj241FebQXpiF+17yzeuMGLF/n9mUze4fmRUXryF/8nb3aAh+C7sTfQ2g==", "dev": true, "license": "CC0-1.0", "peerDependencies": { diff --git a/package.json b/package.json index 185a012e..77f8d5c4 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.2", "bats": "^1.11.0", - "bats-assert": "github:jasonkarns/bats-assert-1", + "bats-assert": "^2.2.0", "bats-mock": "^1", "bats-support": "github:jasonkarns/bats-support" } From f6853cfe7ec70e4610e222b27cd4c957868eba25 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Fri, 22 Aug 2025 19:28:51 -0400 Subject: [PATCH 134/156] Inherit CODE_OF_CONDUCT from nodenv/.github --- CODE_OF_CONDUCT.md | 80 ---------------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 4962e82a..00000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,80 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, gender identity and expression, level of experience, -nationality, personal appearance, race, religion, or sexual identity and -orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or -advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting one of the project maintainers listed below. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Project Maintainers - -* Will McKenzie <> -* Jason Karns <> -* Josh Hagins <> - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at [http://contributor-covenant.org/version/1/4][version] - -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ From b15a21c2126e552cbafe488839c8bf3da1287ca9 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Sat, 23 Aug 2025 11:06:39 -0400 Subject: [PATCH 135/156] Ignore unpacked tarball --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2b149a25..6c51e97a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ /node_modules +/package*/ +/tmp + /node-build-*.tgz From 2c866e82de710d68bdc9e188636eebdb1cb75a98 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Sat, 23 Aug 2025 11:07:58 -0400 Subject: [PATCH 136/156] Use bats-support from npm --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8de9ea98..be40059f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,7 +18,7 @@ "bats": "^1.11.0", "bats-assert": "^2.2.0", "bats-mock": "^1", - "bats-support": "github:jasonkarns/bats-support" + "bats-support": "^0.3.0" } }, "node_modules/@nodenv/node-build-update-defs": { @@ -67,8 +67,8 @@ }, "node_modules/bats-support": { "version": "0.3.0", - "resolved": "git+ssh://git@github.com/jasonkarns/bats-support.git#0ad082d4590108684c68975ca517a90459f05cd0", - "integrity": "sha512-lZueJbfb9JqaFTNZcaoj7uhAPxSRKRCe+PBA2Y1OvQEtSQjdVn4v/+QtZlKGq88krlHOA2cpOMHz7VLfwphO8A==", + "resolved": "https://registry.npmjs.org/bats-support/-/bats-support-0.3.0.tgz", + "integrity": "sha512-z+2WzXbI4OZgLnynydqH8GpI3+DcOtepO66PlK47SfEzTkiuV9hxn9eIQX+uLVFbt2Oqoc7Ky3TJ/N83lqD+cg==", "dev": true, "license": "CC0-1.0", "peerDependencies": { diff --git a/package.json b/package.json index 77f8d5c4..14fe583d 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,6 @@ "bats": "^1.11.0", "bats-assert": "^2.2.0", "bats-mock": "^1", - "bats-support": "github:jasonkarns/bats-support" + "bats-support": "^0.3.0" } } From 672b3a5cbb730d0d8edcef685040c87fccc5f361 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 28 Aug 2025 01:56:05 +0000 Subject: [PATCH 137/156] 24.7.0 Created with `npm run submit-definitions`. --- share/node-build/24.7.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.7.0 diff --git a/share/node-build/24.7.0 b/share/node-build/24.7.0 new file mode 100644 index 00000000..79b0a2cf --- /dev/null +++ b/share/node-build/24.7.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.7.0/node-v24.7.0-aix-ppc64.tar.gz#b6424e6e5531842109ad8260f89d7457d8267d4dea5a54056098f70beba06a74" +binary darwin-arm64 "https://nodejs.org/dist/v24.7.0/node-v24.7.0-darwin-arm64.tar.gz#ff8298faaf82c85444aad7f1e12a4882496286ea9008702029b359d7fac7f8b3" +binary darwin-x64 "https://nodejs.org/dist/v24.7.0/node-v24.7.0-darwin-x64.tar.gz#b99548ef56ec86da2ce50eff041d97e14077b77b517c4bcce0925d14c26cbee3" +binary linux-arm64 "https://nodejs.org/dist/v24.7.0/node-v24.7.0-linux-arm64.tar.gz#04df0283d2a8a06271a690fbe2528661527b3a09f0f28c8bb63327d8888be184" +binary linux-ppc64le "https://nodejs.org/dist/v24.7.0/node-v24.7.0-linux-ppc64le.tar.gz#85378129414ca95c509317360c519328ae98d34160fc852408ba0209033e5f82" +binary linux-s390x "https://nodejs.org/dist/v24.7.0/node-v24.7.0-linux-s390x.tar.gz#d5b26b197795872dbd69f4dd8c275e8a08ca1be69c9e013e3cd9a6f68939e59d" +binary linux-x64 "https://nodejs.org/dist/v24.7.0/node-v24.7.0-linux-x64.tar.gz#8cf85258402e056efa041168c9b162a4e3b229ebfad5000850b8941c974e9d5a" + +install_package "node-v24.7.0" "https://nodejs.org/dist/v24.7.0/node-v24.7.0.tar.gz#5ce2df7022d027d439b289e7393e04c494e92dec53aba212781b5f792015138a" From 03e731ce079da26b440b765c04fbbda883b49f42 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 28 Aug 2025 11:14:40 +0000 Subject: [PATCH 138/156] 5.4.10 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index f8efa106..c5a3288d 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.9 +NODE_BUILD_VERSION=5.4.10 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index be40059f..9c4a0cab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.9", + "version": "5.4.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.9", + "version": "5.4.10", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 14fe583d..d9666885 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.9", + "version": "5.4.10", "description": "Install NodeJS versions", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 18ed9fce0166a4190f1baecaf454a582a64ed2d8 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 29 Aug 2025 01:56:03 +0000 Subject: [PATCH 139/156] 22.19.0 Created with `npm run submit-definitions`. --- share/node-build/22.19.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.19.0 diff --git a/share/node-build/22.19.0 b/share/node-build/22.19.0 new file mode 100644 index 00000000..3a30a533 --- /dev/null +++ b/share/node-build/22.19.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.19.0/node-v22.19.0-aix-ppc64.tar.gz#30d83f7c179081542dfe0908d7e27a97ec2270091db6763028356e6750e476b6" +binary darwin-arm64 "https://nodejs.org/dist/v22.19.0/node-v22.19.0-darwin-arm64.tar.gz#c59006db713c770d6ec63ae16cb3edc11f49ee093b5c415d667bb4f436c6526d" +binary darwin-x64 "https://nodejs.org/dist/v22.19.0/node-v22.19.0-darwin-x64.tar.gz#3cfed4795cd97277559763c5f56e711852d2cc2420bda1cea30c8aa9ac77ce0c" +binary linux-arm64 "https://nodejs.org/dist/v22.19.0/node-v22.19.0-linux-arm64.tar.gz#d32817b937219b8f131a28546035183d79e7fd17a86e38ccb8772901a7cd9009" +binary linux-armv7l "https://nodejs.org/dist/v22.19.0/node-v22.19.0-linux-armv7l.tar.gz#969037e6da2a710904d121dcb998510bc0d5d4d61d70ce5eb578096cf36c60e8" +binary linux-ppc64le "https://nodejs.org/dist/v22.19.0/node-v22.19.0-linux-ppc64le.tar.gz#b18b05265c5586e0a7797831ed747eeac7300fd2c495b8b5276596823b076e12" +binary linux-s390x "https://nodejs.org/dist/v22.19.0/node-v22.19.0-linux-s390x.tar.gz#d434665268adf0670a36676f5f3f46aaf5e13aad3fc81dac87119e871745bf22" +binary linux-x64 "https://nodejs.org/dist/v22.19.0/node-v22.19.0-linux-x64.tar.gz#d36e56998220085782c0ca965f9d51b7726335aed2f5fc7321c6c0ad233aa96d" + +install_package "node-v22.19.0" "https://nodejs.org/dist/v22.19.0/node-v22.19.0.tar.gz#4cea680423f98abc6a2a5ca127fb34c5f6586c24217f57749be6ea886c9be9a6" From de6c50d78ea9792e8ae7a2c5f906940358a00b92 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Fri, 29 Aug 2025 15:51:05 -0400 Subject: [PATCH 140/156] Update readme badges --- README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index e0c06d39..76eea5c2 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,9 @@ # node-build -[![Tests]( -https://img.shields.io/github/actions/workflow/status/nodenv/node-build/test.yml?label=tests&logo=github)]( -https://github.com/nodenv/node-build/actions/workflows/test.yml) -[![Latest Homebrew Release]( -https://img.shields.io/homebrew/v/node-build?logo=homebrew&logoColor=white)]( -https://formulae.brew.sh/formula/node-build) -[![Latest GitHub Release]( -https://img.shields.io/github/v/release/nodenv/node-build?label=github&logo=github&sort=semver)]( -https://github.com/nodenv/node-build/releases/latest) -[![Latest npm Release]( -https://img.shields.io/npm/v/@nodenv/node-build?logo=npm&logoColor=white)]( -https://www.npmjs.com/package/@nodenv/node-build/v/latest) +[![Tests](https://img.shields.io/github/actions/workflow/status/nodenv/node-build/test.yml?label=tests&logo=github)](https://github.com/nodenv/node-build/actions/workflows/test.yml) +[![Latest GitHub Release](https://img.shields.io/github/v/release/nodenv/node-build?label=github&logo=github&sort=semver)](https://github.com/nodenv/node-build/releases/latest) +[![Latest Homebrew Release](https://img.shields.io/homebrew/v/node-build?logo=homebrew&logoColor=white)](https://formulae.brew.sh/formula/node-build) +[![Latest npm Release](https://img.shields.io/npm/v/@nodenv/node-build?logo=npm&logoColor=white)](https://www.npmjs.com/package/@nodenv/node-build/v/latest) node-build is a command-line tool that simplifies installation of any Node version from source or precompiled binary on Unix-like systems. From 73caf077095c07628a53e9ae0968dac992fce5b3 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Fri, 29 Aug 2025 15:53:13 -0400 Subject: [PATCH 141/156] Add top-line description --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 76eea5c2..f767d44c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # node-build +Install NodeJS versions + [![Tests](https://img.shields.io/github/actions/workflow/status/nodenv/node-build/test.yml?label=tests&logo=github)](https://github.com/nodenv/node-build/actions/workflows/test.yml) [![Latest GitHub Release](https://img.shields.io/github/v/release/nodenv/node-build?label=github&logo=github&sort=semver)](https://github.com/nodenv/node-build/releases/latest) [![Latest Homebrew Release](https://img.shields.io/homebrew/v/node-build?logo=homebrew&logoColor=white)](https://formulae.brew.sh/formula/node-build) From 122a8f5fe82beb201e3e32a09249b78468588b08 Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Sun, 31 Aug 2025 16:49:38 -0400 Subject: [PATCH 142/156] Add editorconfig for consistency --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5e41726f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +# https://EditorConfig.org +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_size = 2 +indent_style = space From b7c17b6914f1b61612e7f88fdaadf8034d5685db Mon Sep 17 00:00:00 2001 From: Jason Karns Date: Mon, 1 Sep 2025 15:46:54 -0400 Subject: [PATCH 143/156] Normalize description across readme, repo and package.json --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f767d44c..7bfe62ee 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # node-build -Install NodeJS versions +Download, compile, and install Node on Unix-like systems. [![Tests](https://img.shields.io/github/actions/workflow/status/nodenv/node-build/test.yml?label=tests&logo=github)](https://github.com/nodenv/node-build/actions/workflows/test.yml) [![Latest GitHub Release](https://img.shields.io/github/v/release/nodenv/node-build?label=github&logo=github&sort=semver)](https://github.com/nodenv/node-build/releases/latest) diff --git a/package.json b/package.json index 14fe583d..d6840d47 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "@nodenv/node-build", "version": "5.4.9", - "description": "Install NodeJS versions", + "description": "A tool to download, compile, and install Node on Unix-like systems.", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", "contributors": [ - "Jason Karns (http://jason.karns.name)", + "Jason Karns (http://jasonkarns.com)", "Sam Stephenson (http://sstephenson.us)", "Will McKenzie (http://www.oinutter.co.uk)" ], From f445cc8dbc632eba4701f7d4e3840940a783327b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 22:06:07 +0000 Subject: [PATCH 144/156] Bump actions/checkout from 4.2.2 to 5.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/11bd71901bbe5b1630ceea73d27597364c9af683...08c6903cd8c0fde910a37f88322edcfb5dd907a8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/definitions.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- .github/workflows/version.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index c4dbb23e..465191d3 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci - run: npm run scrape-definitions @@ -38,7 +38,7 @@ jobs: steps: - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci - run: npm run lint:lts -- --fix diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4374d5ba..61cd7875 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: steps: - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: { fetch-depth: 0 } - uses: redhat-plumbers-in-action/differential-shellcheck@0d9e5b29625f871e6a4215380486d6f1a7cb6cdd # v5.5.5 with: @@ -37,7 +37,7 @@ jobs: steps: - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci - run: npm run lint:lts @@ -47,7 +47,7 @@ jobs: steps: - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 with: { egress-policy: audit } - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: { fetch-depth: 0 } - run: npm ci diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 6d76368a..e9b9a28b 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -20,7 +20,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 token: ${{ secrets.BOT_TOKEN }} From f496f7f8c8a40dfc75988cbb8db51df3829693ec Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 3 Sep 2025 18:33:17 +0000 Subject: [PATCH 145/156] 20.19.5 Created with `npm run submit-definitions`. --- share/node-build/20.19.5 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 share/node-build/20.19.5 diff --git a/share/node-build/20.19.5 b/share/node-build/20.19.5 new file mode 100644 index 00000000..847efc30 --- /dev/null +++ b/share/node-build/20.19.5 @@ -0,0 +1,15 @@ +before_install_package() { + build_package_warn_lts_maintenance "$1" +} + + +binary aix-ppc64 "https://nodejs.org/dist/v20.19.5/node-v20.19.5-aix-ppc64.tar.gz#ee9dd8680fccc5191aa38c09d969ec67d59b8e1c19a8fbca9cccee6174974dd6" +binary darwin-arm64 "https://nodejs.org/dist/v20.19.5/node-v20.19.5-darwin-arm64.tar.gz#cfed7503d8d99fbcf2f52e408ec52f616058eb0867b34dbc3437259993ef5cba" +binary darwin-x64 "https://nodejs.org/dist/v20.19.5/node-v20.19.5-darwin-x64.tar.gz#f9cff058f2766d4d0631dc69b5f7f27664b3a42ff186e25ac7e1ac269af7e696" +binary linux-arm64 "https://nodejs.org/dist/v20.19.5/node-v20.19.5-linux-arm64.tar.gz#a08b513de673853ca16395ec461a104a99bf0e941ebb7baedb98b30cd221d8cc" +binary linux-armv7l "https://nodejs.org/dist/v20.19.5/node-v20.19.5-linux-armv7l.tar.gz#3237e6c5c3a34bbb7db4f4f7c8c3618bd67452a8bee0b77abd6e791e527b366e" +binary linux-ppc64le "https://nodejs.org/dist/v20.19.5/node-v20.19.5-linux-ppc64le.tar.gz#11be028464768c8704ba8b4fba6e1c0eb0cfbab1c12c9e6eda5fa51df60326cc" +binary linux-s390x "https://nodejs.org/dist/v20.19.5/node-v20.19.5-linux-s390x.tar.gz#a0e5a52c8ab552a0255520d60d3209d97913d6229d9bb05c56135be8f41ae79e" +binary linux-x64 "https://nodejs.org/dist/v20.19.5/node-v20.19.5-linux-x64.tar.gz#4eba5fbe1fb10753bc06e42f001a91c5cec16798b7764a3e9257adc59af47fe1" + +install_package "node-v20.19.5" "https://nodejs.org/dist/v20.19.5/node-v20.19.5.tar.gz#b34d3f57666d91deb6a148b604d7f2f4051d540087e9f6c627dedc1fcb866d5a" From 3b50caccc738709755645bd23099292d848c1e26 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Tue, 9 Sep 2025 15:12:30 +0000 Subject: [PATCH 146/156] Update @nodenv/node-build-update-defs to version 2.11.3 --- package-lock.json | 13 ++++--------- package.json | 2 +- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index be40059f..d049aa63 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,13 +8,8 @@ "name": "@nodenv/node-build", "version": "5.4.9", "license": "MIT", - "bin": { - "node-build": "bin/node-build", - "nodenv-install": "bin/nodenv-install", - "nodenv-uninstall": "bin/nodenv-uninstall" - }, "devDependencies": { - "@nodenv/node-build-update-defs": "^2.11.2", + "@nodenv/node-build-update-defs": "^2.11.3", "bats": "^1.11.0", "bats-assert": "^2.2.0", "bats-mock": "^1", @@ -22,9 +17,9 @@ } }, "node_modules/@nodenv/node-build-update-defs": { - "version": "2.11.2", - "resolved": "https://registry.npmjs.org/@nodenv/node-build-update-defs/-/node-build-update-defs-2.11.2.tgz", - "integrity": "sha512-eS1ox49KP2cLima5H+lhtLs2vX6FphYTcpcmNhWH0lN1BFtbJworoLWEwBrcgOsuKoaDOSAz4ZAwKryWPUHfTg==", + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/@nodenv/node-build-update-defs/-/node-build-update-defs-2.11.3.tgz", + "integrity": "sha512-SkHOeVDgb4kJfcEFOPBLB/YoZkvA+RAtkDwr4b+R1ZJpjS5+fXuDYidHlQH4dNNFnjDBWRPrzMEf4kos6ocB3Q==", "dev": true, "hasInstallScript": true, "bin": { diff --git a/package.json b/package.json index d6840d47..42bbc1d8 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "unmerged": "git for-each-ref refs/rbtags --format='%(creatordate:short) %(refname:short) https://github.com/rbenv/ruby-build/releases/tag/%(refname:lstrip=-1)' --no-merged" }, "devDependencies": { - "@nodenv/node-build-update-defs": "^2.11.2", + "@nodenv/node-build-update-defs": "^2.11.3", "bats": "^1.11.0", "bats-assert": "^2.2.0", "bats-mock": "^1", From d78951a6579020c1d84b4d8fa01549ef2ef13d1e Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Thu, 11 Sep 2025 01:54:15 +0000 Subject: [PATCH 147/156] 24.8.0 Created with `npm run submit-definitions`. --- share/node-build/24.8.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.8.0 diff --git a/share/node-build/24.8.0 b/share/node-build/24.8.0 new file mode 100644 index 00000000..c635e661 --- /dev/null +++ b/share/node-build/24.8.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.8.0/node-v24.8.0-aix-ppc64.tar.gz#5625b3bffa9b39811dc83e14f40ada2f8fe693de93ad9b75f3d652679d0ca823" +binary darwin-arm64 "https://nodejs.org/dist/v24.8.0/node-v24.8.0-darwin-arm64.tar.gz#d81191a1866760eb918caa976c023036bc1fc7405ea31b148905211522045767" +binary darwin-x64 "https://nodejs.org/dist/v24.8.0/node-v24.8.0-darwin-x64.tar.gz#6fd8496b59baa8f86a24e3eb03308b763091716ffc6b6e1094d1a5e5696dd6dd" +binary linux-arm64 "https://nodejs.org/dist/v24.8.0/node-v24.8.0-linux-arm64.tar.gz#5eb16b14af5a5f494ed54770822144e847c744fe590f8df093ad4927cf3dd7fd" +binary linux-ppc64le "https://nodejs.org/dist/v24.8.0/node-v24.8.0-linux-ppc64le.tar.gz#20a0856e7b152a5e83b4fd6fe3d509aa54b75d6170cd89066c341d56f6c5de76" +binary linux-s390x "https://nodejs.org/dist/v24.8.0/node-v24.8.0-linux-s390x.tar.gz#708d4edfafca2218fa98e0e8b8c20dc148334f2f882fcea1237c6536e8586d06" +binary linux-x64 "https://nodejs.org/dist/v24.8.0/node-v24.8.0-linux-x64.tar.gz#daf68404b478b4c3616666580d02500a24148c0f439e4d0134d65ce70e90e655" + +install_package "node-v24.8.0" "https://nodejs.org/dist/v24.8.0/node-v24.8.0.tar.gz#6e9e8c931b5028a755e6c4e1edaf14296001ae8bbb35976a3896f59e7fd797c7" From 89cb693f98e6e06003ea25aead2e0d77f2f7eccc Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Tue, 16 Sep 2025 13:48:14 +0000 Subject: [PATCH 148/156] 5.4.11 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index c5a3288d..43f6ce92 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.10 +NODE_BUILD_VERSION=5.4.11 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 91f8b39b..3cdce451 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.10", + "version": "5.4.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.10", + "version": "5.4.11", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 8cd379cb..8fcba692 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.10", + "version": "5.4.11", "description": "A tool to download, compile, and install Node on Unix-like systems.", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From e0c0f3bb824883f2b64b391e80e6c8635d61bae2 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 24 Sep 2025 18:32:11 +0000 Subject: [PATCH 149/156] 22.20.0 Created with `npm run submit-definitions`. --- share/node-build/22.20.0 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 share/node-build/22.20.0 diff --git a/share/node-build/22.20.0 b/share/node-build/22.20.0 new file mode 100644 index 00000000..96d26c97 --- /dev/null +++ b/share/node-build/22.20.0 @@ -0,0 +1,10 @@ +binary aix-ppc64 "https://nodejs.org/dist/v22.20.0/node-v22.20.0-aix-ppc64.tar.gz#6a37b948ef73ae3f9d9ab6eeb4991b8ae4fc09165e1ae967acb0e8467c8ba419" +binary darwin-arm64 "https://nodejs.org/dist/v22.20.0/node-v22.20.0-darwin-arm64.tar.gz#cc04a76a09f79290194c0646f48fec40354d88969bec467789a5d55dd097f949" +binary darwin-x64 "https://nodejs.org/dist/v22.20.0/node-v22.20.0-darwin-x64.tar.gz#00df9c5df3e4ec6848c26b70fb47bf96492f342f4bed6b17f12d99b3a45eeecc" +binary linux-arm64 "https://nodejs.org/dist/v22.20.0/node-v22.20.0-linux-arm64.tar.gz#4181609e03dcb9880e7e5bf956061ecc0503c77a480c6631d868cb1f65a2c7dd" +binary linux-armv7l "https://nodejs.org/dist/v22.20.0/node-v22.20.0-linux-armv7l.tar.gz#607380e96e1543c5ca6dc8a9f5575181b2855b8769fb31d646ef9cf27224f300" +binary linux-ppc64le "https://nodejs.org/dist/v22.20.0/node-v22.20.0-linux-ppc64le.tar.gz#f96e25a3ef6cbaa992c9bdccaf18684d12fbcbc9751bf0a85407715641f1930e" +binary linux-s390x "https://nodejs.org/dist/v22.20.0/node-v22.20.0-linux-s390x.tar.gz#53471055edba3c4f2d3a7d8d0a61b43a7b193715791c4ad01a47d99863b98980" +binary linux-x64 "https://nodejs.org/dist/v22.20.0/node-v22.20.0-linux-x64.tar.gz#eeaccb0378b79406f2208e8b37a62479c70595e20be6b659125eb77dd1ab2a29" + +install_package "node-v22.20.0" "https://nodejs.org/dist/v22.20.0/node-v22.20.0.tar.gz#79a087c1e23fc97d173ad6676df5b1a4e1a02daf1acca05ee25662747c5d492c" From 65a9fefa2a616f3c5a10353273f0bc0bf10e1364 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Wed, 24 Sep 2025 20:45:38 +0000 Subject: [PATCH 150/156] 5.4.12 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 43f6ce92..7c4083e7 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.11 +NODE_BUILD_VERSION=5.4.12 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index 3cdce451..dd2e08ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.11", + "version": "5.4.12", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.11", + "version": "5.4.12", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 8fcba692..82872242 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.11", + "version": "5.4.12", "description": "A tool to download, compile, and install Node on Unix-like systems.", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 2f9b50ff6c321268588b94885cef16db64fd9c3a Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 26 Sep 2025 01:53:19 +0000 Subject: [PATCH 151/156] 24.9.0 Created with `npm run submit-definitions`. --- share/node-build/24.9.0 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 share/node-build/24.9.0 diff --git a/share/node-build/24.9.0 b/share/node-build/24.9.0 new file mode 100644 index 00000000..db984d63 --- /dev/null +++ b/share/node-build/24.9.0 @@ -0,0 +1,9 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.9.0/node-v24.9.0-aix-ppc64.tar.gz#f9d608ca04a37b9bf94d77d29d4b14359fcb02d49d6d0d09fabfb3b3c86c9859" +binary darwin-arm64 "https://nodejs.org/dist/v24.9.0/node-v24.9.0-darwin-arm64.tar.gz#961024296c2a8e60daed0784f8b61e0fab5c51d197502a92eff052c72b53209b" +binary darwin-x64 "https://nodejs.org/dist/v24.9.0/node-v24.9.0-darwin-x64.tar.gz#6c9ac12d3160538d96d456dc59a8fec1479e3f8b20bfc0d61bc809eb9ec11417" +binary linux-arm64 "https://nodejs.org/dist/v24.9.0/node-v24.9.0-linux-arm64.tar.gz#dab232a90169737a48149149dd6707e7fdcbaefbaa94b4871047a38e93db947f" +binary linux-ppc64le "https://nodejs.org/dist/v24.9.0/node-v24.9.0-linux-ppc64le.tar.gz#557d4e3f779f5af4fc29944647e6afd76901c5be7bc0c2bd8785a199a1bc0271" +binary linux-s390x "https://nodejs.org/dist/v24.9.0/node-v24.9.0-linux-s390x.tar.gz#9baab2eb6b8d9efd2e3533ac79b572e697510f6582fdb572ba636c4d7b01d2b1" +binary linux-x64 "https://nodejs.org/dist/v24.9.0/node-v24.9.0-linux-x64.tar.gz#d57d6c28a35785f58f33899a0aa0bfc83f7a8ef4448b6cf3f7d0961efc7b9189" + +install_package "node-v24.9.0" "https://nodejs.org/dist/v24.9.0/node-v24.9.0.tar.gz#3c868d88377cb05ed87674a6af6add3e04733dd429c3370620a5a6c547fe6460" From 0bf3b42fad9df0b7f3887cf2e80450a8f2c4db92 Mon Sep 17 00:00:00 2001 From: "nodenv[bot]" <68817010+nodenv-bot@users.noreply.github.com> Date: Fri, 26 Sep 2025 11:29:37 +0000 Subject: [PATCH 152/156] 5.4.13 --- bin/node-build | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/node-build b/bin/node-build index 7c4083e7..83040a57 100755 --- a/bin/node-build +++ b/bin/node-build @@ -15,7 +15,7 @@ # --version Show version of node-build # -NODE_BUILD_VERSION=5.4.12 +NODE_BUILD_VERSION=5.4.13 OLDIFS="$IFS" diff --git a/package-lock.json b/package-lock.json index dd2e08ff..f07d043c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nodenv/node-build", - "version": "5.4.12", + "version": "5.4.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nodenv/node-build", - "version": "5.4.12", + "version": "5.4.13", "license": "MIT", "bin": { "node-build": "bin/node-build", diff --git a/package.json b/package.json index 82872242..f4233263 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nodenv/node-build", - "version": "5.4.12", + "version": "5.4.13", "description": "A tool to download, compile, and install Node on Unix-like systems.", "homepage": "https://github.com/nodenv/node-build#readme", "license": "MIT", From 78393766aae994d8ba44054cdb3131e2cce7d766 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 17:36:03 +0000 Subject: [PATCH 153/156] Bump step-security/harden-runner from 2.13.0 to 2.13.1 Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.13.0 to 2.13.1. - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](https://github.com/step-security/harden-runner/compare/ec9f2d5744a09debf3a187a3f4f675c53b671911...f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a) --- updated-dependencies: - dependency-name: step-security/harden-runner dependency-version: 2.13.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/definitions.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- .github/workflows/version.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/definitions.yml b/.github/workflows/definitions.yml index 465191d3..ef335216 100644 --- a/.github/workflows/definitions.yml +++ b/.github/workflows/definitions.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest permissions: { contents: read } steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + - uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: { egress-policy: audit } - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-latest permissions: { contents: read } steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + - uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: { egress-policy: audit } - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 61cd7875..558f045c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: permissions: { contents: read, security-events: write } runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + - uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: { egress-policy: audit } - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: { fetch-depth: 0 } @@ -35,7 +35,7 @@ jobs: lts: runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + - uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: { egress-policy: audit } - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - run: npm ci @@ -45,7 +45,7 @@ jobs: checksums: runs-on: ubuntu-latest steps: - - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + - uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: { egress-policy: audit } - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: { fetch-depth: 0 } diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index e9b9a28b..d45efec8 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 + uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 with: egress-policy: audit From abb5a0d446092d849af1ed7ec5f85636bac03360 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Sat, 11 Oct 2025 18:38:13 +0900 Subject: [PATCH 154/156] 24.10.0 Created with `npm run submit-definitions`. --- share/node-build/24.10.0 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 share/node-build/24.10.0 diff --git a/share/node-build/24.10.0 b/share/node-build/24.10.0 new file mode 100644 index 00000000..225878a4 --- /dev/null +++ b/share/node-build/24.10.0 @@ -0,0 +1,7 @@ +binary aix-ppc64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-aix-ppc64.tar.gz#daa6ea9f6add07922013215bac6712a2b1e29b12e00d9bf4ed45e85eebf5e8e2" +binary linux-arm64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-arm64.tar.gz#42776dfc722991b1ac9f302f3d7b5cf989cf7aca519b479c50e59f0663803b73" +binary linux-ppc64le "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-ppc64le.tar.gz#2e285ecbbb7a79b9b59a937796cc63458a283a664226467babb7430d2b69b26e" +binary linux-s390x "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-s390x.tar.gz#2117ab6eca63d5caf90fb99c870c466419f0e0204ce588fa6622b77b6e3a24e7" +binary linux-x64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-x64.tar.gz#2b03c5417ce0b1076780df00e01da373bead3b4b80d1c78c1ad10ee7b918d90c" + +install_package "node-v24.10.0" "https://nodejs.org/dist/v24.10.0/node-v24.10.0.tar.gz#fb9aa1938aa8d7b53e437184e4c5b26823db0afb5ac1cbfe6559176531e900e6" From 2d01f92295581245427dc70c089fd22990facd91 Mon Sep 17 00:00:00 2001 From: YAMADA Tsuyoshi Date: Sun, 12 Oct 2025 02:10:05 +0900 Subject: [PATCH 155/156] Added darwin-arm64, darwin-x64 binaries (24.10.0) --- share/node-build/24.10.0 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/node-build/24.10.0 b/share/node-build/24.10.0 index 225878a4..e6351ca5 100644 --- a/share/node-build/24.10.0 +++ b/share/node-build/24.10.0 @@ -1,4 +1,6 @@ binary aix-ppc64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-aix-ppc64.tar.gz#daa6ea9f6add07922013215bac6712a2b1e29b12e00d9bf4ed45e85eebf5e8e2" +binary darwin-arm64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-darwin-arm64.tar.gz#fbc3d6e1e1d962450d058e918214373872cc4c46e08673f31c35932afac4a8c5" +binary darwin-x64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-darwin-x64.tar.gz#627b884f66db0dd35f4b46fb9e994774ce560a7fb60798ba1ab81e867a73687d" binary linux-arm64 "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-arm64.tar.gz#42776dfc722991b1ac9f302f3d7b5cf989cf7aca519b479c50e59f0663803b73" binary linux-ppc64le "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-ppc64le.tar.gz#2e285ecbbb7a79b9b59a937796cc63458a283a664226467babb7430d2b69b26e" binary linux-s390x "https://nodejs.org/dist/v24.10.0/node-v24.10.0-linux-s390x.tar.gz#2117ab6eca63d5caf90fb99c870c466419f0e0204ce588fa6622b77b6e3a24e7" From 7e723b50ac03dac00e8d42fd13c265741b7507e5 Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 12:55:13 +0000 Subject: [PATCH 156/156] Update bats-assert to version 2.2.2 --- package-lock.json | 14 ++++---------- package.json | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index f07d043c..17e3c792 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,15 +8,10 @@ "name": "@nodenv/node-build", "version": "5.4.13", "license": "MIT", - "bin": { - "node-build": "bin/node-build", - "nodenv-install": "bin/nodenv-install", - "nodenv-uninstall": "bin/nodenv-uninstall" - }, "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.3", "bats": "^1.11.0", - "bats-assert": "^2.2.0", + "bats-assert": "^2.2.2", "bats-mock": "^1", "bats-support": "^0.3.0" } @@ -46,11 +41,10 @@ } }, "node_modules/bats-assert": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/bats-assert/-/bats-assert-2.2.0.tgz", - "integrity": "sha512-UwS5N8JItn8gCiFl5LegBgVzSAy4Wpj241FebQXpiF+17yzeuMGLF/n9mUze4fmRUXryF/8nb3aAh+C7sTfQ2g==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/bats-assert/-/bats-assert-2.2.2.tgz", + "integrity": "sha512-tm7/oJKWc6r2dBcx5MDOyzb7brgOPBNCjcorcxP/f/T42OSRZ8009XUitJbSVbCNpXCOB6NSfIDEI1clP5SMHw==", "dev": true, - "license": "CC0-1.0", "peerDependencies": { "bats": "0.4 || ^1", "bats-support": "^0.3" diff --git a/package.json b/package.json index f4233263..08af47a8 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "devDependencies": { "@nodenv/node-build-update-defs": "^2.11.3", "bats": "^1.11.0", - "bats-assert": "^2.2.0", + "bats-assert": "^2.2.2", "bats-mock": "^1", "bats-support": "^0.3.0" }