Skip to content

Commit

Permalink
[BUMP] nbc to v1.22.0 (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed Apr 10, 2024
1 parent bfebe11 commit 0d2918f
Show file tree
Hide file tree
Showing 7 changed files with 199 additions and 260 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
npm run check-package
- run: npm run clean
- run: npm publish --provenance --access public --tag=next
- run: npm publish --provenance --access public --tag=latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
433 changes: 186 additions & 247 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "nats.ws",
"version": "1.22.0",
"version": "1.23.0",
"description": "WebSocket NATS client",
"main": "./cjs/nats.js",
"module": "./esm/nats.js",
Expand Down
4 changes: 2 additions & 2 deletions src/connect.ts
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2023 The NATS Authors
* Copyright 2020-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -19,7 +19,7 @@ import {
setTransportFactory,
Transport,
TransportFactory,
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.21.0/nats-base-client/internal_mod.ts";
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/nats-base-client/internal_mod.ts";

import { WsTransport } from "./ws_transport.ts";

Expand Down
6 changes: 3 additions & 3 deletions src/mod.ts
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2023 The NATS Authors
* Copyright 2020-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -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.21.0/nats-base-client/mod.ts";
export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.21.0/jetstream/mod.ts";
export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/nats-base-client/mod.ts";
export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/jetstream/mod.ts";
export { connect } from "./connect.ts";
4 changes: 2 additions & 2 deletions src/nats-base-client.ts
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2023 The NATS Authors
* Copyright 2020-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -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.21.0/nats-base-client/internal_mod.ts";
export * from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/nats-base-client/internal_mod.ts";
8 changes: 4 additions & 4 deletions src/ws_transport.ts
@@ -1,5 +1,5 @@
/*
* Copyright 2020-2023 The NATS Authors
* Copyright 2020-2024 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand All @@ -19,7 +19,7 @@ import type {
Server,
ServerInfo,
Transport,
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.21.0/nats-base-client/internal_mod.ts";
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/nats-base-client/internal_mod.ts";
import {
checkOptions,
DataBuffer,
Expand All @@ -30,9 +30,9 @@ import {
INFO,
NatsError,
render,
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.21.0/nats-base-client/internal_mod.ts";
} from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.22.0/nats-base-client/internal_mod.ts";

const VERSION = "1.22.0";
const VERSION = "1.23.0";
const LANG = "nats.ws";

export type WsSocketFactory = (u: string, opts: ConnectionOptions) => Promise<{
Expand Down

0 comments on commit 0d2918f

Please sign in to comment.