From 367573e866b746313b4173179648a95ffc932dcd Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Thu, 16 Jan 2025 10:17:12 -0600 Subject: [PATCH] [BUMP] nbc to 1.29.1 (#261) --- package.json | 2 +- src/connect.ts | 2 +- src/mod.ts | 4 ++-- src/nats-base-client.ts | 2 +- src/ws_transport.ts | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index ca54ce9..d450fec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nats.ws", - "version": "1.30.0", + "version": "1.30.1", "description": "WebSocket NATS client", "main": "./cjs/nats.js", "module": "./esm/nats.js", diff --git a/src/connect.ts b/src/connect.ts index c0a3056..b4d8e51 100644 --- a/src/connect.ts +++ b/src/connect.ts @@ -19,7 +19,7 @@ import { setTransportFactory, Transport, TransportFactory, -} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/nats-base-client/internal_mod.ts"; import { WsTransport } from "./ws_transport.ts"; diff --git a/src/mod.ts b/src/mod.ts index f068bdb..cd03633 100644 --- a/src/mod.ts +++ b/src/mod.ts @@ -12,6 +12,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/nats-base-client/mod.ts"; -export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/jetstream/mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/nats-base-client/mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/jetstream/mod.ts"; export { connect } from "./connect.ts"; diff --git a/src/nats-base-client.ts b/src/nats-base-client.ts index b9817f4..c5e7244 100644 --- a/src/nats-base-client.ts +++ b/src/nats-base-client.ts @@ -13,4 +13,4 @@ * limitations under the License. */ // this import here to drive the build system -export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/nats-base-client/internal_mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/nats-base-client/internal_mod.ts"; diff --git a/src/ws_transport.ts b/src/ws_transport.ts index 26d2c60..c6ac5c6 100644 --- a/src/ws_transport.ts +++ b/src/ws_transport.ts @@ -19,7 +19,7 @@ import type { Server, ServerInfo, Transport, -} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/nats-base-client/internal_mod.ts"; import { checkOptions, DataBuffer, @@ -30,9 +30,9 @@ import { INFO, NatsError, render, -} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.29.1/nats-base-client/internal_mod.ts"; -const VERSION = "1.30.0"; +const VERSION = "1.30.1"; const LANG = "nats.ws"; export type WsSocketFactory = (u: string, opts: ConnectionOptions) => Promise<{