Skip to content

Commit 2337ec3

Browse files
committed
chore: upgrade dependencies
1 parent d382a55 commit 2337ec3

File tree

16 files changed

+1154
-1824
lines changed

16 files changed

+1154
-1824
lines changed

.github/workflows/ci.yaml

+47-40
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@ name: CI
22
env:
33
DEBUG: 'napi:*'
44
MACOSX_DEPLOYMENT_TARGET: '10.13'
5-
NODE_OPTIONS: '--max-old-space-size=3072'
65
CARGO_UNSTABLE_TARGET_APPLIES_TO_HOST: true
76
CARGO_TARGET_APPLIES_TO_HOST: false
87

8+
permissions:
9+
contents: write
10+
id-token: write
11+
912
on:
1013
push:
1114
branches:
@@ -32,7 +35,7 @@ jobs:
3235
target: 'x86_64-pc-windows-msvc'
3336
- host: windows-latest
3437
build: |
35-
yarn lerna exec "yarn build --target i686-pc-windows-msvc" --concurrency 1 --stream --no-prefix
38+
yarn build --target i686-pc-windows-msvc
3639
yarn test -s
3740
target: 'i686-pc-windows-msvc'
3841
- host: ubuntu-latest
@@ -41,7 +44,7 @@ jobs:
4144
build: >-
4245
set -e &&
4346
rustup target add x86_64-unknown-linux-gnu &&
44-
yarn lerna exec "yarn build --target x86_64-unknown-linux-gnu" --concurrency 1 --stream --no-prefix &&
47+
yarn build --target x86_64-unknown-linux-gnu &&
4548
strip packages/*/*.node
4649
- host: ubuntu-latest
4750
target: 'x86_64-unknown-linux-musl'
@@ -55,31 +58,31 @@ jobs:
5558
export CXX=$(xcrun -f clang++);
5659
SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
5760
export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
58-
yarn lerna exec "yarn build --target aarch64-apple-darwin" --concurrency 1 --stream --no-prefix
61+
yarn build --target aarch64-apple-darwin
5962
strip -x packages/*/*.node
6063
- host: ubuntu-latest
6164
target: aarch64-unknown-linux-gnu
6265
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
6366
build: >-
6467
rustup target add aarch64-unknown-linux-gnu &&
65-
yarn lerna exec "yarn build --target aarch64-unknown-linux-gnu" --concurrency 1 --stream --no-prefix &&
68+
yarn build --target aarch64-unknown-linux-gnu &&
6669
llvm-strip packages/*/*.node
6770
- host: ubuntu-latest
6871
target: 'armv7-unknown-linux-gnueabihf'
6972
setup: |
7073
sudo apt-get update
7174
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf -y
72-
build: yarn lerna exec "yarn build --target armv7-unknown-linux-gnueabihf" --concurrency 1 --stream --no-prefix
75+
build: yarn build --target armv7-unknown-linux-gnueabihf
7376
- host: ubuntu-latest
7477
target: aarch64-linux-android
7578
build: |
76-
yarn lerna exec "yarn build --target aarch64-linux-android" --concurrency 1 --stream --no-prefix
79+
yarn build --target aarch64-linux-android
7780
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip packages/*/*.node
7881
- host: ubuntu-latest
7982
architecture: x64
8083
target: armv7-linux-androideabi
8184
build: |
82-
yarn lerna exec "yarn build --target armv7-linux-androideabi" --concurrency 1 --stream --no-prefix
85+
yarn build --target armv7-linux-androideabi
8386
${ANDROID_NDK_LATEST_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip packages/*/*.node
8487
- host: ubuntu-latest
8588
target: 'aarch64-unknown-linux-musl'
@@ -88,10 +91,12 @@ jobs:
8891
build: >-
8992
set -e &&
9093
rustup target add aarch64-unknown-linux-musl &&
91-
yarn lerna exec "yarn build --target aarch64-unknown-linux-musl" --concurrency 1 --stream --no-prefix
94+
yarn build --target aarch64-unknown-linux-musl
9295
- host: windows-latest
9396
target: 'aarch64-pc-windows-msvc'
94-
build: yarn lerna exec "yarn build --target aarch64-pc-windows-msvc" --ignore @node-rs/jsonwebtoken --concurrency 1 --stream --no-prefix
97+
build: |
98+
npm i -g @napi-rs/cli
99+
yarn workspaces foreach --no-private -j 1 --exclude @node-rs/jsonwebtoken run build --target aarch64-pc-windows-msvc
95100
96101
name: stable - ${{ matrix.settings.target }} - node@18
97102
runs-on: ${{ matrix.settings.host }}
@@ -104,14 +109,13 @@ jobs:
104109
if: ${{ !matrix.settings.docker }}
105110
with:
106111
node-version: 18
107-
check-latest: true
108112
cache: yarn
109113

110114
- name: Install
111115
uses: dtolnay/rust-toolchain@stable
112116
if: ${{ !matrix.settings.docker }}
113117
with:
114-
toolchain: nightly-2023-04-23
118+
toolchain: nightly-2023-07-19
115119
targets: ${{ matrix.settings.target }}
116120

117121
- name: Cache cargo registry
@@ -158,7 +162,6 @@ jobs:
158162
if: matrix.settings.target == 'i686-pc-windows-msvc'
159163
with:
160164
node-version: 18
161-
check-latest: true
162165
cache: yarn
163166
architecture: x86
164167

@@ -192,9 +195,7 @@ jobs:
192195
usesh: true
193196
mem: 3000
194197
prepare: |
195-
pkg install -y -f curl node libnghttp2
196-
curl -qL https://www.npmjs.com/install.sh | sh
197-
npm install --location=global --ignore-scripts yarn
198+
pkg install -y -f curl node libnghttp2 npm yarn
198199
curl https://sh.rustup.rs -sSf --output rustup.sh
199200
sh rustup.sh -y --profile minimal --default-toolchain stable
200201
export PATH="/usr/local/cargo/bin:$PATH"
@@ -239,7 +240,7 @@ jobs:
239240
target: 'x86_64-apple-darwin'
240241
- host: windows-latest
241242
target: 'x86_64-pc-windows-msvc'
242-
node: ['14', '16', '18']
243+
node: ['16', '18']
243244
runs-on: ${{ matrix.settings.host }}
244245

245246
steps:
@@ -251,7 +252,6 @@ jobs:
251252
uses: actions/setup-node@v3
252253
with:
253254
node-version: ${{ matrix.node }}
254-
check-latest: true
255255
cache: yarn
256256

257257
- name: Install dependencies
@@ -286,7 +286,7 @@ jobs:
286286
strategy:
287287
fail-fast: false
288288
matrix:
289-
node: ['14', '16', '18']
289+
node: ['16', '18']
290290
runs-on: ubuntu-latest
291291

292292
steps:
@@ -296,7 +296,6 @@ jobs:
296296
uses: actions/setup-node@v3
297297
with:
298298
node-version: ${{ matrix.node }}
299-
check-latest: true
300299
cache: yarn
301300

302301
- name: Install dependencies
@@ -325,7 +324,6 @@ jobs:
325324
image: node:${{ matrix.node }}-slim
326325
options: -v ${{ github.workspace }}:/build -w /build
327326
run: |
328-
yarn lerna link
329327
yarn test
330328
331329
test-linux-x64-centos-7:
@@ -364,7 +362,6 @@ jobs:
364362

365363
- name: Test bindings
366364
run: |
367-
yarn lerna link
368365
yarn test -s
369366
370367
test-linux-x64-musl-binding:
@@ -374,7 +371,7 @@ jobs:
374371
strategy:
375372
fail-fast: false
376373
matrix:
377-
node: ['14', '16', '18']
374+
node: ['16', '18']
378375
runs-on: ubuntu-latest
379376

380377
steps:
@@ -384,7 +381,6 @@ jobs:
384381
uses: actions/setup-node@v3
385382
with:
386383
node-version: ${{ matrix.node }}
387-
check-latest: true
388384
cache: yarn
389385

390386
- name: Install dependencies
@@ -415,7 +411,6 @@ jobs:
415411
image: node:${{ matrix.node }}-alpine
416412
options: -v ${{ github.workspace }}:/build -w /build
417413
run: |
418-
yarn lerna link
419414
yarn test
420415
421416
test-linux-aarch64-gnu-binding:
@@ -425,12 +420,10 @@ jobs:
425420
strategy:
426421
fail-fast: false
427422
matrix:
428-
node: ['14', '16', '18']
423+
node: ['16', '18']
429424
runs-on: ubuntu-latest
430425

431426
steps:
432-
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
433-
434427
- uses: actions/checkout@v3
435428

436429
- name: Download artifacts
@@ -453,11 +446,17 @@ jobs:
453446
run: ls -R packages
454447
shell: bash
455448

449+
- name: Set up QEMU
450+
uses: docker/setup-qemu-action@v2
451+
with:
452+
platforms: arm64
453+
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
454+
456455
- name: Setup and run tests
457456
uses: addnab/docker-run-action@v3
458457
with:
459-
image: ghcr.io/napi-rs/napi-rs/nodejs:aarch64-${{ matrix.node }}
460-
options: -v ${{ github.workspace }}:/build -w /build
458+
image: node:${{ matrix.node }}-slim
459+
options: --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build
461460
run: |
462461
set -e
463462
yarn build:ts
@@ -472,8 +471,6 @@ jobs:
472471
runs-on: ubuntu-latest
473472

474473
steps:
475-
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
476-
477474
- uses: actions/checkout@v3
478475

479476
- name: Install dependencies
@@ -496,14 +493,19 @@ jobs:
496493
run: ls -R packages
497494
shell: bash
498495

496+
- name: Set up QEMU
497+
uses: docker/setup-qemu-action@v2
498+
with:
499+
platforms: arm64
500+
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
501+
499502
- name: Setup and run tests
500503
uses: addnab/docker-run-action@v3
501504
with:
502-
image: multiarch/alpine:aarch64-latest-stable
503-
options: -v ${{ github.workspace }}:/build -w /build
505+
image: node:lts-alpine
506+
options: --platform linux/arm64 -v ${{ github.workspace }}:/build -w /build
504507
run: |
505508
set -e
506-
apk add nodejs npm yarn
507509
yarn build:ts
508510
yarn test
509511
@@ -514,12 +516,10 @@ jobs:
514516
strategy:
515517
fail-fast: false
516518
matrix:
517-
node: ['14', '16', '18']
519+
node: ['16', '18']
518520
runs-on: ubuntu-latest
519521

520522
steps:
521-
- run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
522-
523523
- uses: actions/checkout@v3
524524

525525
- name: Install dependencies
@@ -541,11 +541,17 @@ jobs:
541541
run: ls -R ./packages
542542
shell: bash
543543

544+
- name: Set up QEMU
545+
uses: docker/setup-qemu-action@v2
546+
with:
547+
platforms: arm
548+
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
549+
544550
- name: Setup and run tests
545551
uses: addnab/docker-run-action@v3
546552
with:
547-
image: ghcr.io/napi-rs/napi-rs/nodejs:armhf-${{ matrix.node }}
548-
options: -v ${{ github.workspace }}:/build -w /build
553+
image: node:${{ matrix.node }}-bullseye-slim
554+
options: --platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build
549555
run: |
550556
set -e
551557
yarn build:ts
@@ -598,6 +604,7 @@ jobs:
598604
- name: Lerna publish
599605
if: "startsWith(github.event.head_commit.message, 'chore(release): publish')"
600606
run: |
607+
npm config set provenance true
601608
find ./packages/ -type d -maxdepth 1 -exec cp LICENSE {} \;
602609
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
603610
yarn lerna publish from-package --no-verify-access --yes

.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install
2424
uses: dtolnay/rust-toolchain@stable
2525
with:
26-
toolchain: nightly-2023-04-23
26+
toolchain: nightly-2023-07-19
2727
components: rustfmt, clippy
2828

2929
- name: 'Install dependencies'

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ members = [
1111
"./packages/jsonwebtoken",
1212
"./packages/xxhash",
1313
]
14+
resolver = "2"
1415

1516
[profile.release]
1617
codegen-units = 1

lerna.json

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
{
2-
"packages": ["packages/*"],
32
"npmClient": "yarn",
4-
"useWorkspaces": true,
53
"version": "independent",
64
"command": {
75
"version": {

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,29 @@
2525
},
2626
"devDependencies": {
2727
"@napi-rs/cli": "2.16.2",
28-
"@swc-node/core": "^1.10.3",
29-
"@swc-node/register": "^1.6.4",
30-
"@swc/core": "^1.3.53",
28+
"@swc-node/core": "^1.10.4",
29+
"@swc-node/register": "^1.6.6",
30+
"@swc/core": "^1.3.70",
3131
"@taplo/cli": "^0.5.2",
32-
"@types/node": "^18.16.0",
33-
"@typescript-eslint/eslint-plugin": "^5.59.0",
34-
"@typescript-eslint/parser": "^5.59.0",
35-
"ava": "^5.2.0",
32+
"@types/node": "^20.4.2",
33+
"@typescript-eslint/eslint-plugin": "^6.1.0",
34+
"@typescript-eslint/parser": "^6.1.0",
35+
"ava": "^5.3.1",
3636
"benchmark": "^2.1.4",
3737
"codecov": "^3.8.3",
3838
"cross-env": "^7.0.3",
39-
"eslint": "^8.39.0",
39+
"eslint": "^8.45.0",
4040
"eslint-config-prettier": "^8.8.0",
4141
"eslint-plugin-import": "^2.27.5",
42-
"eslint-plugin-prettier": "^4.2.1",
42+
"eslint-plugin-prettier": "^5.0.0",
4343
"husky": "^8.0.3",
44-
"lerna": "^6.6.1",
45-
"lint-staged": "^13.2.1",
44+
"lerna": "^7.1.4",
45+
"lint-staged": "^13.2.3",
4646
"npm-run-all": "^4.1.5",
47-
"prettier": "^2.8.8",
47+
"prettier": "^3.0.0",
4848
"ts-node": "^10.9.1",
49-
"tslib": "^2.5.0",
50-
"typescript": "^5.0.4"
49+
"tslib": "^2.6.0",
50+
"typescript": "^5.1.6"
5151
},
5252
"lint-staged": {
5353
"*.@(js|ts|tsx)": [

packages/argon2/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"version": "napi version"
5555
},
5656
"devDependencies": {
57+
"@napi-rs/cli": "2.16.2",
5758
"argon2": "^0.30.3",
5859
"cross-env": "^7.0.3"
5960
}

packages/bcrypt/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"url": "https://github.com/napi-rs/node-rs/issues"
6868
},
6969
"devDependencies": {
70+
"@napi-rs/cli": "2.16.2",
7071
"@types/bcrypt": "^5.0.0",
7172
"bcrypt": "^5.1.0",
7273
"bcryptjs": "^2.4.3",

packages/crc32/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"url": "https://github.com/napi-rs/node-rs/issues"
6262
},
6363
"devDependencies": {
64+
"@napi-rs/cli": "2.16.2",
6465
"@types/crc": "^3.8.0",
6566
"buffer": "^6.0.3",
6667
"crc": "^4.3.2",

0 commit comments

Comments
 (0)