Skip to content

Update elliptic to 6.5.7 (CVE-2024-42461) #206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 23 additions & 34 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,21 @@ jobs:
- windows-2019
steps:
- name: Fetch code
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Get minimal Node.js version from package.json (Linux & macOS)
id: node-version-nix
if: runner.os != 'Windows'
- name: Get minimal Node.js version from package.json
id: node-version
run: echo "::set-output name=version::$(node -p 'require("./package.json").engines.node.match(/(\d+)\..*$/)[1]')"

- name: Use Node.js ${{ steps.node-version-nix.outputs.version }} (Linux & macOS)
if: runner.os != 'Windows'
uses: actions/setup-node@v1
- name: Use Node.js ${{ steps.node-version.outputs.version }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.node-version-nix.outputs.version }}

- name: Get minimal Node.js version from package.json (Windows)
id: node-version-win
if: runner.os == 'Windows'
run: echo "::set-output name=version::$(node -p 'require(\"./package.json\").engines.node.match(/(\d+)\..*$/)[1]')"

- name: Use Node.js ${{ steps.node-version-win.outputs.version }} (Windows)
if: runner.os == 'Windows'
uses: actions/setup-node@v1
with:
node-version: ${{ steps.node-version-win.outputs.version }}
node-version: ${{ steps.node-version.outputs.version }}

- name: Install dependencies
run: yarn install --ignore-scripts
run: npm install --ignore-scripts

- name: Build addon
if: runner.os != 'Linux'
Expand All @@ -59,7 +46,7 @@ jobs:
run: make test-tap

- name: Upload prebuilds
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: addon-${{ runner.os }}
path: prebuilds
Expand All @@ -70,30 +57,34 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Install dependencies
run: yarn install --ignore-scripts
run: npm install --ignore-scripts

- name: Download macOS addon
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: addon-macOS

- name: Download Linux addon
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: addon-Linux

- name: Download Windows addon
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: addon-Windows

- name: Move addons to one folder
run: mkdir prebuilds && mv ./addon-*/* ./prebuilds/
run: |
mkdir prebuilds
mv darwin-arm64 prebuilds
mv linux-x64 prebuilds
mv win32-x64 prebuilds

- name: Build package
run: make package
Expand All @@ -103,7 +94,7 @@ jobs:
run: echo "::set-output name=version::$(node -p 'require("./package.json").version')"

- name: Upload package
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: package
path: secp256k1-${{ steps.pkg-version.outputs.version }}.tgz
Expand All @@ -113,11 +104,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
fetch-depth: 1

- uses: actions/cache@v1
- uses: actions/cache@v4
id: cache
with:
path: clang
Expand All @@ -137,12 +128,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch code
uses: actions/checkout@v1
with:
fetch-depth: 1
uses: actions/checkout@v4

- name: Install dependencies
run: yarn install --ignore-scripts
run: npm install --ignore-scripts

- name: Run lint command
run: make lint-js
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ prebuildify-cross = ./node_modules/.bin/prebuildify-cross
# hack, otherwise GitHub Actions for Windows:
# '.' is not recognized as an internal or external command, operable program or batch file.
build-addon:
$(prebuildify) --target node@14.0.0 --napi --strip && node -p "process.platform"
$(prebuildify) --target node@18.0.0 --napi --strip && node -p "process.platform"

build-addon-linux:
$(prebuildify-cross) -i centos7-devtoolset7 -i alpine --target node@14.0.0 --napi --strip
$(prebuildify-cross) -i centos7-devtoolset7 -i alpine --target node@18.0.0 --napi --strip


nyc = ./node_modules/.bin/nyc
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,23 @@
"install": "node-gyp-build || exit 0"
},
"dependencies": {
"elliptic": "^6.5.4",
"elliptic": "^6.5.7",
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.2.0"
},
"devDependencies": {
"node-gyp": "^5.0.7",
"node-gyp": "=10.1.0",
"nyc": "^15.0.0",
"prebuildify": "^5.0.0",
"prebuildify-cross": "^4.0.2",
"prebuildify": "^6.0.1",
"prebuildify-cross": "github:fanatid/prebuildify-cross#9f7af67698f06e07d42304d9813a6f19aee5812c",
"standard": "^14.3.1",
"tap-dot": "^2.0.0",
"tape": "^4.10.1",
"xorshift.js": "^1.0.3",
"yargs": "^15.0.2"
},
"engines": {
"node": ">=14.0.0"
"node": ">=18.0.0"
},
"gypfile": true
}
Loading