diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index a8fd6ebe..39ce1fcc 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,20 +1,20 @@ { - "air": "0.36.0", - "air-interpreter": "0.35.5", + "air": "0.37.0", + "air-interpreter": "0.37.0", "avm/interface": "0.28.2", - "avm/server": "0.30.0", - "avm/client": "0.35.4", + "avm/server": "0.30.1", + "avm/client": "0.37.0", "crates/air-lib/air-parser": "0.7.3", "crates/air-lib/execution-info-collector": "0.7.2", "crates/air-lib/interpreter-cid": "0.2.0", "crates/air-lib/interpreter-data": "0.6.2", - "crates/air-lib/test-utils": "0.4.4", + "crates/air-lib/test-utils": "0.4.5", "crates/air-lib/trace-handler": "0.1.1", "crates/air-lib/utils": "0.1.0", "crates/beautifier": "0.1.1", "crates/data-store": "0.6.0", - "crates/testing-framework": "0.1.4", + "crates/testing-framework": "0.1.5", "tools/cli/air-beautify": "0.1.1", - "tools/cli/air-trace": "0.2.5", + "tools/cli/air-trace": "0.2.6", "tools/wasm/air-beautify-wasm": "0.1.0" } diff --git a/Cargo.lock b/Cargo.lock index 28470ab8..491c1fe8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "air" -version = "0.36.0" +version = "0.37.0" dependencies = [ "air-execution-info-collector", "air-interpreter-cid", @@ -85,7 +85,7 @@ dependencies = [ [[package]] name = "air-interpreter" -version = "0.35.5" +version = "0.37.0" dependencies = [ "air", "air-interpreter-interface", @@ -190,7 +190,7 @@ dependencies = [ [[package]] name = "air-test-utils" -version = "0.4.4" +version = "0.4.5" dependencies = [ "air", "air-interpreter-cid", @@ -210,7 +210,7 @@ dependencies = [ [[package]] name = "air-testing-framework" -version = "0.1.4" +version = "0.1.5" dependencies = [ "air-parser", "air-test-utils", @@ -225,7 +225,7 @@ dependencies = [ [[package]] name = "air-trace" -version = "0.2.5" +version = "0.2.6" dependencies = [ "air", "air-interpreter-interface", @@ -356,7 +356,7 @@ dependencies = [ [[package]] name = "avm-server" -version = "0.30.0" +version = "0.30.1" dependencies = [ "air-interpreter-interface", "air-utils", diff --git a/air-interpreter/CHANGELOG.md b/air-interpreter/CHANGELOG.md new file mode 100644 index 00000000..e14584a1 --- /dev/null +++ b/air-interpreter/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## [0.37.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.35.5...air-interpreter-v0.37.0) (2023-03-13) + + +### Miscellaneous Chores + +* **air-interpreter:** Synchronize air-interpreter versions + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air bumped from 0.36.0 to 0.37.0 diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index 3e01323f..c607c783 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter" -version = "0.35.5" +version = "0.37.0" description = "Crate-wrapper for air" authors = ["Fluence Labs"] edition = "2018" @@ -18,7 +18,7 @@ name = "air_interpreter_server" path = "src/marine.rs" [dependencies] -air = { version = "0.36.0", path = "../air" } +air = { version = "0.37.0", path = "../air" } air-interpreter-interface = { version = "0.12.1", 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 ca484eef..a9032be3 100644 --- a/air/CHANGELOG.md +++ b/air/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.37.0](https://github.com/fluencelabs/aquavm/compare/air-v0.36.0...air-v0.37.0) (2023-03-13) + + +### ⚠ BREAKING CHANGES + +* **execution-engine:** make StreamDontHaveSuchGeneration uncatchable… ([#492](https://github.com/fluencelabs/aquavm/issues/492)) + +### Features + +* **execution-engine:** make StreamDontHaveSuchGeneration uncatchable… ([#492](https://github.com/fluencelabs/aquavm/issues/492)) ([95b2d15](https://github.com/fluencelabs/aquavm/commit/95b2d154ff84caf5efe7a3960922d1d6c39a9ed2)) + + +### Bug Fixes + +* **air:** demote some AquaVM logging statements ([#505](https://github.com/fluencelabs/aquavm/issues/505)) ([271b74d](https://github.com/fluencelabs/aquavm/commit/271b74d8f2f1111dfb8393aa81c8f9c9e78ff4d7)) +* **execution-engine:** negative tests for prepare_step and farewell_step [fixes VM-251] ([5813c80](https://github.com/fluencelabs/aquavm/commit/5813c80ca2561cb8121792c4123a3b7171b8e2c7)) +* **execution-engine:** rename CallResultsNotEmpty into UnprocessedCallResult ([7f6a698](https://github.com/fluencelabs/aquavm/commit/7f6a69851f93f0a7abcc852913b6e7116fd35167)) +* negative tests for prepare_step and farewell_step [fixes VM-251] ([#489](https://github.com/fluencelabs/aquavm/issues/489)) ([5813c80](https://github.com/fluencelabs/aquavm/commit/5813c80ca2561cb8121792c4123a3b7171b8e2c7)) +* Rename CallResultsNotEmpty into UnprocessedCallResult ([#490](https://github.com/fluencelabs/aquavm/issues/490)) ([7f6a698](https://github.com/fluencelabs/aquavm/commit/7f6a69851f93f0a7abcc852913b6e7116fd35167)) + ## [0.36.0](https://github.com/fluencelabs/aquavm/compare/air-v0.35.4...air-v0.36.0) (2023-02-27) diff --git a/air/Cargo.toml b/air/Cargo.toml index 29c03c64..212df61d 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air" -version = "0.36.0" +version = "0.37.0" description = "Interpreter of AIR scripts intended to coordinate request flow in the Fluence network" authors = ["Fluence Labs"] edition = "2018" diff --git a/avm/client/CHANGELOG.md b/avm/client/CHANGELOG.md new file mode 100644 index 00000000..38907eb4 --- /dev/null +++ b/avm/client/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.37.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.35.4...avm-client-v0.37.0) (2023-03-13) + + +### Miscellaneous Chores + +* **avm-client:** Synchronize air-interpreter versions diff --git a/avm/client/package-lock.json b/avm/client/package-lock.json index 2070700d..4e349702 100644 --- a/avm/client/package-lock.json +++ b/avm/client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fluencelabs/avm", - "version": "0.35.4", + "version": "0.37.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fluencelabs/avm", - "version": "0.35.4", + "version": "0.37.0", "license": "Apache 2.0", "devDependencies": { "typescript": "4.9.5" diff --git a/avm/client/package.json b/avm/client/package.json index 6125ced6..7dc24e2c 100644 --- a/avm/client/package.json +++ b/avm/client/package.json @@ -1,7 +1,7 @@ { "name": "@fluencelabs/avm", "description": "Aquamarine VM", - "version": "0.35.4", + "version": "0.37.0", "main": "./dist/index.js", "repository": "https://github.com/fluencelabs/air", "author": "Fluence Labs", diff --git a/avm/server/CHANGELOG.md b/avm/server/CHANGELOG.md index 3309ffe7..a5c944e0 100644 --- a/avm/server/CHANGELOG.md +++ b/avm/server/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.30.1](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.30.0...avm-server-v0.30.1) (2023-03-13) + + +### Bug Fixes + +* **deps:** update rust crate marine-runtime to 0.25.0 ([#498](https://github.com/fluencelabs/aquavm/issues/498)) ([8c25dbe](https://github.com/fluencelabs/aquavm/commit/8c25dbe8f681f46cbfc5e914614b4f103f0f556a)) + ## [0.30.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.29.0...avm-server-v0.30.0) (2023-02-27) diff --git a/avm/server/Cargo.toml b/avm/server/Cargo.toml index 7be6fd19..48c3bfb4 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.30.0" +version = "0.30.1" authors = ["Fluence Labs"] edition = "2018" license = "Apache-2.0" diff --git a/crates/air-lib/test-utils/CHANGELOG.md b/crates/air-lib/test-utils/CHANGELOG.md index 72ff4624..21801ef8 100644 --- a/crates/air-lib/test-utils/CHANGELOG.md +++ b/crates/air-lib/test-utils/CHANGELOG.md @@ -10,6 +10,10 @@ * dependencies * avm-server bumped from 0.29.0 to 0.30.0 +* The following workspace dependencies were updated + * dependencies + * avm-server bumped from 0.30.0 to 0.30.1 + ## [0.4.2](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.4.1...air-test-utils-v0.4.2) (2023-02-08) diff --git a/crates/air-lib/test-utils/Cargo.toml b/crates/air-lib/test-utils/Cargo.toml index bd2844e3..a2dca01a 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.4.4" +version = "0.4.5" description = "Test utils for the AIR interpreter" authors = ["Fluence Labs"] edition = "2018" @@ -19,7 +19,7 @@ air-interpreter-cid = { version = "0.2.0", path = "../interpreter-cid" } air-interpreter-data = { version = "0.6.3", path = "../interpreter-data" } air-interpreter-interface = { version = "0.12.1", path = "../interpreter-interface" } avm-interface = { version = "0.28.2", path = "../../../avm/interface" } -avm-server = { version = "0.30.0", path = "../../../avm/server" } +avm-server = { version = "0.30.1", path = "../../../avm/server" } marine-rs-sdk = "0.7.1" fstrings = "0.2.3" diff --git a/crates/interpreter-wasm/Cargo.lock b/crates/interpreter-wasm/Cargo.lock index 70fb047e..d5434e65 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.35.5" +version = "0.37.0" dependencies = [ "built", ] diff --git a/crates/interpreter-wasm/Cargo.toml b/crates/interpreter-wasm/Cargo.toml index 192a05d2..d3666f74 100644 --- a/crates/interpreter-wasm/Cargo.toml +++ b/crates/interpreter-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-interpreter-wasm" -version = "0.35.5" +version = "0.37.0" description = "Distribution of AIR interpreter as .wasm" authors = ["Fluence Labs"] license = "Apache-2.0" diff --git a/crates/testing-framework/Cargo.toml b/crates/testing-framework/Cargo.toml index 17d7eb8e..35968646 100644 --- a/crates/testing-framework/Cargo.toml +++ b/crates/testing-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-testing-framework" -version = "0.1.4" +version = "0.1.5" description = "AquaVM testing framework" authors = ["Fluence Labs"] edition = "2018" @@ -14,7 +14,7 @@ name = "air_test_framework" path = "src/lib.rs" [dependencies] -air-test-utils = { version = "0.4.4", path = "../air-lib/test-utils" } +air-test-utils = { version = "0.4.5", path = "../air-lib/test-utils" } air-parser = { version = "0.7.3", path = "../air-lib/air-parser" } itertools = "0.10.5" @@ -28,4 +28,4 @@ maplit = "1.0.2" pretty_assertions = "1.3.0" # We do not want to depend on wasm binary path -air-test-utils = { version = "0.4.4", path = "../air-lib/test-utils", features = ["test_with_native_code"] } +air-test-utils = { version = "0.4.5", path = "../air-lib/test-utils", features = ["test_with_native_code"] } diff --git a/tools/cli/air-trace/CHANGELOG.md b/tools/cli/air-trace/CHANGELOG.md index 9d5b85b7..55b01f94 100644 --- a/tools/cli/air-trace/CHANGELOG.md +++ b/tools/cli/air-trace/CHANGELOG.md @@ -7,6 +7,21 @@ * avm-data-store bumped from 0.4.1 to 0.5.0 * avm-interface bumped from 0.28.1 to 0.28.2 +## [0.2.6](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.5...air-trace-v0.2.6) (2023-03-13) + + +### Bug Fixes + +* **air-trace:** set correct air verison ([#486](https://github.com/fluencelabs/aquavm/issues/486)) ([c10f89b](https://github.com/fluencelabs/aquavm/commit/c10f89b5e5856ed155da1dcb4784e73d63cc1bea)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * air bumped from 0.36.0 to 0.37.0 + * air-test-utils bumped from 0.4.4 to 0.4.5 + ## [0.2.5](https://github.com/fluencelabs/aquavm/compare/air-trace-v0.2.4...air-trace-v0.2.5) (2023-02-27) diff --git a/tools/cli/air-trace/Cargo.toml b/tools/cli/air-trace/Cargo.toml index cb2dbcfc..beea559a 100644 --- a/tools/cli/air-trace/Cargo.toml +++ b/tools/cli/air-trace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "air-trace" -version = "0.2.5" +version = "0.2.6" edition = "2021" description = "AIR performance tracing tool" authors = ["Fluence Labs"] @@ -9,8 +9,8 @@ publish = false keywords = ["fluence", "air", "tracing"] [dependencies] -air = { version = "0.36.0", path = "../../../air" } -air-test-utils = { version = "0.4.4",path = "../../../crates/air-lib/test-utils", optional = true } +air = { version = "0.37.0", path = "../../../air" } +air-test-utils = { version = "0.4.5",path = "../../../crates/air-lib/test-utils", optional = true } air-interpreter-interface = { version = "0.12.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false } avm-data-store = { version = "0.6.0", path = "../../../crates/data-store" } avm-interface = { version = "0.28.2", path = "../../../avm/interface" }