Skip to content

Commit 49f9c2d

Browse files
committed
bump dependencies
bump modules to 3.3.1 Signed-off-by: Alberto Ricart <alberto@synadia.com>
1 parent 9d223a9 commit 49f9c2d

File tree

16 files changed

+41
-41
lines changed

16 files changed

+41
-41
lines changed

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.3.0",
3+
"version": "3.3.1",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"

core/package.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.3.0",
3+
"version": "3.3.1",
44
"files": [
55
"lib/",
66
"LICENSE",

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.3.0";
2+
export const version = "3.3.1";

deno.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
},
55
"imports": {
66
"test_helpers": "./test_helpers/mod.ts",
7-
"@std/cli": "jsr:@std/cli@1.0.24",
8-
"@std/path": "jsr:@std/path@1.1.3",
7+
"@std/cli": "jsr:@std/cli@1.0.27",
8+
"@std/path": "jsr:@std/path@1.1.4",
99
"@aricart/cobra": "jsr:@aricart/cobra@0.1.2",
10-
"esbuild": "npm:esbuild@0.27.1",
10+
"esbuild": "npm:esbuild@0.27.3",
1111
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@0.11.1",
12-
"@nats-io/transport-deno": "jsr:@nats-io/transport-deno@3.3.0",
13-
"@david/dax": "jsr:@david/dax@0.44.1",
12+
"@nats-io/transport-deno": "jsr:@nats-io/transport-deno@3.3.1",
13+
"@david/dax": "jsr:@david/dax@0.45.0",
1414
"license-checker": "npm:license-checker@25.0.1",
15-
"@std/assert": "jsr:@std/assert@1.0.16",
16-
"@std/async": "jsr:@std/async@1.0.15",
15+
"@std/assert": "jsr:@std/assert@1.0.18",
16+
"@std/async": "jsr:@std/async@1.1.1",
1717
"@std/bytes": "jsr:@std/bytes@1.0.6",
18-
"@std/fmt": "jsr:@std/fmt@1.0.8",
18+
"@std/fmt": "jsr:@std/fmt@1.0.9",
1919
"@std/jsonc": "jsr:@std/jsonc@1.0.2",
20-
"@std/semver": "jsr:@std/semver@1.0.7",
20+
"@std/semver": "jsr:@std/semver@1.0.8",
2121
"@nats-io/jwt": "jsr:@nats-io/jwt@0.0.11",
2222
"@chiefbiiko/sha256": "https://denopkg.com/chiefbiiko/sha256@v1.0.0/mod.ts",
2323
"nats-deno": "https://raw.githubusercontent.com/nats-io/nats.deno/main/src/mod.ts",

jetstream/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
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.3.0"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@3.3.1"
3737
}
3838
}

jetstream/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -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.3.0"
36+
"@nats-io/nats-core": "3.3.1"
3737
},
3838
"devDependencies": {
3939
"@types/node": "^25.0.0",

kv/deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
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.3.0",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.3.0"
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@3.3.1",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.3.1"
3838
}
3939
}

kv/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/kv",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -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.3.0",
37-
"@nats-io/nats-core": "3.3.0"
36+
"@nats-io/jetstream": "3.3.1",
37+
"@nats-io/nats-core": "3.3.1"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^25.0.0",

obj/deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/obj",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
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/nats-core@3.3.0",
37-
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.3.0",
36+
"@nats-io/nats-core": "jsr:@nats-io/nats-core@3.3.1",
37+
"@nats-io/jetstream": "jsr:@nats-io/jetstream@3.3.1",
3838
"js-sha256": "npm:js-sha256@0.11.1"
3939
}
4040
}

obj/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/obj",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -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.3.0",
37-
"@nats-io/nats-core": "3.3.0",
36+
"@nats-io/jetstream": "3.3.1",
37+
"@nats-io/nats-core": "3.3.1",
3838
"js-sha256": "^0.11.1"
3939
},
4040
"devDependencies": {

0 commit comments

Comments
 (0)