From d8a2fd0ebeda98225fff047fa87196bd07675886 Mon Sep 17 00:00:00 2001 From: JJ-Cro Date: Thu, 16 Jul 2026 13:52:31 +0200 Subject: [PATCH 1/3] chore(v1.2.0): pin npm to v11 and update Node to v24.18.0 Co-authored-by: Cursor --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1d5662e..234d66b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@siebly/kraken-api", - "version": "1.1.1", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@siebly/kraken-api", - "version": "1.1.1", + "version": "1.2.0", "license": "MIT", "dependencies": { "axios": "^1.10.0", diff --git a/package.json b/package.json index 0c37360..fd908d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@siebly/kraken-api", - "version": "1.1.1", + "version": "1.2.0", "description": "Complete & robust Node.js SDK for Kraken's REST APIs and WebSockets, with TypeScript & strong end to end tests.", "scripts": { "clean": "rm -rf dist", From a9b648ce686d2b3682967b79c2b785b1d81c1f91 Mon Sep 17 00:00:00 2001 From: JJ-Cro Date: Fri, 17 Jul 2026 13:06:26 +0200 Subject: [PATCH 2/3] chore(v1.2.0): upgrade GitHub Actions to setup-node v7 and checkout v6 Co-authored-by: Cursor --- .github/workflows/e2etest.yml | 4 ++-- .github/workflows/npmpublish.yml | 6 +++--- .github/workflows/templates-readme.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2etest.yml b/.github/workflows/e2etest.yml index d27ad6f..30ffb45 100644 --- a/.github/workflows/e2etest.yml +++ b/.github/workflows/e2etest.yml @@ -19,9 +19,9 @@ jobs: steps: - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: 'https://registry.npmjs.org/' diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index d499544..d6c384c 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -18,18 +18,18 @@ jobs: IS_PRERELEASE: ${{ github.event.release.prerelease }} steps: - name: Checkout (no repo token persisted) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false ref: ${{ github.event.release.tag_name }} - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: https://registry.npmjs.org/ - cache: 'npm' + package-manager-cache: false - name: Assert latest npm # run: npm i -g npm@latest # pin to v11 until npm v12 bug is fixed: https://github.com/npm/cli/issues/9722 diff --git a/.github/workflows/templates-readme.yml b/.github/workflows/templates-readme.yml index dfea309..8d81a0f 100644 --- a/.github/workflows/templates-readme.yml +++ b/.github/workflows/templates-readme.yml @@ -15,9 +15,9 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: https://registry.npmjs.org/ From 9d01763567f4944fa6265adb5203a68666822074 Mon Sep 17 00:00:00 2001 From: JJ-Cro Date: Fri, 17 Jul 2026 13:23:35 +0200 Subject: [PATCH 3/3] chore: revert package version bump (keep CI workflow updates only) Co-authored-by: Cursor --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 234d66b..1d5662e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@siebly/kraken-api", - "version": "1.2.0", + "version": "1.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@siebly/kraken-api", - "version": "1.2.0", + "version": "1.1.1", "license": "MIT", "dependencies": { "axios": "^1.10.0", diff --git a/package.json b/package.json index fd908d7..0c37360 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@siebly/kraken-api", - "version": "1.2.0", + "version": "1.1.1", "description": "Complete & robust Node.js SDK for Kraken's REST APIs and WebSockets, with TypeScript & strong end to end tests.", "scripts": { "clean": "rm -rf dist",