-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(jetstream): fixed possible dereference of undefined value when va…
…lidating stream sources fix(kv): fixed handling of kv sources by adding a necessary transform -- This fix was ported from nats-io/nats.deno#721
- Loading branch information
Showing
12 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nats-io/jetstream", | ||
"version": "3.0.0-3", | ||
"version": "3.0.0-4", | ||
"files": [ | ||
"lib/", | ||
"build/src/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@nats-io/kv", | ||
"version": "3.0.0-2", | ||
"version": "3.0.0-3", | ||
"exports": { | ||
".": "./src/mod.ts", | ||
"./internal": "./src/internal_mod.ts" | ||
|
@@ -29,6 +29,6 @@ | |
}, | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]3" | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-18/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]3", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-3/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-4", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-4/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@nats-io/nkeys": "jsr:@nats-io/[email protected]", | ||
"@nats-io/nuid": "jsr:@nats-io/[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,6 @@ | |
}, | ||
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]3" | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"imports": { | ||
"@nats-io/nats-core": "jsr:@nats-io/nats-core@~3.0.0-18", | ||
"@nats-io/nats-core/internal": "jsr:@nats-io/nats-core@~3.0.0-18/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/[email protected]3", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-3/internal", | ||
"@nats-io/jetstream": "jsr:@nats-io/jetstream@~3.0.0-4", | ||
"@nats-io/jetstream/internal": "jsr:@nats-io/jetstream@~3.0.0-4/internal", | ||
"test_helpers": "../test_helpers/mod.ts", | ||
"@nats-io/nkeys": "jsr:@nats-io/[email protected]", | ||
"@nats-io/nuid": "jsr:@nats-io/[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters