Skip to content

Commit 8f2e22e

Browse files
committed
1 parent 54c8d78 commit 8f2e22e

18 files changed

+39
-37
lines changed

core/deno.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.0-35",
3+
"version": "3.0.0-36",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -38,4 +38,4 @@
3838
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
3939
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
4040
}
41-
}
41+
}

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.0-35",
3+
"version": "3.0.0-36",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -43,4 +43,4 @@
4343
"typedoc": "^0.26.10",
4444
"typescript": "^5.5.4"
4545
}
46-
}
46+
}

core/src/semver.ts

+2
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export enum Feature {
5353
JS_STREAM_COMPRESSION = "js_stream_compression",
5454
JS_DEFAULT_CONSUMER_LIMITS = "js_default_consumer_limits",
5555
JS_BATCH_DIRECT_GET = "js_batch_direct_get",
56+
JS_PRIORITY_GROUPS = "js_priority_groups",
5657
}
5758

5859
type FeatureVersion = {
@@ -111,6 +112,7 @@ export class Features {
111112
this.set(Feature.JS_STREAM_COMPRESSION, "2.10.0");
112113
this.set(Feature.JS_DEFAULT_CONSUMER_LIMITS, "2.10.0");
113114
this.set(Feature.JS_BATCH_DIRECT_GET, "2.11.0");
115+
this.set(Feature.JS_PRIORITY_GROUPS, "2.12.0");
114116

115117
this.disabled.forEach((f) => {
116118
this.features.delete(f);

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-35";
2+
export const version = "3.0.0-36";

jetstream/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -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-35"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36"
3737
}
38-
}
38+
}

jetstream/import_map.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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-35",
6-
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
5+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@std/io": "jsr:@std/[email protected]"
99
}
10-
}
10+
}

jetstream/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
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-35"
37+
"@nats-io/nats-core": "3.0.0-36"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.7.6",
4141
"shx": "^0.3.4",
4242
"typedoc": "^0.26.10",
4343
"typescript": "^5.6.3"
4444
}
45-
}
45+
}

kv/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -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-35",
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
3737
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
3838
}
39-
}
39+
}

kv/import_map.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"imports": {
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",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
55
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
66
"@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]",
1010
"@std/io": "jsr:@std/[email protected]"
1111
}
12-
}
12+
}

kv/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
3636
"dependencies": {
3737
"@nats-io/jetstream": "3.0.0-23",
38-
"@nats-io/nats-core": "3.0.0-35"
38+
"@nats-io/nats-core": "3.0.0-36"
3939
},
4040
"devDependencies": {
4141
"@types/node": "^22.7.6",
4242
"shx": "^0.3.4",
4343
"typedoc": "^0.26.10",
4444
"typescript": "^5.6.3"
4545
}
46-
}
46+
}

obj/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -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-35",
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
3737
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
3838
}
39-
}
39+
}

obj/import_map.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"imports": {
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",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
55
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
66
"@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]",
1010
"@std/io": "jsr:@std/[email protected]"
1111
}
12-
}
12+
}

obj/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
3636
"dependencies": {
3737
"@nats-io/jetstream": "3.0.0-23",
38-
"@nats-io/nats-core": "3.0.0-35"
38+
"@nats-io/nats-core": "3.0.0-36"
3939
},
4040
"devDependencies": {
4141
"@types/node": "^22.7.6",
4242
"shx": "^0.3.4",
4343
"typedoc": "^0.26.10",
4444
"typescript": "^5.6.3"
4545
}
46-
}
46+
}

services/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -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-35"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36"
3737
}
38-
}
38+
}

services/import_map.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"imports": {
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",
3+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/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]",
88
"@std/io": "jsr:@std/[email protected]"
99
}
10-
}
10+
}

services/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
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-35"
37+
"@nats-io/nats-core": "3.0.0-36"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.7.6",
4141
"shx": "^0.3.4",
4242
"typedoc": "^0.26.10",
4343
"typescript": "^5.6.3"
4444
}
45-
}
45+
}

transport-deno/deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
},
2121
"imports": {
2222
"@std/io": "jsr:@std/[email protected]",
23-
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
23+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
2424
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
2525
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
2626
}
27-
}
27+
}

transport-node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"node": ">= 18.0.0"
5555
},
5656
"dependencies": {
57-
"@nats-io/nats-core": "3.0.0-35",
57+
"@nats-io/nats-core": "3.0.0-36",
5858
"@nats-io/nkeys": "1.2.0-7",
5959
"@nats-io/nuid": "2.0.1-2"
6060
},
@@ -68,4 +68,4 @@
6868
"@nats-io/kv": "3.0.0-17",
6969
"@nats-io/obj": "3.0.0-18"
7070
}
71-
}
71+
}

0 commit comments

Comments
 (0)