Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nats-io/nats.node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.29.2
Choose a base ref
...
head repository: nats-io/nats.node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.29.3
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Mar 19, 2025

  1. Update NBC to 1.29.3 and client version to 2.29.3 (#652)

    aricart authored Mar 19, 2025
    Copy the full SHA
    adcd5ee View commit details
Showing with 23 additions and 23 deletions.
  1. +20 −20 package-lock.json
  2. +2 −2 package.json
  3. +1 −1 src/node_transport.ts
40 changes: 20 additions & 20 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nats",
"version": "2.29.2",
"version": "2.29.3",
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
"keywords": [
"nats",
@@ -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 ./jetstream ./.deps",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.29.2 https://github.com/nats-io/nats.deno.git",
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.29.3 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",
2 changes: 1 addition & 1 deletion src/node_transport.ts
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ const { resolve } = require("path");
const { readFile, existsSync } = require("fs");
const dns = require("dns");

const VERSION = "2.29.2";
const VERSION = "2.29.3";
const LANG = "nats.js";

export class NodeTransport implements Transport {