Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
- Increased compatibility of Fetch related classes
- Implemented File
- Complete rewrite of console API
- Added some crypto APIs
- Fix regressions and compatibility with new Rust implementation of Runtime Interface Client
- ES2023. New language feature including top-level await etc
- Increased Web-API compliance (encoding, url, etc)
- Renamed modules
- Support for extra CA certs (see README)
- Support for UTF-16 (BE/LE) encodings
- Typescript types for LLRT
- Increased cold start performance (8% to 20%) on "hello world" Lambda functions (ARM64, 128Mb memory)
- Minor performance updates
- Easier integration with external projects (LLRT as a crate)
- Updated dependencies

A huge thanks to [all contributors](https://github.com/awslabs/llrt/graphs/contributors)!


Full list of changes:
https://github.com/awslabs/llrt/compare/v0.1.14-beta...v0.1.15-beta
https://github.com/awslabs/llrt/compare/v0.1.15-beta...v0.2.0-beta
8 changes: 4 additions & 4 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.15-beta"
version = "0.2.0-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.15-beta"
version = "0.2.0-beta"
edition = "2021"
license-file = "LICENSE"

Expand Down
4 changes: 2 additions & 2 deletions llrt_modules/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llrt_modules"
description = "LLRT Modules for rquickjs"
version = "0.1.15-beta"
version = "0.2.0-beta"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/llrt"
Expand Down Expand Up @@ -50,7 +50,7 @@ __stream = ["buffer", "__bytearray-buffer"]
either = "1"
itoa = { version = "1", optional = true }
once_cell = { version = "1", optional = true }
llrt_utils = { version = "0.1.15-beta", path = "../llrt_utils", default-features = false, features = [
llrt_utils = { version = "0.2.0-beta", path = "../llrt_utils", default-features = false, features = [
"ctx",
] }
rquickjs = { version = "0.6", features = [
Expand Down
2 changes: 1 addition & 1 deletion llrt_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llrt_utils"
description = "LLRT utilities"
version = "0.1.15-beta"
version = "0.2.0-beta"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/llrt"
Expand Down