From 9e8a26427aaaa3312b4514e5bcc56d8607489639 Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Thu, 9 May 2024 13:38:25 -0500 Subject: [PATCH] [BUMP] nbc to v1.25.0, client version (#240) --- package-lock.json | 4 ++-- package.json | 2 +- src/connect.ts | 2 +- src/mod.ts | 4 ++-- src/nats-base-client.ts | 2 +- src/ws_transport.ts | 6 +++--- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index a83b318..9309b05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nats.ws", - "version": "1.25.0", + "version": "1.26.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nats.ws", - "version": "1.25.0", + "version": "1.26.0", "license": "Apache-2.0", "devDependencies": { "@types/node": "^20.12.8", diff --git a/package.json b/package.json index 9f87192..f407229 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nats.ws", - "version": "1.25.0", + "version": "1.26.0", "description": "WebSocket NATS client", "main": "./cjs/nats.js", "module": "./esm/nats.js", diff --git a/src/connect.ts b/src/connect.ts index 10da9a7..95cda3d 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.24.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/nats-base-client/internal_mod.ts"; import { WsTransport } from "./ws_transport.ts"; diff --git a/src/mod.ts b/src/mod.ts index f137b1a..b643fa8 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.24.0/nats-base-client/mod.ts"; -export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.24.0/jetstream/mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/nats-base-client/mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/jetstream/mod.ts"; export { connect } from "./connect.ts"; diff --git a/src/nats-base-client.ts b/src/nats-base-client.ts index a1452d5..78875d8 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.24.0/nats-base-client/internal_mod.ts"; +export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/nats-base-client/internal_mod.ts"; diff --git a/src/ws_transport.ts b/src/ws_transport.ts index faccd00..4b1bd43 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.24.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/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.24.0/nats-base-client/internal_mod.ts"; +} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.25.0/nats-base-client/internal_mod.ts"; -const VERSION = "1.25.0"; +const VERSION = "1.26.0"; const LANG = "nats.ws"; export type WsSocketFactory = (u: string, opts: ConnectionOptions) => Promise<{