From 9813f6dfa2c42bf469b23a18a5be06669251f51f Mon Sep 17 00:00:00 2001 From: fluencebot <116741523+fluencebot@users.noreply.github.com> Date: Sun, 16 Jul 2023 17:54:16 +0300 Subject: [PATCH] chore: release master --- .github/release-please/manifest.json | 24 +++++++-------- Cargo.lock | 22 +++++++------- air-interpreter/CHANGELOG.md | 14 +++++++++ air-interpreter/Cargo.toml | 4 +-- air/CHANGELOG.md | 30 +++++++++++++++++++ air/Cargo.toml | 10 +++---- avm/client/CHANGELOG.md | 7 +++++ avm/client/package-lock.json | 4 +-- avm/client/package.json | 2 +- crates/air-lib/air-parser/CHANGELOG.md | 12 ++++++++ crates/air-lib/air-parser/Cargo.toml | 2 +- .../execution-info-collector/CHANGELOG.md | 4 +++ .../execution-info-collector/Cargo.toml | 4 +-- crates/air-lib/interpreter-data/CHANGELOG.md | 4 +++ crates/air-lib/interpreter-data/Cargo.toml | 4 +-- crates/air-lib/test-utils/CHANGELOG.md | 5 ++++ crates/air-lib/test-utils/Cargo.toml | 6 ++-- crates/air-lib/trace-handler/CHANGELOG.md | 5 ++++ crates/air-lib/trace-handler/Cargo.toml | 6 ++-- crates/beautifier/CHANGELOG.md | 24 +++++++++++++++ crates/beautifier/Cargo.toml | 4 +-- crates/testing-framework/CHANGELOG.md | 19 ++++++++++++ crates/testing-framework/Cargo.toml | 6 ++-- tools/cli/air/CHANGELOG.md | 6 ++++ tools/cli/air/Cargo.toml | 8 ++--- tools/wasm/air-beautify-wasm/CHANGELOG.md | 4 +++ tools/wasm/air-beautify-wasm/Cargo.toml | 4 +-- 27 files changed, 189 insertions(+), 55 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index a04f6679c6..0950092442 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,22 +1,22 @@ { - "air": "0.41.0", - "air-interpreter": "0.41.0", + "air": "0.42.0", + "air-interpreter": "0.42.0", "avm/interface": "0.28.4", "avm/server": "0.32.0", - "avm/client": "0.41.0", - "crates/air-lib/air-parser": "0.7.5", - "crates/air-lib/execution-info-collector": "0.7.5", + "avm/client": "0.42.0", + "crates/air-lib/air-parser": "0.8.0", + "crates/air-lib/execution-info-collector": "0.7.6", "crates/air-lib/interpreter-cid": "0.3.0", - "crates/air-lib/interpreter-data": "0.8.0", - "crates/air-lib/test-utils": "0.7.0", - "crates/air-lib/trace-handler": "0.2.1", + "crates/air-lib/interpreter-data": "0.8.1", + "crates/air-lib/test-utils": "0.7.1", + "crates/air-lib/trace-handler": "0.2.2", "crates/air-lib/utils": "0.1.1", - "crates/beautifier": "0.1.4", + "crates/beautifier": "0.2.0", "crates/data-store": "0.6.2", - "crates/testing-framework": "0.3.0", + "crates/testing-framework": "0.4.0", "tools/cli/aquavm-air-cli": "0.2.6", - "tools/wasm/air-beautify-wasm": "0.3.0", - "tools/cli/air": "0.3.1", + "tools/wasm/air-beautify-wasm": "0.3.1", + "tools/cli/air": "0.3.2", "crates/air-lib/lambda/ast": "0.1.0", "crates/air-lib/lambda/parser": "0.1.0", "crates/air-lib/log-targets": "0.1.0", diff --git a/Cargo.lock b/Cargo.lock index c021e564a0..ce13845f45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "air-beautifier" -version = "0.1.4" +version = "0.2.0" dependencies = [ "aquavm-air-parser", "itertools", @@ -42,7 +42,7 @@ dependencies = [ [[package]] name = "air-beautify-wasm" -version = "0.3.0" +version = "0.3.1" dependencies = [ "air-beautifier", "wasm-bindgen", @@ -50,14 +50,14 @@ dependencies = [ [[package]] name = "air-execution-info-collector" -version = "0.7.5" +version = "0.7.6" dependencies = [ "aquavm-air-parser", ] [[package]] name = "air-interpreter" -version = "0.41.0" +version = "0.42.0" dependencies = [ "air-interpreter-interface", "air-log-targets", @@ -83,7 +83,7 @@ dependencies = [ [[package]] name = "air-interpreter-data" -version = "0.8.0" +version = "0.8.1" dependencies = [ "air-interpreter-cid", "air-interpreter-signatures", @@ -148,7 +148,7 @@ version = "0.1.0" [[package]] name = "air-test-utils" -version = "0.7.0" +version = "0.7.1" dependencies = [ "air-interpreter-cid", "air-interpreter-data", @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "air-testing-framework" -version = "0.3.0" +version = "0.4.0" dependencies = [ "air-test-utils", "aquavm-air-parser", @@ -186,7 +186,7 @@ dependencies = [ [[package]] name = "air-trace-handler" -version = "0.2.1" +version = "0.2.2" dependencies = [ "air-interpreter-cid", "air-interpreter-data", @@ -298,7 +298,7 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "aquavm-air" -version = "0.41.0" +version = "0.42.0" dependencies = [ "air-execution-info-collector", "air-interpreter-cid", @@ -337,7 +337,7 @@ dependencies = [ [[package]] name = "aquavm-air-cli" -version = "0.3.1" +version = "0.3.2" dependencies = [ "air-beautifier", "air-interpreter-interface", @@ -361,7 +361,7 @@ dependencies = [ [[package]] name = "aquavm-air-parser" -version = "0.7.5" +version = "0.8.0" dependencies = [ "air-lambda-ast", "air-lambda-parser", diff --git a/air-interpreter/CHANGELOG.md b/air-interpreter/CHANGELOG.md index 29b0c7b412..e319722ed2 100644 --- a/air-interpreter/CHANGELOG.md +++ b/air-interpreter/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.42.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.41.0...air-interpreter-v0.42.0) (2023-07-16) + + +### Miscellaneous Chores + +* **air-interpreter:** Synchronize air-interpreter versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.41.0 to 0.42.0 + ## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.40.0...air-interpreter-v0.41.0) (2023-06-23) diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index f6567d28bd..8e4d7e7e56 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter" -version = "0.41.0" +version = "0.42.0" description = "Crate-wrapper for air" authors = ["Fluence Labs"] edition = "2018" @@ -18,7 +18,7 @@ name = "air_interpreter_server" path = "src/marine.rs" [dependencies] -aquavm-air = { version = "0.41.0", path = "../air" } +aquavm-air = { version = "0.42.0", path = "../air" } air-interpreter-interface = { version = "0.14.0", path = "../crates/air-lib/interpreter-interface" } air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" } diff --git a/air/CHANGELOG.md b/air/CHANGELOG.md index c83206f1fa..b4a2f4e843 100644 --- a/air/CHANGELOG.md +++ b/air/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## [0.42.0](https://github.com/fluencelabs/aquavm/compare/air-v0.41.0...air-v0.42.0) (2023-07-16) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622)) +* **execution-engine:** %last_eror%.$.message and $.error_code now return an empty string and 0 correspondingly [fixes VM-313] +* **execution-engine:** unfefined %last_error% now returns an empty … ([#628](https://github.com/fluencelabs/aquavm/issues/628)) +* **aquavm-air:** `ap` join behavior ([#631](https://github.com/fluencelabs/aquavm/issues/631)) +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) + +### Features + +* **aquavm-air:** `ap` join behavior ([#631](https://github.com/fluencelabs/aquavm/issues/631)) ([75f5516](https://github.com/fluencelabs/aquavm/commit/75f5516c5803c256e329a7318632fbab13aea491)), closes [#632](https://github.com/fluencelabs/aquavm/issues/632) +* **execution-engine:** %last_eror%.$.message and $.error_code now return an empty string and 0 correspondingly [fixes VM-313] ([d195152](https://github.com/fluencelabs/aquavm/commit/d19515232043462e809d9cd6964042f69a77f4cf)) +* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622)) ([33a9d9f](https://github.com/fluencelabs/aquavm/commit/33a9d9f32f84c5b31b59120f9da3c1624e1d5c27)) +* **execution-engine:** Stream Map to Scalar conversion using canon instruction [fixes VM-294] ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) +* **execution-engine:** unfefined %last_error% now returns an empty … ([#628](https://github.com/fluencelabs/aquavm/issues/628)) ([d195152](https://github.com/fluencelabs/aquavm/commit/d19515232043462e809d9cd6964042f69a77f4cf)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + * air-execution-info-collector bumped from 0.7.5 to 0.7.6 + * air-interpreter-data bumped from 0.8.0 to 0.8.1 + * air-trace-handler bumped from 0.2.1 to 0.2.2 + ## [0.41.0](https://github.com/fluencelabs/aquavm/compare/air-v0.40.0...air-v0.41.0) (2023-06-23) diff --git a/air/Cargo.toml b/air/Cargo.toml index 31d40cddb8..f03014abe9 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquavm-air" -version = "0.41.0" +version = "0.42.0" description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network" authors = ["Fluence Labs"] edition = "2018" @@ -16,16 +16,16 @@ path = "src/lib.rs" doctest = false [dependencies] -aquavm-air-parser = { version = "0.7.5", path = "../crates/air-lib/air-parser" } -air-execution-info-collector = { version = "0.7.5", path = "../crates/air-lib/execution-info-collector" } +aquavm-air-parser = { version = "0.8.0", path = "../crates/air-lib/air-parser" } +air-execution-info-collector = { version = "0.7.6", path = "../crates/air-lib/execution-info-collector" } air-interpreter-cid = { version = "0.3.0", path = "../crates/air-lib/interpreter-cid" } -air-interpreter-data = { version = "0.8.0", path = "../crates/air-lib/interpreter-data" } +air-interpreter-data = { version = "0.8.1", path = "../crates/air-lib/interpreter-data" } air-interpreter-signatures = { version = "0.1.1", path = "../crates/air-lib/interpreter-signatures" } air-interpreter-interface = { version = "0.14.0", path = "../crates/air-lib/interpreter-interface", default-features = false } air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" } air-lambda-ast = { version = "0.1.0", path = "../crates/air-lib/lambda/ast" } air-lambda-parser = { version = "0.1.0", path = "../crates/air-lib/lambda/parser" } -air-trace-handler = { version = "0.2.1", path = "../crates/air-lib/trace-handler" } +air-trace-handler = { version = "0.2.2", path = "../crates/air-lib/trace-handler" } air-utils = { version = "0.1.1", path = "../crates/air-lib/utils" } polyplets = { version = "0.3.2", path = "../crates/air-lib/polyplets" } fluence-keypair = { version = "0.10.1" } diff --git a/avm/client/CHANGELOG.md b/avm/client/CHANGELOG.md index dd1bab6379..9b6585e4bf 100644 --- a/avm/client/CHANGELOG.md +++ b/avm/client/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.42.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.41.0...avm-client-v0.42.0) (2023-07-16) + + +### Miscellaneous Chores + +* **avm-client:** Synchronize air-interpreter versions + ## [0.41.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.40.0...avm-client-v0.41.0) (2023-06-23) diff --git a/avm/client/package-lock.json b/avm/client/package-lock.json index a78d54758e..88f57016c1 100644 --- a/avm/client/package-lock.json +++ b/avm/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/avm", - "version": "0.41.0", + "version": "0.42.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/avm", - "version": "0.41.0", + "version": "0.42.0", "license": "Apache 2.0", "devDependencies": { "typescript": "4.9.5" diff --git a/avm/client/package.json b/avm/client/package.json index 01e58222b6..97f081fc80 100644 --- a/avm/client/package.json +++ b/avm/client/package.json @@ -1,7 +1,7 @@ { "name": "@fluencelabs/avm", "description": "Aquamarine VM", - "version": "0.41.0", + "version": "0.42.0", "main": "./dist/index.js", "repository": "https://github.com/fluencelabs/air", "author": "Fluence Labs", diff --git a/crates/air-lib/air-parser/CHANGELOG.md b/crates/air-lib/air-parser/CHANGELOG.md index bbbd743341..dfb29af49f 100644 --- a/crates/air-lib/air-parser/CHANGELOG.md +++ b/crates/air-lib/air-parser/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.5...air-parser-v0.8.0) (2023-07-16) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) + +### Features + +* **execution-engine:** Stream Map to Scalar conversion using canon instruction [fixes VM-294] ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) + ## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.4...air-parser-v0.7.5) (2023-06-22) diff --git a/crates/air-lib/air-parser/Cargo.toml b/crates/air-lib/air-parser/Cargo.toml index 46f67b218a..d6f09553bf 100644 --- a/crates/air-lib/air-parser/Cargo.toml +++ b/crates/air-lib/air-parser/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aquavm-air-parser" description = "Parser of the AIR scripts in a form of string to AST" -version = "0.7.5" +version = "0.8.0" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" diff --git a/crates/air-lib/execution-info-collector/CHANGELOG.md b/crates/air-lib/execution-info-collector/CHANGELOG.md index a3cd7dae06..46e9eef38a 100644 --- a/crates/air-lib/execution-info-collector/CHANGELOG.md +++ b/crates/air-lib/execution-info-collector/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + ## [0.7.5](https://github.com/fluencelabs/aquavm/compare/air-execution-info-collector-v0.7.4...air-execution-info-collector-v0.7.5) (2023-06-22) diff --git a/crates/air-lib/execution-info-collector/Cargo.toml b/crates/air-lib/execution-info-collector/Cargo.toml index 06a73ff1f7..c5a4ce05ca 100644 --- a/crates/air-lib/execution-info-collector/Cargo.toml +++ b/crates/air-lib/execution-info-collector/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-execution-info-collector" -version = "0.7.5" +version = "0.7.6" description = "Implementation of AIR execution info collector" authors = ["Fluence Labs"] edition = "2018" @@ -15,4 +15,4 @@ name = "air_execution_info_collector" path = "src/lib.rs" [dependencies] -aquavm-air-parser = { version = "0.7.5", path = "../air-parser" } +aquavm-air-parser = { version = "0.8.0", path = "../air-parser" } diff --git a/crates/air-lib/interpreter-data/CHANGELOG.md b/crates/air-lib/interpreter-data/CHANGELOG.md index 6fb151cddc..004f87e920 100644 --- a/crates/air-lib/interpreter-data/CHANGELOG.md +++ b/crates/air-lib/interpreter-data/CHANGELOG.md @@ -4,6 +4,10 @@ * dependencies * air-parser bumped from 0.7.2 to 0.7.3 +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + ## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.7.0...air-interpreter-data-v0.8.0) (2023-06-22) diff --git a/crates/air-lib/interpreter-data/Cargo.toml b/crates/air-lib/interpreter-data/Cargo.toml index 79f99f657b..5c33718f7d 100644 --- a/crates/air-lib/interpreter-data/Cargo.toml +++ b/crates/air-lib/interpreter-data/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "air-interpreter-data" description = "Data format of the AIR interpreter" -version = "0.8.0" +version = "0.8.1" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" @@ -16,7 +16,7 @@ path = "src/lib.rs" [dependencies] air-utils = { version = "0.1.1", path = "../utils" } -aquavm-air-parser = { version = "0.7.5", path = "../air-parser" } +aquavm-air-parser = { version = "0.8.0", path = "../air-parser" } air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" } air-interpreter-signatures = { version = "0.1.1", path = "../interpreter-signatures" } polyplets = { version = "0.3.2", path = "../polyplets" } diff --git a/crates/air-lib/test-utils/CHANGELOG.md b/crates/air-lib/test-utils/CHANGELOG.md index 505b1ba429..8bdda13fc2 100644 --- a/crates/air-lib/test-utils/CHANGELOG.md +++ b/crates/air-lib/test-utils/CHANGELOG.md @@ -22,6 +22,11 @@ * avm-interface bumped from 0.28.2 to 0.28.3 * avm-server bumped from 0.30.1 to 0.31.0 +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.41.0 to 0.42.0 + * air-interpreter-data bumped from 0.8.0 to 0.8.1 + ## [0.7.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.6.0...air-test-utils-v0.7.0) (2023-06-23) diff --git a/crates/air-lib/test-utils/Cargo.toml b/crates/air-lib/test-utils/Cargo.toml index 264d16eab7..d434414260 100644 --- a/crates/air-lib/test-utils/Cargo.toml +++ b/crates/air-lib/test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-test-utils" -version = "0.7.0" +version = "0.7.1" description = "Test utils for the AIR interpreter" authors = ["Fluence Labs"] edition = "2018" @@ -15,9 +15,9 @@ name = "air_test_utils" path = "src/lib.rs" [dependencies] -aquavm-air = { version = "0.41.0", path = "../../../air" } +aquavm-air = { version = "0.42.0", path = "../../../air" } air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" } -air-interpreter-data = { version = "0.8.0", path = "../interpreter-data" } +air-interpreter-data = { version = "0.8.1", path = "../interpreter-data" } air-interpreter-interface = { version = "0.14.0", path = "../interpreter-interface" } avm-interface = { version = "0.28.4", path = "../../../avm/interface" } avm-server = { version = "0.32.0", path = "../../../avm/server" } diff --git a/crates/air-lib/trace-handler/CHANGELOG.md b/crates/air-lib/trace-handler/CHANGELOG.md index 11eddcfd6a..1123003bb5 100644 --- a/crates/air-lib/trace-handler/CHANGELOG.md +++ b/crates/air-lib/trace-handler/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * air-interpreter-data bumped from 0.8.0 to 0.8.1 + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + ## [0.2.1](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.2.0...air-trace-handler-v0.2.1) (2023-06-22) diff --git a/crates/air-lib/trace-handler/Cargo.toml b/crates/air-lib/trace-handler/Cargo.toml index 83573959fd..675b0b439b 100644 --- a/crates/air-lib/trace-handler/Cargo.toml +++ b/crates/air-lib/trace-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-trace-handler" -version = "0.2.1" +version = "0.2.2" description = "Implementation of AIR trace handler" authors = ["Fluence Labs"] edition = "2018" @@ -14,9 +14,9 @@ path = "src/lib.rs" [dependencies] air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" } -air-interpreter-data = { version = "0.8.0", path = "../interpreter-data" } +air-interpreter-data = { version = "0.8.1", path = "../interpreter-data" } air-log-targets = { version = "0.1.0", path = "../log-targets" } -aquavm-air-parser = { version = "0.7.5", path = "../air-parser" } +aquavm-air-parser = { version = "0.8.0", path = "../air-parser" } polyplets = { version = "0.3.2", path = "../polyplets" } bimap = "0.6.3" diff --git a/crates/beautifier/CHANGELOG.md b/crates/beautifier/CHANGELOG.md index b1dab90e14..752702101a 100644 --- a/crates/beautifier/CHANGELOG.md +++ b/crates/beautifier/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.1.4...air-beautifier-v0.2.0) (2023-07-16) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) + +### Features + +* **execution-engine:** Stream Map to Scalar conversion using canon instruction [fixes VM-294] ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) +* **execution-engine:** stream map to scalar conversion using canon instruction [fixes VM-294] ([#610](https://github.com/fluencelabs/aquavm/issues/610)) ([fcb4c9d](https://github.com/fluencelabs/aquavm/commit/fcb4c9dab43d82e87f1d6f8a83b72f6891d37bef)) + + +### Bug Fixes + +* **air-beautifier:** print fold's last_instruction ([#630](https://github.com/fluencelabs/aquavm/issues/630)) ([adcf708](https://github.com/fluencelabs/aquavm/commit/adcf708c95baba1df319e438152a71607f52e92b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + ## [0.1.4](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.1.3...air-beautifier-v0.1.4) (2023-06-22) diff --git a/crates/beautifier/Cargo.toml b/crates/beautifier/Cargo.toml index 18f5a5511b..7d5b4c983f 100644 --- a/crates/beautifier/Cargo.toml +++ b/crates/beautifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-beautifier" -version = "0.1.4" +version = "0.2.0" description = "AIR human-readable format transformer library" authors = ["Fluence Labs"] edition = "2018" @@ -14,6 +14,6 @@ name = "air_beautifier" path = "src/lib.rs" [dependencies] -aquavm-air-parser = { version = "0.7.5", path = "../air-lib/air-parser" } +aquavm-air-parser = { version = "0.8.0", path = "../air-lib/air-parser" } itertools = "0.10.5" thiserror = "1.0.40" diff --git a/crates/testing-framework/CHANGELOG.md b/crates/testing-framework/CHANGELOG.md index 1e77902f4f..1efeb4288d 100644 --- a/crates/testing-framework/CHANGELOG.md +++ b/crates/testing-framework/CHANGELOG.md @@ -13,6 +13,25 @@ * dev-dependencies * air-test-utils bumped from 0.5.0 to 0.6.0 +## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.3.0...air-testing-framework-v0.4.0) (2023-07-16) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622)) + +### Features + +* **execution-engine:** add error-code invariant check for match/mismatch ([#622](https://github.com/fluencelabs/aquavm/issues/622)) ([33a9d9f](https://github.com/fluencelabs/aquavm/commit/33a9d9f32f84c5b31b59120f9da3c1624e1d5c27)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air-test-utils bumped from 0.7.0 to 0.7.1 + * aquavm-air-parser bumped from 0.7.5 to 0.8.0 + ## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.2.1...air-testing-framework-v0.3.0) (2023-06-23) diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index 4bbba2a136..09981fcc9c 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-testing-framework" -version = "0.3.0" +version = "0.4.0" description = "AquaVM testing framework" authors = ["Fluence Labs"] edition = "2018" @@ -14,8 +14,8 @@ name = "air_test_framework" path = "src/lib.rs" [dependencies] -air-test-utils = { version = "0.7.0", path = "../air-lib/test-utils" } -aquavm-air-parser = { version = "0.7.5", path = "../air-lib/air-parser" } +air-test-utils = { version = "0.7.1", path = "../air-lib/test-utils" } +aquavm-air-parser = { version = "0.8.0", path = "../air-lib/air-parser" } itertools = "0.10.5" strum = { version="0.24.1", features=["derive"] } diff --git a/tools/cli/air/CHANGELOG.md b/tools/cli/air/CHANGELOG.md index ec735e4c66..7556604784 100644 --- a/tools/cli/air/CHANGELOG.md +++ b/tools/cli/air/CHANGELOG.md @@ -31,6 +31,12 @@ * aquavm-air bumped from 0.40.0 to 0.41.0 * air-test-utils bumped from 0.6.0 to 0.7.0 +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.41.0 to 0.42.0 + * air-beautifier bumped from 0.1.4 to 0.2.0 + * air-test-utils bumped from 0.7.0 to 0.7.1 + ## [0.3.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.2.9...aquavm-air-cli-v0.3.0) (2023-06-22) diff --git a/tools/cli/air/Cargo.toml b/tools/cli/air/Cargo.toml index 4633efdd9e..5deef38e23 100644 --- a/tools/cli/air/Cargo.toml +++ b/tools/cli/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquavm-air-cli" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "AIR execution and printing tool" authors = ["Fluence Labs"] @@ -10,12 +10,12 @@ documentation = "https://docs.rs/aquavm-air-cli" keywords = ["fluence", "air", "tracing"] [dependencies] -aquavm-air = { version = "0.41.0", path = "../../../air" } -air-beautifier = { version = "0.1.4", path = "../../../crates/beautifier" } +aquavm-air = { version = "0.42.0", path = "../../../air" } +air-beautifier = { version = "0.2.0", path = "../../../crates/beautifier" } avm-data-store = { version = "0.6.2", path = "../../../crates/data-store" } avm-interface = { version = "0.28.4", path = "../../../avm/interface" } air-interpreter-interface = { version = "0.14.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false } -air-test-utils = { version = "0.7.0",path = "../../../crates/air-lib/test-utils", optional = true } +air-test-utils = { version = "0.7.1",path = "../../../crates/air-lib/test-utils", optional = true } anyhow = "1.0.70" clap = { version = "4.2.7", features = ["derive", "env"] } diff --git a/tools/wasm/air-beautify-wasm/CHANGELOG.md b/tools/wasm/air-beautify-wasm/CHANGELOG.md index b790ed2568..396b7b4fd6 100644 --- a/tools/wasm/air-beautify-wasm/CHANGELOG.md +++ b/tools/wasm/air-beautify-wasm/CHANGELOG.md @@ -4,6 +4,10 @@ * dependencies * air-beautifier bumped from 0.1.3 to 0.1.4 +* The following workspace dependencies were updated + * dependencies + * air-beautifier bumped from 0.1.4 to 0.2.0 + ## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-beautify-wasm-v0.2.1...air-beautify-wasm-v0.3.0) (2023-06-23) diff --git a/tools/wasm/air-beautify-wasm/Cargo.toml b/tools/wasm/air-beautify-wasm/Cargo.toml index 982a0ce377..b93d5ad978 100644 --- a/tools/wasm/air-beautify-wasm/Cargo.toml +++ b/tools/wasm/air-beautify-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-beautify-wasm" -version = "0.3.0" +version = "0.3.1" authors = ["Fluence Labs"] edition = "2021" description = "WASM module for air-beautify" @@ -14,4 +14,4 @@ crate-type = ["cdylib", "rlib"] [dependencies] # 0.2.79: a function can return Result<..., JsError>. wasm-bindgen = { version = "=0.2.83", features = ["serde-serialize"] } -air-beautifier = { version = "0.1.4", path = "../../../crates/beautifier" } +air-beautifier = { version = "0.2.0", path = "../../../crates/beautifier" }