diff --git a/CHANGELOG.md b/CHANGELOG.md index 42428f201a..5e12934080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,5 @@ -- Added URL as a module -- Added navigator.userAgent -- Implemented AbortController/AbortSignal -- Port Lambda Runtime Interface Client to Rust (perf improvement) -- Increase fetch compat (abort signal, response encoding/decompression, redirect handling) -- Implemented DOMException -- Dependency updates -- Bundle @aws-sdk/client-cognito-identity-provider -- HTTP/2 support -- Expose crypto on global this -- Bug fixes +- Hotfix release when loading more than one SDK Client +- Increase Request compat Full list of changes: -https://github.com/awslabs/llrt/compare/v0.1.12-beta...v0.1.13-beta +https://github.com/awslabs/llrt/compare/v0.1.13-beta...v0.1.14-beta diff --git a/Cargo.lock b/Cargo.lock index 7a24d306d0..5b2c39576f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -882,7 +882,7 @@ dependencies = [ [[package]] name = "llrt" -version = "0.1.13-beta" +version = "0.1.14-beta" dependencies = [ "chrono", "llrt_core", @@ -894,7 +894,7 @@ dependencies = [ [[package]] name = "llrt_core" -version = "0.1.13-beta" +version = "0.1.14-beta" dependencies = [ "async-trait", "base64-simd", diff --git a/llrt/Cargo.toml b/llrt/Cargo.toml index a11d8f3846..d107cca2d5 100644 --- a/llrt/Cargo.toml +++ b/llrt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt" -version = "0.1.13-beta" +version = "0.1.14-beta" edition = "2021" license-file = "LICENSE" diff --git a/llrt_core/Cargo.toml b/llrt_core/Cargo.toml index 60255dfe6f..7d9df27e38 100644 --- a/llrt_core/Cargo.toml +++ b/llrt_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt_core" -version = "0.1.13-beta" +version = "0.1.14-beta" edition = "2021" license-file = "LICENSE" diff --git a/tests/unit/events.test.ts b/tests/unit/events.test.ts index 23e14416be..fc8634ebbc 100644 --- a/tests/unit/events.test.ts +++ b/tests/unit/events.test.ts @@ -123,7 +123,7 @@ describe("AbortSignal & AbortController", () => { expect(signal.reason).toBeInstanceOf(DOMException); expect(signal.reason.name).toBe("TimeoutError"); done(); - }, 100); + }, 200); }, 0); }); @@ -138,7 +138,7 @@ describe("AbortSignal & AbortController", () => { setTimeout(() => { expect(new_signal.aborted).toBe(true); done(); - }, 100); + }, 200); }); it("should only emit aborted once", () => {