Skip to content

Commit dbb6a7b

Browse files
committed
[BUMP] module versions
1 parent 4b64982 commit dbb6a7b

22 files changed

+28
-28
lines changed

jetstream/tests/consume_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {
3434
delay,
3535
nanos,
3636
syncIterator,
37-
} from "jsr:@nats-io/[email protected]2";
37+
} from "jsr:@nats-io/[email protected]4";
3838
import type { PullConsumerMessagesImpl } from "../consumer.ts";
3939
import {
4040
AckPolicy,

jetstream/tests/consumers_ordered_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import {
4343
deadline,
4444
deferred,
4545
delay,
46-
} from "jsr:@nats-io/[email protected]2";
46+
} from "jsr:@nats-io/[email protected]4";
4747

4848
Deno.test("ordered consumers - get", async () => {
4949
const { ns, nc } = await _setup(connect, jetstreamServerConf());

jetstream/tests/consumers_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import {
3939
connect,
4040
deferred,
4141
nanos,
42-
} from "jsr:@nats-io/[email protected]2";
42+
} from "jsr:@nats-io/[email protected]4";
4343
import type { NatsConnectionImpl } from "jsr:@nats-io/[email protected]/internal";
4444
import {
4545
_setup,

jetstream/tests/fetch_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
nanos,
2828
StringCodec,
2929
syncIterator,
30-
} from "jsr:@nats-io/[email protected]2";
30+
} from "jsr:@nats-io/[email protected]4";
3131
import type { NatsConnectionImpl } from "jsr:@nats-io/[email protected]/internal";
3232
import {
3333
AckPolicy,

jetstream/tests/jetream409_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
deferred,
2020
nanos,
2121
StringCodec,
22-
} from "jsr:@nats-io/[email protected]2";
22+
} from "jsr:@nats-io/[email protected]4";
2323

2424
import type { NatsError } from "jsr:@nats-io/[email protected]";
2525
import {

jetstream/tests/jetstream_fetchconsumer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import {
3737
Events,
3838
nuid,
3939
syncIterator,
40-
} from "jsr:@nats-io/[email protected]2";
40+
} from "jsr:@nats-io/[email protected]4";
4141
import type {
4242
NatsConnectionImpl,
4343
NatsError,

jetstream/tests/jetstream_pullconsumer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ import {
4747
nuid,
4848
StringCodec,
4949
syncIterator,
50-
} from "jsr:@nats-io/[email protected]2";
50+
} from "jsr:@nats-io/[email protected]4";
5151

5252
import type {
5353
NatsConnectionImpl,

jetstream/tests/jetstream_pushconsumer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import {
3737
nuid,
3838
StringCodec,
3939
syncIterator,
40-
} from "jsr:@nats-io/[email protected]2";
40+
} from "jsr:@nats-io/[email protected]4";
4141
import { consumerOpts, JsHeaders } from "../types.ts";
4242

4343
import type {

jetstream/tests/jetstream_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import {
4444
nanos,
4545
nuid,
4646
StringCodec,
47-
} from "jsr:@nats-io/[email protected]2";
47+
} from "jsr:@nats-io/[email protected]4";
4848
import {
4949
assert,
5050
assertArrayIncludes,

jetstream/tests/jsm_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ import {
3838
nkeys,
3939
nuid,
4040
StringCodec,
41-
} from "jsr:@nats-io/[email protected]2";
41+
} from "jsr:@nats-io/[email protected]4";
4242
import type {
4343
NatsConnection,
4444
NatsError,
45-
} from "jsr:@nats-io/[email protected]2";
45+
} from "jsr:@nats-io/[email protected]4";
4646
import {
4747
AckPolicy,
4848
AdvisoryKind,

jetstream/tests/jsmsg_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import {
2121
Empty,
2222
nanos,
2323
StringCodec,
24-
} from "jsr:@nats-io/[email protected]2";
25-
import type { Msg } from "jsr:@nats-io/[email protected]2";
24+
} from "jsr:@nats-io/[email protected]4";
25+
import type { Msg } from "jsr:@nats-io/[email protected]4";
2626
import type { MsgImpl } from "jsr:@nats-io/[email protected]/internal";
2727

2828
import type { JsMsgImpl } from "../jsmsg.ts";

jetstream/tests/next_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
connect,
2626
delay,
2727
nanos,
28-
} from "jsr:@nats-io/[email protected]2";
28+
} from "jsr:@nats-io/[email protected]4";
2929
import type {
3030
NatsConnectionImpl,
3131
} from "jsr:@nats-io/[email protected]/internal";

jetstream/tests/streams_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import { NatsServer, notCompatible } from "../../test_helpers/mod.ts";
1717
import { AckPolicy, jetstream, jetstreamManager } from "../mod.ts";
1818

19-
import { connect, JSONCodec } from "jsr:@nats-io/[email protected]2";
19+
import { connect, JSONCodec } from "jsr:@nats-io/[email protected]4";
2020

2121
import {
2222
assertArrayIncludes,

jetstream/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"sourceMap": true,
88
"declaration": true,
99
"allowJs": true,
10-
"removeComments": false,
10+
"removeComments": false
1111
},
1212
"include": [
1313
"cjs/**/*"
1414
]
15-
}
15+
}

kv/tests/kv_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ import { JSONCodec } from "jsr:@nats-io/[email protected]/internal";
7575
import type {
7676
QueuedIteratorImpl,
7777
} from "jsr:@nats-io/[email protected]/internal";
78-
import { connect } from "jsr:@nats-io/[email protected]2";
78+
import { connect } from "jsr:@nats-io/[email protected]4";
7979
import { Kvm } from "../kv.ts";
8080

8181
Deno.test("kv - key validation", () => {

os/tests/objectstore_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
assertRejects,
2727
equal,
2828
} from "jsr:@std/assert";
29-
import { connect } from "jsr:@nats-io/[email protected]2";
29+
import { connect } from "jsr:@nats-io/[email protected]4";
3030
import {
3131
Base64UrlPaddedCodec,
3232
DataBuffer,

service/tests/service-check.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
*/
1515

1616
import { cli } from "https://deno.land/x/[email protected]/mod.ts";
17-
import { connect } from "jsr:@nats-io/[email protected]2";
18-
import type { NatsConnection } from "jsr:@nats-io/[email protected]2";
17+
import { connect } from "jsr:@nats-io/[email protected]4";
18+
import type { NatsConnection } from "jsr:@nats-io/[email protected]4";
1919
import {
2020
collect,
2121
parseSemVer,

service/tests/service_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import {
5757
ServiceVerb,
5858
Svc,
5959
} from "../mod.ts";
60-
import { connect } from "jsr:@nats-io/[email protected]2";
60+
import { connect } from "jsr:@nats-io/[email protected]4";
6161

6262
Deno.test("service - control subject", () => {
6363
const test = (verb: ServiceVerb) => {

src/connect.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ import type {
1818
NatsConnection,
1919
Transport,
2020
TransportFactory,
21-
} from "jsr:@nats-io/[email protected]14/internal";
21+
} from "jsr:@nats-io/[email protected]15/internal";
2222

2323
import {
2424
NatsConnectionImpl,
2525
setTransportFactory,
26-
} from "jsr:@nats-io/[email protected]14/internal";
26+
} from "jsr:@nats-io/[email protected]15/internal";
2727

2828
export function connect(opts: ConnectionOptions = {}): Promise<NatsConnection> {
2929
setTransportFactory({

src/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-transport-deno",
3-
"version": "3.0.0-3",
3+
"version": "3.0.0-4",
44
"exports": {
55
".": "./mod.ts"
66
},

src/deno_transport.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ import {
2424
INFO,
2525
NatsError,
2626
render,
27-
} from "jsr:@nats-io/[email protected]14/internal";
27+
} from "jsr:@nats-io/[email protected]15/internal";
2828

2929
import type {
3030
ConnectionOptions,
3131
Deferred,
3232
ServerInfo,
3333
TlsOptions,
3434
Transport,
35-
} from "jsr:@nats-io/[email protected]14/internal";
35+
} from "jsr:@nats-io/[email protected]15/internal";
3636

3737
import { writeAll } from "jsr:@std/io";
3838

src/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
export { connect } from "./connect.ts";
2-
export * from "jsr:@nats-io/[email protected]14";
2+
export * from "jsr:@nats-io/[email protected]15";

0 commit comments

Comments
 (0)