Skip to content

Commit 7bf6190

Browse files
authored
chore: bump versions across modules and update dependencies (#296)
* chore: bump versions across modules and update dependencies - Updated versions for NATS modules, including core, JetStream, KV, object store, services, and transport. - Upgraded `@types/node`, `shx`, `typescript`, and `js-sha256` dependencies. - Changed transport node to build the workspace and then run the tests - Bump deno and node versions - Updated internal versions, @nats-io/jwt, as well @std/* dependencies - Bump versions to `3.1.0` across modules and synchronized dependencies to align with the stable release. --------- Signed-off-by: Alberto Ricart <[email protected]>
1 parent db45168 commit 7bf6190

33 files changed

+76
-75
lines changed

.github/workflows/consistency_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
deno-version: [2.2.x]
11+
deno-version: [2.4.x]
1212
module: [
1313
core,
1414
jetstream,

.github/workflows/deno_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
deno-version: [2.2.x]
11+
deno-version: [2.4.x]
1212
module: [core, jetstream, kv, obj, services, transport-deno]
1313

1414
steps:

.github/workflows/node_checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
deno-version: [2.2.x]
12-
node-version: [23.x]
11+
deno-version: [2.4.x]
12+
node-version: [24.x]
1313

1414
steps:
1515
- name: Git Checkout Sources

.github/workflows/npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
node-version: [23.x]
13-
deno-version: [2.2.x]
12+
node-version: [24.x]
13+
deno-version: [2.4.x]
1414

1515
runs-on: ubuntu-latest
1616
permissions:

.github/workflows/transport-node-test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
test:
1919
strategy:
2020
matrix:
21-
deno-version: [2.2.x]
22-
node-version: [23.x]
21+
deno-version: [2.4.x]
22+
node-version: [24.x]
2323

2424
name: test node transport with local dependencies
2525
runs-on: ubuntu-latest
@@ -47,14 +47,15 @@ jobs:
4747
name: nats-server
4848
cache: true
4949

50-
- name: Disable NPM workspace
50+
- name: Build workspace
5151
run: |
52-
deno task disable-npm-workspace
52+
npm install --workspaces
53+
npm run build --workspaces
5354
54-
- name: Test Node Transport with specified dependencies
55+
56+
- name: Test Node Transport with local dependencies
5557
working-directory: transport-node
5658
env:
5759
CI: true
5860
run: |
59-
npm install
6061
npm test

bin/cjs-fix-imports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parseArgs } from "jsr:@std/cli@0.224.3/parse-args";
1+
import { parseArgs } from "jsr:@std/cli@1.0.20/parse-args";
22
import {
33
basename,
44
extname,

core/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.3-1",
3+
"version": "3.1.0",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"

core/import_map.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"test_helpers": "../test_helpers/mod.ts",
44
"@nats-io/nats-core": "./src/mod.ts",
55
"@nats-io/nats-core/internal": "./src/internal_mod.ts",
6-
"@std/io": "jsr:@std/[email protected].0"
6+
"@std/io": "jsr:@std/[email protected].2"
77
}
88
}

core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.3-1",
3+
"version": "3.1.0",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -37,8 +37,8 @@
3737
"@nats-io/nuid": "2.0.3"
3838
},
3939
"devDependencies": {
40-
"@types/node": "^22.13.10",
40+
"@types/node": "^24.0.11",
4141
"shx": "^0.4.0",
42-
"typescript": "^5.8.2"
42+
"typescript": "^5.8.3"
4343
}
4444
}

core/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated - do not edit
2-
export const version = "3.0.3-1";
2+
export const version = "3.1.0";

0 commit comments

Comments
 (0)