From e1a0cb273aa7acb189ec5d0ad7e109b265b65cd6 Mon Sep 17 00:00:00 2001 From: richarddavison <89518095+richarddavison@users.noreply.github.com> Date: Mon, 21 Oct 2024 12:08:49 +0200 Subject: [PATCH] Prepare v0.3.0-beta (#639) --- CHANGELOG.md | 14 +++++++++++--- Cargo.lock | 8 ++++---- llrt/Cargo.toml | 2 +- llrt_core/Cargo.toml | 2 +- llrt_modules/Cargo.toml | 4 ++-- llrt_utils/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed70c806e7..2daecae344 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ -- Added buffer subarray -- Fix regression affecting @aws-sdk initalization performance +- Upgrade to latest version of QuickJS +- Support of require/importing JSON files +- Better CJS compatibility +- Basic Windows support +- Initial support for Node.js module resolution +- Improved multi-process test runner +- AWS SDK clients connection are now inited in background threads and in parallel +- `Event` class +- Updated dependencies +- Multiple bug fixes A huge thanks to [all contributors](https://github.com/awslabs/llrt/graphs/contributors)! Full list of changes: -https://github.com/awslabs/llrt/compare/v0.2.1-beta...v0.2.2-beta +https://github.com/awslabs/llrt/compare/v0.2.2-beta...v0.3.0-beta diff --git a/Cargo.lock b/Cargo.lock index 1726933d89..9e20ad2455 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2608,7 +2608,7 @@ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "llrt" -version = "0.2.2-beta" +version = "0.3.0-beta" dependencies = [ "chrono", "llrt_core", @@ -2620,7 +2620,7 @@ dependencies = [ [[package]] name = "llrt_core" -version = "0.2.2-beta" +version = "0.3.0-beta" dependencies = [ "async-trait", "brotlic", @@ -2670,7 +2670,7 @@ dependencies = [ [[package]] name = "llrt_modules" -version = "0.2.2-beta" +version = "0.3.0-beta" dependencies = [ "brotlic", "crc32c", @@ -2700,7 +2700,7 @@ dependencies = [ [[package]] name = "llrt_utils" -version = "0.2.2-beta" +version = "0.3.0-beta" dependencies = [ "base64-simd", "hex-simd", diff --git a/llrt/Cargo.toml b/llrt/Cargo.toml index acdf9fd297..43cd6b111d 100644 --- a/llrt/Cargo.toml +++ b/llrt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt" -version = "0.2.2-beta" +version = "0.3.0-beta" edition = "2021" license-file = "LICENSE" diff --git a/llrt_core/Cargo.toml b/llrt_core/Cargo.toml index edb5760bf2..ea3060d1e2 100644 --- a/llrt_core/Cargo.toml +++ b/llrt_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "llrt_core" -version = "0.2.2-beta" +version = "0.3.0-beta" edition = "2021" license-file = "LICENSE" diff --git a/llrt_modules/Cargo.toml b/llrt_modules/Cargo.toml index 4cb04ce75d..8ea0355496 100644 --- a/llrt_modules/Cargo.toml +++ b/llrt_modules/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llrt_modules" description = "LLRT Modules for rquickjs" -version = "0.2.2-beta" +version = "0.3.0-beta" edition = "2021" license = "Apache-2.0" repository = "https://github.com/awslabs/llrt" @@ -69,7 +69,7 @@ __stream = ["buffer", "__bytearray-buffer"] either = "1" itoa = { version = "1", optional = true } once_cell = { version = "1", optional = true } -llrt_utils = { version = "0.2.2-beta", path = "../llrt_utils", default-features = false, features = [ +llrt_utils = { version = "0.3.0-beta", path = "../llrt_utils", default-features = false, features = [ "ctx", ] } rquickjs = { git = "https://github.com/DelSkayn/rquickjs.git", rev = "3af3f46b13eb89a2694e5e4e2e73924a20fa9dd1", features = [ diff --git a/llrt_utils/Cargo.toml b/llrt_utils/Cargo.toml index 4d28b6fa72..accc50799a 100644 --- a/llrt_utils/Cargo.toml +++ b/llrt_utils/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llrt_utils" description = "LLRT utilities" -version = "0.2.2-beta" +version = "0.3.0-beta" edition = "2021" license = "Apache-2.0" repository = "https://github.com/awslabs/llrt"