From 372b90496f98965090a00e8757bc7e9dbb4a5588 Mon Sep 17 00:00:00 2001 From: fluencebot <116741523+fluencebot@users.noreply.github.com> Date: Fri, 4 Aug 2023 00:18:11 +0300 Subject: [PATCH] chore: release master (#634) * chore: release master * chore: Bump air-interpreter version to 0.43.0 --------- Co-authored-by: Mike Voronov --- .github/release-please/manifest.json | 32 +++++++++---------- Cargo.lock | 30 ++++++++--------- air-interpreter/CHANGELOG.md | 14 ++++++++ air-interpreter/Cargo.toml | 4 +-- air/CHANGELOG.md | 24 ++++++++++++++ air/Cargo.toml | 12 +++---- avm/client/CHANGELOG.md | 7 ++++ avm/client/package-lock.json | 4 +-- avm/client/package.json | 2 +- avm/interface/CHANGELOG.md | 4 +++ avm/interface/Cargo.toml | 4 +-- avm/server/CHANGELOG.md | 6 ++++ avm/server/Cargo.toml | 8 ++--- crates/air-lib/air-parser/CHANGELOG.md | 8 +++++ 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 | 19 +++++++++++ crates/air-lib/interpreter-data/Cargo.toml | 6 ++-- crates/air-lib/polyplets/CHANGELOG.md | 7 ++++ crates/air-lib/polyplets/Cargo.toml | 2 +- crates/air-lib/test-utils/CHANGELOG.md | 22 +++++++++++++ crates/air-lib/test-utils/Cargo.toml | 10 +++--- crates/air-lib/trace-handler/CHANGELOG.md | 20 ++++++++++++ crates/air-lib/trace-handler/Cargo.toml | 8 ++--- crates/beautifier/CHANGELOG.md | 4 +++ crates/beautifier/Cargo.toml | 4 +-- crates/data-store/CHANGELOG.md | 4 +++ crates/data-store/Cargo.toml | 4 +-- crates/interpreter-wasm/Cargo.lock | 2 +- crates/interpreter-wasm/Cargo.toml | 2 +- crates/testing-framework/CHANGELOG.md | 5 +++ crates/testing-framework/Cargo.toml | 6 ++-- tools/cli/air/CHANGELOG.md | 8 +++++ tools/cli/air/Cargo.toml | 12 +++---- tools/wasm/air-beautify-wasm/CHANGELOG.md | 4 +++ tools/wasm/air-beautify-wasm/Cargo.toml | 4 +-- 37 files changed, 241 insertions(+), 81 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index b55b0ddd..700a3b5a 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,26 +1,26 @@ { - "air": "0.42.0", - "air-interpreter": "0.42.0", - "avm/interface": "0.28.4", - "avm/server": "0.32.0", - "avm/client": "0.42.0", - "crates/air-lib/air-parser": "0.8.0", - "crates/air-lib/execution-info-collector": "0.7.6", + "air": "0.43.0", + "air-interpreter": "0.43.0", + "avm/interface": "0.28.5", + "avm/server": "0.32.1", + "avm/client": "0.43.0", + "crates/air-lib/air-parser": "0.8.1", + "crates/air-lib/execution-info-collector": "0.7.7", "crates/air-lib/interpreter-cid": "0.3.0", - "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/interpreter-data": "0.9.0", + "crates/air-lib/test-utils": "0.8.0", + "crates/air-lib/trace-handler": "0.3.0", "crates/air-lib/utils": "0.1.1", - "crates/beautifier": "0.2.0", - "crates/data-store": "0.6.2", - "crates/testing-framework": "0.4.0", + "crates/beautifier": "0.2.1", + "crates/data-store": "0.6.3", + "crates/testing-framework": "0.4.1", "tools/cli/aquavm-air-cli": "0.2.6", - "tools/wasm/air-beautify-wasm": "0.3.1", - "tools/cli/air": "0.3.2", + "tools/wasm/air-beautify-wasm": "0.3.2", + "tools/cli/air": "0.3.3", "crates/air-lib/lambda/ast": "0.1.0", "crates/air-lib/lambda/parser": "0.1.0", "crates/air-lib/log-targets": "0.1.0", "crates/air-lib/interpreter-interface": "0.14.0", "crates/air-lib/interpreter-signatures": "0.1.1", - "crates/air-lib/polyplets": "0.3.2" + "crates/air-lib/polyplets": "0.3.3" } diff --git a/Cargo.lock b/Cargo.lock index 8fc760be..43fcc736 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "air-beautifier" -version = "0.2.0" +version = "0.2.1" dependencies = [ "aquavm-air-parser", "itertools", @@ -42,7 +42,7 @@ dependencies = [ [[package]] name = "air-beautify-wasm" -version = "0.3.1" +version = "0.3.2" dependencies = [ "air-beautifier", "wasm-bindgen", @@ -50,14 +50,14 @@ dependencies = [ [[package]] name = "air-execution-info-collector" -version = "0.7.6" +version = "0.7.7" dependencies = [ "aquavm-air-parser", ] [[package]] name = "air-interpreter" -version = "0.42.0" +version = "0.43.0" dependencies = [ "air-interpreter-interface", "air-log-targets", @@ -83,7 +83,7 @@ dependencies = [ [[package]] name = "air-interpreter-data" -version = "0.8.1" +version = "0.9.0" dependencies = [ "air-interpreter-cid", "air-interpreter-signatures", @@ -148,7 +148,7 @@ version = "0.1.0" [[package]] name = "air-test-utils" -version = "0.7.1" +version = "0.8.0" dependencies = [ "air-interpreter-cid", "air-interpreter-data", @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "air-testing-framework" -version = "0.4.0" +version = "0.4.1" dependencies = [ "air-test-utils", "aquavm-air-parser", @@ -186,7 +186,7 @@ dependencies = [ [[package]] name = "air-trace-handler" -version = "0.2.2" +version = "0.3.0" dependencies = [ "air-interpreter-cid", "air-interpreter-data", @@ -298,7 +298,7 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "aquavm-air" -version = "0.42.0" +version = "0.43.0" dependencies = [ "air-execution-info-collector", "air-interpreter-cid", @@ -338,7 +338,7 @@ dependencies = [ [[package]] name = "aquavm-air-cli" -version = "0.3.2" +version = "0.3.3" dependencies = [ "air-beautifier", "air-interpreter-interface", @@ -362,7 +362,7 @@ dependencies = [ [[package]] name = "aquavm-air-parser" -version = "0.8.0" +version = "0.8.1" dependencies = [ "air-lambda-ast", "air-lambda-parser", @@ -457,7 +457,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "avm-data-store" -version = "0.6.2" +version = "0.6.3" dependencies = [ "avm-interface", "serde", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "avm-interface" -version = "0.28.4" +version = "0.28.5" dependencies = [ "air-interpreter-interface", "air-utils", @@ -482,7 +482,7 @@ dependencies = [ [[package]] name = "avm-server" -version = "0.32.0" +version = "0.32.1" dependencies = [ "air-interpreter-interface", "air-utils", @@ -2755,7 +2755,7 @@ dependencies = [ [[package]] name = "polyplets" -version = "0.3.2" +version = "0.3.3" dependencies = [ "marine-macro 0.8.0", "marine-rs-sdk-main 0.7.1", diff --git a/air-interpreter/CHANGELOG.md b/air-interpreter/CHANGELOG.md index e319722e..078136c4 100644 --- a/air-interpreter/CHANGELOG.md +++ b/air-interpreter/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.43.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.42.0...air-interpreter-v0.43.0) (2023-08-03) + + +### Miscellaneous Chores + +* **air-interpreter:** Synchronize air-interpreter versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.42.0 to 0.43.0 + ## [0.42.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.41.0...air-interpreter-v0.42.0) (2023-07-16) diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index 8e4d7e7e..0f3dbb93 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter" -version = "0.42.0" +version = "0.43.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.42.0", path = "../air" } +aquavm-air = { version = "0.43.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 b4a2f4e8..e97877c2 100644 --- a/air/CHANGELOG.md +++ b/air/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.43.0](https://github.com/fluencelabs/aquavm/compare/air-v0.42.0...air-v0.43.0) (2023-08-03) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** update minimal interpreter version ([#649](https://github.com/fluencelabs/aquavm/issues/649)) +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) + +### Features + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) ([eca52b7](https://github.com/fluencelabs/aquavm/commit/eca52b7191ef1bc5c4573c62412dc735d830c023)) +* **execution-engine:** update minimal interpreter version ([#649](https://github.com/fluencelabs/aquavm/issues/649)) ([0655daa](https://github.com/fluencelabs/aquavm/commit/0655daa89d1105c6e786347f405d46d8e4d213ce)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + * air-execution-info-collector bumped from 0.7.6 to 0.7.7 + * air-interpreter-data bumped from 0.8.1 to 0.9.0 + * air-trace-handler bumped from 0.2.2 to 0.3.0 + * polyplets bumped from 0.3.2 to 0.3.3 + ## [0.42.0](https://github.com/fluencelabs/aquavm/compare/air-v0.41.0...air-v0.42.0) (2023-07-16) diff --git a/air/Cargo.toml b/air/Cargo.toml index cc8afdfd..83723098 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquavm-air" -version = "0.42.0" +version = "0.43.0" description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network" authors = ["Fluence Labs"] edition = "2018" @@ -16,18 +16,18 @@ path = "src/lib.rs" doctest = false [dependencies] -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" } +aquavm-air-parser = { version = "0.8.1", path = "../crates/air-lib/air-parser" } +air-execution-info-collector = { version = "0.7.7", 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.1", path = "../crates/air-lib/interpreter-data" } +air-interpreter-data = { version = "0.9.0", 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.2", path = "../crates/air-lib/trace-handler" } +air-trace-handler = { version = "0.3.0", 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" } +polyplets = { version = "0.3.3", path = "../crates/air-lib/polyplets" } fluence-keypair = { version = "0.10.1" } serde = { version = "1.0.164", features = [ "derive", "rc" ] } diff --git a/avm/client/CHANGELOG.md b/avm/client/CHANGELOG.md index 9b6585e4..8fdb57ef 100644 --- a/avm/client/CHANGELOG.md +++ b/avm/client/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.43.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.42.0...avm-client-v0.43.0) (2023-08-03) + + +### Miscellaneous Chores + +* **avm-client:** Synchronize air-interpreter versions + ## [0.42.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.41.0...avm-client-v0.42.0) (2023-07-16) diff --git a/avm/client/package-lock.json b/avm/client/package-lock.json index 88f57016..f7f80418 100644 --- a/avm/client/package-lock.json +++ b/avm/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/avm", - "version": "0.42.0", + "version": "0.43.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/avm", - "version": "0.42.0", + "version": "0.43.0", "license": "Apache 2.0", "devDependencies": { "typescript": "4.9.5" diff --git a/avm/client/package.json b/avm/client/package.json index 97f081fc..67145a2e 100644 --- a/avm/client/package.json +++ b/avm/client/package.json @@ -1,7 +1,7 @@ { "name": "@fluencelabs/avm", "description": "Aquamarine VM", - "version": "0.42.0", + "version": "0.43.0", "main": "./dist/index.js", "repository": "https://github.com/fluencelabs/air", "author": "Fluence Labs", diff --git a/avm/interface/CHANGELOG.md b/avm/interface/CHANGELOG.md index 375ea886..b72535d9 100644 --- a/avm/interface/CHANGELOG.md +++ b/avm/interface/CHANGELOG.md @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * air-interpreter-interface bumped from 0.13.0 to 0.14.0 * air-utils bumped from 0.1.0 to 0.1.1 +* The following workspace dependencies were updated + * dependencies + * polyplets bumped from 0.3.2 to 0.3.3 + ## [0.28.2](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.1...avm-interface-v0.28.2) (2023-02-21) diff --git a/avm/interface/Cargo.toml b/avm/interface/Cargo.toml index e6a6ca48..8a8b9f7b 100644 --- a/avm/interface/Cargo.toml +++ b/avm/interface/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "avm-interface" description = "Fluence AIR VM interfacing" -version = "0.28.4" +version = "0.28.5" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" @@ -17,7 +17,7 @@ path = "src/lib.rs" [dependencies] air-interpreter-interface = { version = "0.14.0", path = "../../crates/air-lib/interpreter-interface", default-features = false } air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" } -polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" } +polyplets = { version = "0.3.3", path = "../../crates/air-lib/polyplets" } thiserror = "1.0.40" maplit = "1.0.2" diff --git a/avm/server/CHANGELOG.md b/avm/server/CHANGELOG.md index aca19dee..0836873a 100644 --- a/avm/server/CHANGELOG.md +++ b/avm/server/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +* The following workspace dependencies were updated + * dependencies + * avm-data-store bumped from 0.6.2 to 0.6.3 + * polyplets bumped from 0.3.2 to 0.3.3 + * avm-interface bumped from 0.28.4 to 0.28.5 + ## [0.32.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.31.0...avm-server-v0.32.0) (2023-06-22) diff --git a/avm/server/Cargo.toml b/avm/server/Cargo.toml index af64ad0f..743f1a24 100644 --- a/avm/server/Cargo.toml +++ b/avm/server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "avm-server" description = "Fluence AIR VM" -version = "0.32.0" +version = "0.32.1" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" @@ -17,10 +17,10 @@ path = "src/lib.rs" [dependencies] air-interpreter-interface = { version = "0.14.0", path = "../../crates/air-lib/interpreter-interface" } air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" } -avm-data-store = { version = "0.6.2", path = "../../crates/data-store" } +avm-data-store = { version = "0.6.3", path = "../../crates/data-store" } marine-runtime = "0.26.3" -polyplets = { version = "0.3.2", path = "../../crates/air-lib/polyplets" } -avm-interface = { version = "0.28.4", path = "../../avm/interface" } +polyplets = { version = "0.3.3", path = "../../crates/air-lib/polyplets" } +avm-interface = { version = "0.28.5", path = "../../avm/interface" } eyre = "0.6.8" thiserror = "1.0.40" diff --git a/crates/air-lib/air-parser/CHANGELOG.md b/crates/air-lib/air-parser/CHANGELOG.md index dfb29af4..e8014339 100644 --- a/crates/air-lib/air-parser/CHANGELOG.md +++ b/crates/air-lib/air-parser/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.8.1](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.8.0...air-parser-v0.8.1) (2023-08-03) + + +### Features + +* **air-parser:** canon stream syntax ([#618](https://github.com/fluencelabs/aquavm/issues/618)) ([8871465](https://github.com/fluencelabs/aquavm/commit/88714653247618e72f10391524c430a5c20d3b85)) +* **air-parser:** improved canon stream syntax support [fixes VM-293] ([8871465](https://github.com/fluencelabs/aquavm/commit/88714653247618e72f10391524c430a5c20d3b85)) + ## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.7.5...air-parser-v0.8.0) (2023-07-16) diff --git a/crates/air-lib/air-parser/Cargo.toml b/crates/air-lib/air-parser/Cargo.toml index d6f09553..fe833f1d 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.8.0" +version = "0.8.1" 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 46e9eef3..d63f544e 100644 --- a/crates/air-lib/execution-info-collector/CHANGELOG.md +++ b/crates/air-lib/execution-info-collector/CHANGELOG.md @@ -4,6 +4,10 @@ * dependencies * aquavm-air-parser bumped from 0.7.5 to 0.8.0 +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + ## [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 c5a4ce05..c616b002 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.6" +version = "0.7.7" 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.8.0", path = "../air-parser" } +aquavm-air-parser = { version = "0.8.1", path = "../air-parser" } diff --git a/crates/air-lib/interpreter-data/CHANGELOG.md b/crates/air-lib/interpreter-data/CHANGELOG.md index 004f87e9..14c5a664 100644 --- a/crates/air-lib/interpreter-data/CHANGELOG.md +++ b/crates/air-lib/interpreter-data/CHANGELOG.md @@ -8,6 +8,25 @@ * dependencies * aquavm-air-parser bumped from 0.7.5 to 0.8.0 +## [0.9.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.8.1...air-interpreter-data-v0.9.0) (2023-08-03) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) + +### Features + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) ([eca52b7](https://github.com/fluencelabs/aquavm/commit/eca52b7191ef1bc5c4573c62412dc735d830c023)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + * polyplets bumped from 0.3.2 to 0.3.3 + ## [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 5c33718f..a33e1955 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.1" +version = "0.9.0" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" @@ -16,10 +16,10 @@ path = "src/lib.rs" [dependencies] air-utils = { version = "0.1.1", path = "../utils" } -aquavm-air-parser = { version = "0.8.0", path = "../air-parser" } +aquavm-air-parser = { version = "0.8.1", 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" } +polyplets = { version = "0.3.3", path = "../polyplets" } serde = {version = "1.0.164", features = ["derive", "rc"]} serde_json = "1.0.95" diff --git a/crates/air-lib/polyplets/CHANGELOG.md b/crates/air-lib/polyplets/CHANGELOG.md index 83c735d2..7580950b 100644 --- a/crates/air-lib/polyplets/CHANGELOG.md +++ b/crates/air-lib/polyplets/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.3](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.3.2...polyplets-v0.3.3) (2023-08-03) + + +### Bug Fixes + +* **deps:** update rust crate marine-macro to 0.8.0 ([#639](https://github.com/fluencelabs/aquavm/issues/639)) ([786b111](https://github.com/fluencelabs/aquavm/commit/786b11164272f15c5bf1ad89f2a46b170565902d)) + ## [Unreleased] ## [0.3.2] - 2022-09-13 diff --git a/crates/air-lib/polyplets/Cargo.toml b/crates/air-lib/polyplets/Cargo.toml index 6ab572a6..9405ddfe 100644 --- a/crates/air-lib/polyplets/Cargo.toml +++ b/crates/air-lib/polyplets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "polyplets" -version = "0.3.2" +version = "0.3.3" description = "Security primitives to verify origin of service calls in Fluence network" authors = ["Fluence Labs"] edition = "2018" diff --git a/crates/air-lib/test-utils/CHANGELOG.md b/crates/air-lib/test-utils/CHANGELOG.md index 8bdda13f..e6386a11 100644 --- a/crates/air-lib/test-utils/CHANGELOG.md +++ b/crates/air-lib/test-utils/CHANGELOG.md @@ -27,6 +27,28 @@ * aquavm-air bumped from 0.41.0 to 0.42.0 * air-interpreter-data bumped from 0.8.0 to 0.8.1 +## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.7.1...air-test-utils-v0.8.0) (2023-08-03) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) + +### Features + +* **air-test-utils:** `print_trace` prints values ([#633](https://github.com/fluencelabs/aquavm/issues/633)) ([c530c93](https://github.com/fluencelabs/aquavm/commit/c530c93fcbffe187797d48d65bf8478dcafa8de5)) +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) ([eca52b7](https://github.com/fluencelabs/aquavm/commit/eca52b7191ef1bc5c4573c62412dc735d830c023)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.42.0 to 0.43.0 + * air-interpreter-data bumped from 0.8.1 to 0.9.0 + * avm-interface bumped from 0.28.4 to 0.28.5 + * avm-server bumped from 0.32.0 to 0.32.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 d4344142..382e1ce2 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.1" +version = "0.8.0" description = "Test utils for the AIR interpreter" authors = ["Fluence Labs"] edition = "2018" @@ -15,12 +15,12 @@ name = "air_test_utils" path = "src/lib.rs" [dependencies] -aquavm-air = { version = "0.42.0", path = "../../../air" } +aquavm-air = { version = "0.43.0", path = "../../../air" } air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" } -air-interpreter-data = { version = "0.8.1", path = "../interpreter-data" } +air-interpreter-data = { version = "0.9.0", 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" } +avm-interface = { version = "0.28.5", path = "../../../avm/interface" } +avm-server = { version = "0.32.1", path = "../../../avm/server" } marine-rs-sdk = "0.7.1" object-pool = "0.5.4" diff --git a/crates/air-lib/trace-handler/CHANGELOG.md b/crates/air-lib/trace-handler/CHANGELOG.md index 1123003b..76a230a2 100644 --- a/crates/air-lib/trace-handler/CHANGELOG.md +++ b/crates/air-lib/trace-handler/CHANGELOG.md @@ -5,6 +5,26 @@ * 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.3.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.2.2...air-trace-handler-v0.3.0) (2023-08-03) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) + +### Features + +* **execution-engine:** refactor streams [fixes VM-255] ([#621](https://github.com/fluencelabs/aquavm/issues/621)) ([eca52b7](https://github.com/fluencelabs/aquavm/commit/eca52b7191ef1bc5c4573c62412dc735d830c023)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air-interpreter-data bumped from 0.8.1 to 0.9.0 + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + * polyplets bumped from 0.3.2 to 0.3.3 + ## [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 675b0b43..a53465eb 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.2" +version = "0.3.0" description = "Implementation of AIR trace handler" authors = ["Fluence Labs"] edition = "2018" @@ -14,10 +14,10 @@ path = "src/lib.rs" [dependencies] air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" } -air-interpreter-data = { version = "0.8.1", path = "../interpreter-data" } +air-interpreter-data = { version = "0.9.0", path = "../interpreter-data" } air-log-targets = { version = "0.1.0", path = "../log-targets" } -aquavm-air-parser = { version = "0.8.0", path = "../air-parser" } -polyplets = { version = "0.3.2", path = "../polyplets" } +aquavm-air-parser = { version = "0.8.1", path = "../air-parser" } +polyplets = { version = "0.3.3", path = "../polyplets" } bimap = "0.6.3" serde_json = "1.0.95" diff --git a/crates/beautifier/CHANGELOG.md b/crates/beautifier/CHANGELOG.md index 75270210..f04040d2 100644 --- a/crates/beautifier/CHANGELOG.md +++ b/crates/beautifier/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + ## [0.2.0](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.1.4...air-beautifier-v0.2.0) (2023-07-16) diff --git a/crates/beautifier/Cargo.toml b/crates/beautifier/Cargo.toml index 7d5b4c98..74d38fc6 100644 --- a/crates/beautifier/Cargo.toml +++ b/crates/beautifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-beautifier" -version = "0.2.0" +version = "0.2.1" 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.8.0", path = "../air-lib/air-parser" } +aquavm-air-parser = { version = "0.8.1", path = "../air-lib/air-parser" } itertools = "0.10.5" thiserror = "1.0.40" diff --git a/crates/data-store/CHANGELOG.md b/crates/data-store/CHANGELOG.md index 0e24ffdb..123bb298 100644 --- a/crates/data-store/CHANGELOG.md +++ b/crates/data-store/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * dependencies * avm-interface bumped from 0.28.3 to 0.28.4 +* The following workspace dependencies were updated + * dependencies + * avm-interface bumped from 0.28.4 to 0.28.5 + ## [0.6.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.5.0...avm-data-store-v0.6.0) (2023-02-27) diff --git a/crates/data-store/Cargo.toml b/crates/data-store/Cargo.toml index 7be2d47f..9a590274 100644 --- a/crates/data-store/Cargo.toml +++ b/crates/data-store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "avm-data-store" -version = "0.6.2" +version = "0.6.3" description = "Definition of the AVM DataStore trait" authors = ["Fluence Labs"] edition = "2018" @@ -15,7 +15,7 @@ name = "avm_data_store" path = "src/lib.rs" [dependencies] -avm-interface = { version = "0.28.4", path = "../../avm/interface"} +avm-interface = { version = "0.28.5", path = "../../avm/interface"} serde = { version = "1.0.164", features = ["derive"] } serde_bytes = "0.11.9" diff --git a/crates/interpreter-wasm/Cargo.lock b/crates/interpreter-wasm/Cargo.lock index 398148c0..f9dd4082 100644 --- a/crates/interpreter-wasm/Cargo.lock +++ b/crates/interpreter-wasm/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "air-interpreter-wasm" -version = "0.42.0" +version = "0.43.0" dependencies = [ "built", ] diff --git a/crates/interpreter-wasm/Cargo.toml b/crates/interpreter-wasm/Cargo.toml index a1d367e5..e3f7e4b7 100644 --- a/crates/interpreter-wasm/Cargo.toml +++ b/crates/interpreter-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter-wasm" -version = "0.42.0" +version = "0.43.0" description = "Distribution of AIR interpreter as .wasm" authors = ["Fluence Labs"] license = "Apache-2.0" diff --git a/crates/testing-framework/CHANGELOG.md b/crates/testing-framework/CHANGELOG.md index 1efeb428..9da5e1ab 100644 --- a/crates/testing-framework/CHANGELOG.md +++ b/crates/testing-framework/CHANGELOG.md @@ -13,6 +13,11 @@ * dev-dependencies * air-test-utils bumped from 0.5.0 to 0.6.0 +* The following workspace dependencies were updated + * dependencies + * air-test-utils bumped from 0.7.1 to 0.8.0 + * aquavm-air-parser bumped from 0.8.0 to 0.8.1 + ## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.3.0...air-testing-framework-v0.4.0) (2023-07-16) diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index 09981fcc..2d03b777 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-testing-framework" -version = "0.4.0" +version = "0.4.1" 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.1", path = "../air-lib/test-utils" } -aquavm-air-parser = { version = "0.8.0", path = "../air-lib/air-parser" } +air-test-utils = { version = "0.8.0", path = "../air-lib/test-utils" } +aquavm-air-parser = { version = "0.8.1", 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 75566047..9645df86 100644 --- a/tools/cli/air/CHANGELOG.md +++ b/tools/cli/air/CHANGELOG.md @@ -37,6 +37,14 @@ * air-beautifier bumped from 0.1.4 to 0.2.0 * air-test-utils bumped from 0.7.0 to 0.7.1 +* The following workspace dependencies were updated + * dependencies + * aquavm-air bumped from 0.42.0 to 0.43.0 + * air-beautifier bumped from 0.2.0 to 0.2.1 + * avm-data-store bumped from 0.6.2 to 0.6.3 + * avm-interface bumped from 0.28.4 to 0.28.5 + * air-test-utils bumped from 0.7.1 to 0.8.0 + ## [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 7014fa95..321ca959 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.2" +version = "0.3.3" 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.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" } +aquavm-air = { version = "0.43.0", path = "../../../air" } +air-beautifier = { version = "0.2.1", path = "../../../crates/beautifier" } +avm-data-store = { version = "0.6.3", path = "../../../crates/data-store" } +avm-interface = { version = "0.28.5", 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.1",path = "../../../crates/air-lib/test-utils", optional = true } +air-test-utils = { version = "0.8.0",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 396b7b4f..b3e85709 100644 --- a/tools/wasm/air-beautify-wasm/CHANGELOG.md +++ b/tools/wasm/air-beautify-wasm/CHANGELOG.md @@ -8,6 +8,10 @@ * dependencies * air-beautifier bumped from 0.1.4 to 0.2.0 +* The following workspace dependencies were updated + * dependencies + * air-beautifier bumped from 0.2.0 to 0.2.1 + ## [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 b93d5ad9..0433d02a 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.1" +version = "0.3.2" 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.2.0", path = "../../../crates/beautifier" } +air-beautifier = { version = "0.2.1", path = "../../../crates/beautifier" }