Skip to content

Commit 5ab062e

Browse files
authored
node cross testing (#112)
Signed-off-by: Alberto Ricart <[email protected]>
1 parent 86ef437 commit 5ab062e

19 files changed

+44
-44
lines changed

core/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.0-34",
3+
"version": "3.0.0-35",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"

core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.0-34",
3+
"version": "3.0.0-35",
44
"files": [
55
"lib/",
66
"LICENSE",

core/src/version.ts

+1-1
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.0-34";
2+
export const version = "3.0.0-35";

jetstream/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.0-22",
3+
"version": "3.0.0-23",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,6 +33,6 @@
3333
"test": "deno test -A --parallel --reload --trace-leaks --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35"
3737
}
3838
}

jetstream/import_map.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"imports": {
33
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
44
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
5-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
6-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-34/internal",
5+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@std/io": "jsr:@std/[email protected]"
99
}

jetstream/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.0-22",
3+
"version": "3.0.0-23",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -34,7 +34,7 @@
3434
},
3535
"description": "jetstream library - this library implements all the base functionality for NATS JetStream for javascript clients",
3636
"dependencies": {
37-
"@nats-io/nats-core": "3.0.0-34"
37+
"@nats-io/nats-core": "3.0.0-35"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.7.6",

kv/deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.0-16",
3+
"version": "3.0.0-17",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,7 +33,7 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-22"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
3838
}
3939
}

kv/import_map.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-34/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-22",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-22/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-23/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
99
"@nats-io/nuid": "jsr:@nats-io/[email protected]",

kv/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.0-16",
3+
"version": "3.0.0-17",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -34,8 +34,8 @@
3434
},
3535
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
3636
"dependencies": {
37-
"@nats-io/jetstream": "3.0.0-22",
38-
"@nats-io/nats-core": "3.0.0-34"
37+
"@nats-io/jetstream": "3.0.0-23",
38+
"@nats-io/nats-core": "3.0.0-35"
3939
},
4040
"devDependencies": {
4141
"@types/node": "^22.7.6",

obj/deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.0.0-17",
3+
"version": "3.0.0-18",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,7 +33,7 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-22"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
3838
}
3939
}

obj/import_map.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-34/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-22",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-22/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-23/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
99
"@nats-io/nuid": "jsr:@nats-io/[email protected]",

obj/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.0.0-17",
3+
"version": "3.0.0-18",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -34,8 +34,8 @@
3434
},
3535
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
3636
"dependencies": {
37-
"@nats-io/jetstream": "3.0.0-22",
38-
"@nats-io/nats-core": "3.0.0-34"
37+
"@nats-io/jetstream": "3.0.0-23",
38+
"@nats-io/nats-core": "3.0.0-35"
3939
},
4040
"devDependencies": {
4141
"@types/node": "^22.7.6",

services/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/services",
3-
"version": "3.0.0-12",
3+
"version": "3.0.0-13",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,6 +33,6 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35"
3737
}
3838
}

services/import_map.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-34/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
55
"test_helpers": "../test_helpers/mod.ts",
66
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
77
"@nats-io/nuid": "jsr:@nats-io/[email protected]",

services/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/services",
3-
"version": "3.0.0-12",
3+
"version": "3.0.0-13",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -34,7 +34,7 @@
3434
},
3535
"description": "services library - this library implements all the base functionality for NATS services for javascript clients",
3636
"dependencies": {
37-
"@nats-io/nats-core": "3.0.0-34"
37+
"@nats-io/nats-core": "3.0.0-35"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.7.6",

transport-deno/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/transport-deno",
3-
"version": "3.0.0-9",
3+
"version": "3.0.0-10",
44
"exports": {
55
".": "./src/mod.ts"
66
},
@@ -20,7 +20,7 @@
2020
},
2121
"imports": {
2222
"@std/io": "jsr:@std/[email protected]",
23-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-34",
23+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
2424
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
2525
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
2626
}

transport-deno/src/version.ts

+1-1
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.0-9";
2+
export const version = "3.0.0-10";

transport-node/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/transport-node",
3-
"version": "3.0.0-20",
3+
"version": "3.0.0-21",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -54,7 +54,7 @@
5454
"node": ">= 18.0.0"
5555
},
5656
"dependencies": {
57-
"@nats-io/nats-core": "3.0.0-34",
57+
"@nats-io/nats-core": "3.0.0-35",
5858
"@nats-io/nkeys": "1.2.0-7",
5959
"@nats-io/nuid": "2.0.1-2"
6060
},
@@ -64,8 +64,8 @@
6464
"nats-jwt": "^0.0.9",
6565
"shx": "^0.3.3",
6666
"typescript": "5.6.3",
67-
"@nats-io/jetstream": "3.0.0-22",
68-
"@nats-io/kv": "3.0.0-16",
69-
"@nats-io/obj": "3.0.0-17"
67+
"@nats-io/jetstream": "3.0.0-23",
68+
"@nats-io/kv": "3.0.0-17",
69+
"@nats-io/obj": "3.0.0-18"
7070
}
7171
}

transport-node/src/version.ts

+1-1
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.0-20";
2+
export const version = "3.0.0-21";

0 commit comments

Comments
 (0)