Skip to content

Commit 04a23e1

Browse files
authored
[BUMP] nbc to 1.26.0, ci deps (#622)
1 parent 04376d5 commit 04a23e1

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/natsjs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
test:
1414
strategy:
1515
matrix:
16-
node-version: [21.x, 20.x, 18.x]
17-
deno-version: [1.43.1]
16+
node-version: [22.x, 20.x, 18.x]
17+
deno-version: [1.43.5]
1818

1919
runs-on: ubuntu-latest
2020

.github/workflows/npm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
test:
99
strategy:
1010
matrix:
11-
node-version: [21.x]
12-
deno-version: [1.43.1]
11+
node-version: [22.x]
12+
deno-version: [1.43.5]
1313

1414
runs-on: ubuntu-latest
1515
permissions:

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nats",
3-
"version": "2.25.0",
3+
"version": "2.26.0",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -42,7 +42,7 @@
4242
"cjs-jetstream": "deno run --allow-all ./bin/cjs-fix-imports.ts -o jetstream/ ./.deps/nats.deno/jetstream/",
4343
"cjs": "npm run cjs-nbc && npm run cjs-jetstream",
4444
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./.deps",
45-
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.25.0 https://github.com/nats-io/nats.deno.git",
45+
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.26.0 https://github.com/nats-io/nats.deno.git",
4646
"fmt": "deno fmt ./src/ ./examples/ ./test/",
4747
"prepack": "npm run clone-nbc && npm run cjs && npm run check-package && npm run build",
4848
"ava": "nyc ava --verbose -T 60000",
@@ -66,7 +66,7 @@
6666
"nkeys.js": "1.1.0"
6767
},
6868
"devDependencies": {
69-
"@types/node": "^20.12.8",
69+
"@types/node": "^20.12.12",
7070
"ava": "^5.3.x",
7171
"minimist": "^1.2.8",
7272
"nats-jwt": "^0.0.9",

src/node_transport.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const { resolve } = require("path");
3434
const { readFile, existsSync } = require("fs");
3535
const dns = require("dns");
3636

37-
const VERSION = "2.25.0";
37+
const VERSION = "2.26.0";
3838
const LANG = "nats.js";
3939

4040
export class NodeTransport implements Transport {

0 commit comments

Comments
 (0)