From e3c73676015323b108329d4d26e4094fbc73a954 Mon Sep 17 00:00:00 2001 From: Raf Flamand Date: Fri, 20 Feb 2026 16:09:11 +0000 Subject: [PATCH 1/5] Update node version to latest active lts (24.13.1) --- .github/workflows/publish.yml | 4 ++-- .github/workflows/run_unit_tests.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a6a8b4e..30b8cff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,9 +27,9 @@ jobs: version: 4.0.19 actions-cache-folder: ".emsdk-cache" - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22.16.0" + node-version: "24.13.1" registry-url: "https://registry.npmjs.org" - name: Install yarn package manager run: npm install --global yarn diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index e317be7..ee0b8b4 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -23,9 +23,9 @@ jobs: version: 4.0.19 actions-cache-folder: ".emsdk-cache" - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22.16.0" + node-version: "24.13.1" - name: Install yarn package manager run: npm install --global yarn - name: Install dependencies @@ -64,9 +64,9 @@ jobs: version: 4.0.19 actions-cache-folder: ".emsdk-cache" - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: - node-version: "22.16.0" + node-version: "24.13.1" - name: Install yarn package manager run: npm install --global yarn - name: Install dependencies From 8a301a1267e0b7521c970b9ebf8b6402a1b85a7f Mon Sep 17 00:00:00 2001 From: Raf Flamand Date: Mon, 23 Feb 2026 07:53:24 +0000 Subject: [PATCH 2/5] Correct mistake in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4fcf7c9..db893c9 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/imagingdatacommons/libdicomicc.git" + "url": "git+https://github.com/imagingdatacommons/libdicomicc.git" }, "keywords": [ "ICC", From 1a1d676a30f9633f4c28abdf060eb546e4d74680 Mon Sep 17 00:00:00 2001 From: Raf Flamand Date: Mon, 23 Feb 2026 08:04:05 +0000 Subject: [PATCH 3/5] Bump version to 0.2.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index db893c9..0221c1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@imagingdatacommons/dicomicc", - "version": "0.2.2", + "version": "0.2.4", "description": "WASM bindings and JavaScript API for the dicomicc C library", "main": "dist/dicomiccwasm.js", "publishConfig": { From 788f52d7e6a806e3ea70782e9db3061e2327c92b Mon Sep 17 00:00:00 2001 From: Raf Flamand Date: Mon, 23 Feb 2026 16:05:50 +0000 Subject: [PATCH 4/5] Remove dry run from test job --- .github/workflows/run_unit_tests.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/run_unit_tests.yml b/.github/workflows/run_unit_tests.yml index ee0b8b4..f535fb4 100644 --- a/.github/workflows/run_unit_tests.yml +++ b/.github/workflows/run_unit_tests.yml @@ -43,9 +43,6 @@ jobs: run: | yarn run clean yarn run build - - name: Perform npm package publish dry run - run: | - npm publish . --dry-run macos: name: Build and run tests on macOS runs-on: ${{ matrix.os }} @@ -90,6 +87,4 @@ jobs: - name: Build WebAssembly bindings run: | yarn run clean - yarn run build - - name: Perform npm package publish dry run - run: npm publish . --dry-run \ No newline at end of file + yarn run build \ No newline at end of file From 3cece1fc8536df609b1379b2e357a3c3537fc359 Mon Sep 17 00:00:00 2001 From: Raf Flamand Date: Mon, 23 Feb 2026 16:06:05 +0000 Subject: [PATCH 5/5] Reset package package.json version to 0.2.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ffd1310..ebea493 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@imagingdatacommons/dicomicc", - "version": "0.2.4", + "version": "0.2.3", "description": "WASM bindings and JavaScript API for the dicomicc C library", "main": "dist/dicomiccwasm.js",