Skip to content

Commit

Permalink
[BUMP] nbc, client and dep versions (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Nov 2, 2023
1 parent 0685dc9 commit b76a04b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/natsjs.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
deno-version: ${{ matrix.deno-version }}
- name: Set NATS Server Version
run: echo "NATS_VERSION=v2.10.3" >> $GITHUB_ENV
run: echo "NATS_VERSION=v2.10.4" >> $GITHUB_ENV
- name: Get nats-server
run: |
wget "https://github.com/nats-io/nats-server/releases/download/$NATS_VERSION/nats-server-$NATS_VERSION-linux-amd64.zip" -O tmp.zip
Expand Down
42 changes: 30 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "nats",
"version": "2.17.1-2",
"version": "2.18.0",
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
Expand Down Expand Up @@ -42,7 +42,7 @@
"cjs-jetstream": "deno run --allow-all ./bin/cjs-fix-imports.ts -o jetstream/ ./.deps/nats.deno/jetstream/",
"cjs": "npm run cjs-nbc && npm run cjs-jetstream",
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./.deps",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch main https://github.com/nats-io/nats.deno.git",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.18.0 https://github.com/nats-io/nats.deno.git",
"fmt": "deno fmt ./src/ ./examples/ ./test/",
"prepack": "npm run clone-nbc && npm run cjs && npm run check-package && npm run build",
"ava": "nyc ava --verbose -T 60000",
Expand All @@ -62,13 +62,13 @@
"nkeys.js": "1.0.5"
},
"devDependencies": {
"@types/node": "^20.6.x",
"@types/node": "^20.8.x",
"ava": "^5.3.x",
"minimist": "^1.2.8",
"nats-jwt": "^0.0.5",
"nyc": "^15.1.0",
"shx": "^0.3.3",
"typescript": "^5.2.x"
"typescript": "5.2.2"
},
"typings": "./lib/src/mod.d.ts",
"ava": {
Expand Down
2 changes: 1 addition & 1 deletion src/node_transport.ts
Expand Up @@ -34,7 +34,7 @@ const { resolve } = require("path");
const { readFile, existsSync } = require("fs");
const dns = require("dns");

const VERSION = "2.17.1-2";
const VERSION = "2.18.0";
const LANG = "nats.js";

export class NodeTransport implements Transport {
Expand Down

0 comments on commit b76a04b

Please sign in to comment.