Skip to content

Commit aa5b4c8

Browse files
authored
Bump bundle versions (#259)
Updated package versions, dependencies, and import mappings across multiple modules to ensure consistency with version 3.0.2. Improved repository URL formatting in package metadata. Corrected a logic error in bundle_versions.ts test script for qualifier comparison. [ci skip] Signed-off-by: Alberto Ricart <[email protected]>
1 parent 8dc31a7 commit aa5b4c8

20 files changed

+51
-51
lines changed

Diff for: bin/lib/bundle_versions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class SemVer {
7070
if (this.micro > b.micro) return 1;
7171

7272
if (this.qualifier === "" && b.qualifier !== "") return 1;
73-
if (b.qualifier === "" && b.qualifier !== "") return -1;
73+
if (b.qualifier === "" && this.qualifier !== "") return -1;
7474

7575
// if we have non-empty qualifiers - we expect them to
7676
const q = parseInt(this.qualifier);

Diff for: 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.2-1",
3+
"version": "3.0.2",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"

Diff for: core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {

Diff for: 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.2-1";
2+
export const version = "3.0.2";

Diff for: 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.2-1",
3+
"version": "3.0.2",
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/[email protected]-1"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]"
3737
}
3838
}

Diff for: 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/[email protected]-1",
6-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
5+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@std/io": "jsr:@std/[email protected]"
99
}

Diff for: jetstream/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,7 +33,7 @@
3333
},
3434
"description": "jetstream library - this library implements all the base functionality for NATS JetStream for javascript clients",
3535
"dependencies": {
36-
"@nats-io/nats-core": "3.0.2-1"
36+
"@nats-io/nats-core": "3.0.2"
3737
},
3838
"devDependencies": {
3939
"@types/node": "^22.13.10",

Diff for: 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.2-1",
3+
"version": "3.0.2",
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/[email protected]-1",
37-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
37+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]"
3838
}
3939
}

Diff for: 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/[email protected]-1",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]-1/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]/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]",

Diff for: kv/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,8 +33,8 @@
3333
},
3434
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
3535
"dependencies": {
36-
"@nats-io/jetstream": "3.0.2-1",
37-
"@nats-io/nats-core": "3.0.2-1"
36+
"@nats-io/jetstream": "3.0.2",
37+
"@nats-io/nats-core": "3.0.2"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.10.10",

Diff for: 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.2-3",
3+
"version": "3.0.2",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,8 +33,8 @@
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/[email protected]-1",
37-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1",
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
37+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]",
3838
"js-sha256": "npm:[email protected]"
3939
}
4040
}

Diff for: 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/[email protected]-1",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]-1/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]/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]",

Diff for: obj/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.0.2-3",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,8 +33,8 @@
3333
},
3434
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
3535
"dependencies": {
36-
"@nats-io/jetstream": "3.0.2-1",
37-
"@nats-io/nats-core": "3.0.2-1",
36+
"@nats-io/jetstream": "3.0.2",
37+
"@nats-io/nats-core": "3.0.2",
3838
"js-sha256": "^0.11.0"
3939
},
4040
"devDependencies": {

Diff for: 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.2-1",
3+
"version": "3.0.2",
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/[email protected]-1"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]"
3737
}
3838
}

Diff for: 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/[email protected]-1",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/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]",

Diff for: services/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/services",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,7 +33,7 @@
3333
},
3434
"description": "services library - this library implements all the base functionality for NATS services for javascript clients",
3535
"dependencies": {
36-
"@nats-io/nats-core": "3.0.2-1"
36+
"@nats-io/nats-core": "3.0.2"
3737
},
3838
"devDependencies": {
3939
"@types/node": "^22.10.10",

Diff for: 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.2-1",
3+
"version": "3.0.2",
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/[email protected]-1",
23+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
2424
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
2525
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
2626
}

Diff for: 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.2-1";
2+
export const version = "3.0.2";

Diff for: transport-node/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/transport-node",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -19,7 +19,7 @@
1919
"license": "Apache-2.0",
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/nats-io/nats.js"
22+
"url": "git+https://github.com/nats-io/nats.js.git"
2323
},
2424
"private": false,
2525
"author": {
@@ -55,14 +55,14 @@
5555
"node": ">= 18.0.0"
5656
},
5757
"dependencies": {
58-
"@nats-io/nats-core": "3.0.2-1",
58+
"@nats-io/nats-core": "3.0.2",
5959
"@nats-io/nkeys": "2.0.3",
6060
"@nats-io/nuid": "2.0.3"
6161
},
6262
"devDependencies": {
63-
"@nats-io/jetstream": "3.0.2-1",
64-
"@nats-io/kv": "3.0.2-1",
65-
"@nats-io/obj": "3.0.2-3",
63+
"@nats-io/jetstream": "3.0.2",
64+
"@nats-io/kv": "3.0.2",
65+
"@nats-io/obj": "3.0.2",
6666
"@types/node": "^22.10.10",
6767
"minimist": "^1.2.8",
6868
"shx": "^0.3.3",

Diff for: 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.2-1";
2+
export const version = "3.0.2";

0 commit comments

Comments
 (0)