Skip to content

Commit 27d7c9b

Browse files
committed
Update dependencies: Deno, NATS version, and workflow
Upgraded the Deno version in CI from 1.44.4 to 1.46.3 and updated the NATS version used in the workflow from v2.10.17 to v2.10.24. Also updated the internal version constant in `deno_transport.ts` to 1.29.0 Signed-off-by: Alberto Ricart <[email protected]>
1 parent 0b11730 commit 27d7c9b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
environment: CI
1717
strategy:
1818
matrix:
19-
deno-version: [1.44.4]
19+
deno-version: [1.46.3]
2020

2121
steps:
2222
- name: Git Checkout Deno Module
@@ -30,7 +30,7 @@ jobs:
3030
deno-version: ${{ matrix.deno-version }}
3131

3232
- name: Set NATS Server Version
33-
run: echo "NATS_VERSION=v2.10.17" >> $GITHUB_ENV
33+
run: echo "NATS_VERSION=v2.10.24" >> $GITHUB_ENV
3434

3535
# this here because dns seems to be wedged on gha
3636
# - name: Add hosts to /etc/hosts

src/deno_transport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {
3434
Transport,
3535
} from "../nats-base-client/internal_mod.ts";
3636

37-
const VERSION = "1.28.2";
37+
const VERSION = "1.29.0";
3838
const LANG = "nats.deno";
3939

4040
const ReadBufferSize = 1024 * 256;

0 commit comments

Comments
 (0)