Skip to content

Commit

Permalink
Prepare v0.1.14 beta (#381)
Browse files Browse the repository at this point in the history
* Update lockfile

* Update changelog

* Increase timeout to deal with slow qemu emulation in tests
  • Loading branch information
richarddavison authored May 13, 2024
1 parent 279f36f commit 88a5096
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 18 deletions.
15 changes: 3 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion llrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llrt"
version = "0.1.13-beta"
version = "0.1.14-beta"
edition = "2021"
license-file = "LICENSE"

Expand Down
2 changes: 1 addition & 1 deletion llrt_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llrt_core"
version = "0.1.13-beta"
version = "0.1.14-beta"
edition = "2021"
license-file = "LICENSE"

Expand Down
4 changes: 2 additions & 2 deletions tests/unit/events.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe("AbortSignal & AbortController", () => {
expect(signal.reason).toBeInstanceOf(DOMException);
expect(signal.reason.name).toBe("TimeoutError");
done();
}, 100);
}, 200);
}, 0);
});

Expand All @@ -138,7 +138,7 @@ describe("AbortSignal & AbortController", () => {
setTimeout(() => {
expect(new_signal.aborted).toBe(true);
done();
}, 100);
}, 200);
});

it("should only emit aborted once", () => {
Expand Down

0 comments on commit 88a5096

Please sign in to comment.