Skip to content

Commit

Permalink
updated: priority group feature version
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Nov 8, 2024
1 parent 54c8d78 commit 8f2e22e
Show file tree
Hide file tree
Showing 18 changed files with 39 additions and 37 deletions.
4 changes: 2 additions & 2 deletions core/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nats-io/nats-core",
"version": "3.0.0-35",
"version": "3.0.0-36",
"exports": {
".": "./src/mod.ts",
"./internal": "./src/internal_mod.ts"
Expand Down Expand Up @@ -38,4 +38,4 @@
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nats-io/nats-core",
"version": "3.0.0-35",
"version": "3.0.0-36",
"files": [
"lib/",
"LICENSE",
Expand Down Expand Up @@ -43,4 +43,4 @@
"typedoc": "^0.26.10",
"typescript": "^5.5.4"
}
}
}
2 changes: 2 additions & 0 deletions core/src/semver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export enum Feature {
JS_STREAM_COMPRESSION = "js_stream_compression",
JS_DEFAULT_CONSUMER_LIMITS = "js_default_consumer_limits",
JS_BATCH_DIRECT_GET = "js_batch_direct_get",
JS_PRIORITY_GROUPS = "js_priority_groups",
}

type FeatureVersion = {
Expand Down Expand Up @@ -111,6 +112,7 @@ export class Features {
this.set(Feature.JS_STREAM_COMPRESSION, "2.10.0");
this.set(Feature.JS_DEFAULT_CONSUMER_LIMITS, "2.10.0");
this.set(Feature.JS_BATCH_DIRECT_GET, "2.11.0");
this.set(Feature.JS_PRIORITY_GROUPS, "2.12.0");

this.disabled.forEach((f) => {
this.features.delete(f);
Expand Down
2 changes: 1 addition & 1 deletion core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated - do not edit
export const version = "3.0.0-35";
export const version = "3.0.0-36";
4 changes: 2 additions & 2 deletions jetstream/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"test": "deno test -A --parallel --reload --trace-leaks --quiet tests/ --import-map=import_map.json"
},
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35"
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36"
}
}
}
6 changes: 3 additions & 3 deletions jetstream/import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"imports": {
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
"test_helpers": "../test_helpers/mod.ts",
"@std/io": "jsr:@std/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions jetstream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
},
"description": "jetstream library - this library implements all the base functionality for NATS JetStream for javascript clients",
"dependencies": {
"@nats-io/nats-core": "3.0.0-35"
"@nats-io/nats-core": "3.0.0-36"
},
"devDependencies": {
"@types/node": "^22.7.6",
"shx": "^0.3.4",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}
}
4 changes: 2 additions & 2 deletions kv/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
},
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
}
}
}
6 changes: 3 additions & 3 deletions kv/import_map.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-23/internal",
"test_helpers": "../test_helpers/mod.ts",
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
"@std/io": "jsr:@std/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions kv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
"dependencies": {
"@nats-io/jetstream": "3.0.0-23",
"@nats-io/nats-core": "3.0.0-35"
"@nats-io/nats-core": "3.0.0-36"
},
"devDependencies": {
"@types/node": "^22.7.6",
"shx": "^0.3.4",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}
}
4 changes: 2 additions & 2 deletions obj/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
},
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23"
}
}
}
6 changes: 3 additions & 3 deletions obj/import_map.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-23",
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-23/internal",
"test_helpers": "../test_helpers/mod.ts",
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
"@std/io": "jsr:@std/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions obj/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
"dependencies": {
"@nats-io/jetstream": "3.0.0-23",
"@nats-io/nats-core": "3.0.0-35"
"@nats-io/nats-core": "3.0.0-36"
},
"devDependencies": {
"@types/node": "^22.7.6",
"shx": "^0.3.4",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}
}
4 changes: 2 additions & 2 deletions services/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
},
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35"
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36"
}
}
}
6 changes: 3 additions & 3 deletions services/import_map.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"imports": {
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-35/internal",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-36/internal",
"test_helpers": "../test_helpers/mod.ts",
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
"@std/io": "jsr:@std/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions services/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
},
"description": "services library - this library implements all the base functionality for NATS services for javascript clients",
"dependencies": {
"@nats-io/nats-core": "3.0.0-35"
"@nats-io/nats-core": "3.0.0-36"
},
"devDependencies": {
"@types/node": "^22.7.6",
"shx": "^0.3.4",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
}
}
}
4 changes: 2 additions & 2 deletions transport-deno/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
},
"imports": {
"@std/io": "jsr:@std/[email protected]",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-35",
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-36",
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
"@nats-io/nuid": "jsr:@nats-io/[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions transport-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"node": ">= 18.0.0"
},
"dependencies": {
"@nats-io/nats-core": "3.0.0-35",
"@nats-io/nats-core": "3.0.0-36",
"@nats-io/nkeys": "1.2.0-7",
"@nats-io/nuid": "2.0.1-2"
},
Expand All @@ -68,4 +68,4 @@
"@nats-io/kv": "3.0.0-17",
"@nats-io/obj": "3.0.0-18"
}
}
}

0 comments on commit 8f2e22e

Please sign in to comment.