chore: release master (#698)

* chore: release master

* chore: Bump air-interpreter and air-near-contract version to 0.48.0
This commit is contained in:
fluencebot 2023-09-22 00:46:21 +03:00 committed by GitHub
parent 3a9beed3c5
commit 8f23d90ece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
41 changed files with 288 additions and 111 deletions

View File

@ -1,26 +1,26 @@
{
"air": "0.47.0",
"air-interpreter": "0.47.0",
"avm/interface": "0.29.0",
"avm/server": "0.33.0",
"avm/client": "0.47.0",
"crates/air-lib/air-parser": "0.9.0",
"crates/air-lib/execution-info-collector": "0.7.9",
"air": "0.48.0",
"air-interpreter": "0.48.0",
"avm/interface": "0.29.1",
"avm/server": "0.33.1",
"avm/client": "0.48.0",
"crates/air-lib/air-parser": "0.10.0",
"crates/air-lib/execution-info-collector": "0.7.10",
"crates/air-lib/interpreter-cid": "0.3.0",
"crates/air-lib/interpreter-data": "0.11.2",
"crates/air-lib/test-utils": "0.10.3",
"crates/air-lib/trace-handler": "0.5.2",
"crates/air-lib/interpreter-data": "0.11.3",
"crates/air-lib/test-utils": "0.10.4",
"crates/air-lib/trace-handler": "0.5.3",
"crates/air-lib/utils": "0.1.1",
"crates/beautifier": "0.3.0",
"crates/data-store": "0.7.0",
"crates/testing-framework": "0.5.4",
"crates/beautifier": "0.3.1",
"crates/data-store": "0.7.1",
"crates/testing-framework": "0.5.5",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.4",
"tools/cli/air": "0.4.4",
"tools/wasm/air-beautify-wasm": "0.3.5",
"tools/cli/air": "0.4.5",
"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.15.0",
"crates/air-lib/interpreter-interface": "0.15.1",
"crates/air-lib/interpreter-signatures": "0.1.1",
"crates/air-lib/polyplets": "0.5.0"
"crates/air-lib/polyplets": "0.5.1"
}

32
Cargo.lock generated
View File

@ -54,7 +54,7 @@ dependencies = [
[[package]]
name = "air-beautifier"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"aquavm-air-parser",
"itertools",
@ -63,7 +63,7 @@ dependencies = [
[[package]]
name = "air-beautify-wasm"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"air-beautifier",
"wasm-bindgen",
@ -71,14 +71,14 @@ dependencies = [
[[package]]
name = "air-execution-info-collector"
version = "0.7.9"
version = "0.7.10"
dependencies = [
"aquavm-air-parser",
]
[[package]]
name = "air-interpreter"
version = "0.47.0"
version = "0.48.0"
dependencies = [
"air-interpreter-interface",
"air-log-targets",
@ -104,7 +104,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.11.2"
version = "0.11.3"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -122,7 +122,7 @@ dependencies = [
[[package]]
name = "air-interpreter-interface"
version = "0.15.0"
version = "0.15.1"
dependencies = [
"fluence-it-types",
"marine-rs-sdk",
@ -169,7 +169,7 @@ version = "0.1.0"
[[package]]
name = "air-test-utils"
version = "0.10.3"
version = "0.10.4"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -192,7 +192,7 @@ dependencies = [
[[package]]
name = "air-testing-framework"
version = "0.5.4"
version = "0.5.5"
dependencies = [
"air-test-utils",
"aquavm-air-parser",
@ -207,7 +207,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.5.2"
version = "0.5.3"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -319,7 +319,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "aquavm-air"
version = "0.47.0"
version = "0.48.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -359,7 +359,7 @@ dependencies = [
[[package]]
name = "aquavm-air-cli"
version = "0.4.4"
version = "0.4.5"
dependencies = [
"air-beautifier",
"air-interpreter-interface",
@ -386,7 +386,7 @@ dependencies = [
[[package]]
name = "aquavm-air-parser"
version = "0.9.0"
version = "0.10.0"
dependencies = [
"air-lambda-ast",
"air-lambda-parser",
@ -557,7 +557,7 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "avm-data-store"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"avm-interface",
"serde",
@ -567,7 +567,7 @@ dependencies = [
[[package]]
name = "avm-interface"
version = "0.29.0"
version = "0.29.1"
dependencies = [
"air-interpreter-interface",
"air-utils",
@ -582,7 +582,7 @@ dependencies = [
[[package]]
name = "avm-server"
version = "0.33.0"
version = "0.33.1"
dependencies = [
"air-interpreter-interface",
"air-utils",
@ -4124,7 +4124,7 @@ dependencies = [
[[package]]
name = "polyplets"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"marine-call-parameters",
"serde",

View File

@ -1,5 +1,20 @@
# Changelog
## [0.48.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.47.0...air-interpreter-v0.48.0) (2023-09-21)
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.47.0 to 0.48.0
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
## [0.47.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.46.0...air-interpreter-v0.47.0) (2023-09-07)

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter"
version = "0.47.0"
version = "0.48.0"
description = "Crate-wrapper for air"
authors = ["Fluence Labs"]
edition = "2018"
@ -18,8 +18,8 @@ name = "air_interpreter_server"
path = "src/marine.rs"
[dependencies]
aquavm-air = { version = "0.47.0", path = "../air" }
air-interpreter-interface = { version = "0.15.0", path = "../crates/air-lib/interpreter-interface" }
aquavm-air = { version = "0.48.0", path = "../air" }
air-interpreter-interface = { version = "0.15.1", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
marine-rs-sdk = {version = "0.10.0", features = ["logger"] }

View File

@ -1,5 +1,37 @@
# Changelog
## [0.48.0](https://github.com/fluencelabs/aquavm/compare/air-v0.47.0...air-v0.48.0) (2023-09-21)
### ⚠ BREAKING CHANGES
* **execution-engine:** this adds a join behavior for key and value pair used by ap inserting into a map [fixes VM-337] ([#701](https://github.com/fluencelabs/aquavm/issues/701))
* **execution-engine:** this patch prohibits error code = 0 ([#702](https://github.com/fluencelabs/aquavm/issues/702))
### Features
* **execution-engine:** join behavior for canon ([#697](https://github.com/fluencelabs/aquavm/issues/697)) ([4e72abe](https://github.com/fluencelabs/aquavm/commit/4e72abe9a72cd6bfd6a9b09579d5aa627ed25212))
* **execution-engine:** this patch prohibits error code = 0 ([#702](https://github.com/fluencelabs/aquavm/issues/702)) ([45035cc](https://github.com/fluencelabs/aquavm/commit/45035ccff515344ee8c2dc63f172f00637226778))
* **parser,execution-engine:** allow :error: in fail ([#696](https://github.com/fluencelabs/aquavm/issues/696)) ([bd80a12](https://github.com/fluencelabs/aquavm/commit/bd80a127eaab39f1ba02740e3e67d69cb36a699c))
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
* **execution-engine:** this adds a join behavior for key and value pair used by ap inserting into a map [fixes VM-337] ([#701](https://github.com/fluencelabs/aquavm/issues/701)) ([3a9beed](https://github.com/fluencelabs/aquavm/commit/3a9beed3c5572eefc4aee194d58144d7b424627e))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
* air-execution-info-collector bumped from 0.7.9 to 0.7.10
* air-interpreter-data bumped from 0.11.2 to 0.11.3
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* air-trace-handler bumped from 0.5.2 to 0.5.3
* polyplets bumped from 0.5.0 to 0.5.1
## [0.47.0](https://github.com/fluencelabs/aquavm/compare/air-v0.46.0...air-v0.47.0) (2023-09-07)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air"
version = "0.47.0"
version = "0.48.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.9.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.9", path = "../crates/air-lib/execution-info-collector" }
aquavm-air-parser = { version = "0.10.0", path = "../crates/air-lib/air-parser" }
air-execution-info-collector = { version = "0.7.10", 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.11.2", path = "../crates/air-lib/interpreter-data" }
air-interpreter-data = { version = "0.11.3", path = "../crates/air-lib/interpreter-data" }
air-interpreter-signatures = { version = "0.1.1", path = "../crates/air-lib/interpreter-signatures" }
air-interpreter-interface = { version = "0.15.0", path = "../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.15.1", 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.5.2", path = "../crates/air-lib/trace-handler" }
air-trace-handler = { version = "0.5.3", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.1", path = "../crates/air-lib/utils" }
polyplets = { version = "0.5.0", path = "../crates/air-lib/polyplets" }
polyplets = { version = "0.5.1", path = "../crates/air-lib/polyplets" }
fluence-keypair = { version = "0.10.1", default-features = false }
serde = { version = "1.0.164", features = [ "derive", "rc" ] }

View File

@ -1,5 +1,12 @@
# Changelog
## [0.48.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.47.0...avm-client-v0.48.0) (2023-09-21)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.47.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.46.0...avm-client-v0.47.0) (2023-09-07)

View File

@ -1,12 +1,12 @@
{
"name": "@fluencelabs/avm",
"version": "0.47.0",
"version": "0.48.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@fluencelabs/avm",
"version": "0.47.0",
"version": "0.48.0",
"license": "Apache 2.0",
"devDependencies": {
"typescript": "4.9.5"

View File

@ -1,7 +1,7 @@
{
"name": "@fluencelabs/avm",
"description": "Aquamarine VM",
"version": "0.47.0",
"version": "0.48.0",
"main": "./dist/index.js",
"repository": "https://github.com/fluencelabs/air",
"author": "Fluence Labs",

View File

@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* polyplets bumped from 0.3.2 to 0.3.3
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* polyplets bumped from 0.5.0 to 0.5.1
## [0.29.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.5...avm-interface-v0.29.0) (2023-08-17)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-interface"
description = "Fluence AIR VM interfacing"
version = "0.29.0"
version = "0.29.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -15,9 +15,9 @@ name = "avm_interface"
path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.15.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.15.1", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" }
polyplets = { version = "0.5.0", path = "../../crates/air-lib/polyplets" }
polyplets = { version = "0.5.1", path = "../../crates/air-lib/polyplets" }
thiserror = "1.0.40"
maplit = "1.0.2"

View File

@ -10,6 +10,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* polyplets bumped from 0.3.2 to 0.3.3
* avm-interface bumped from 0.28.4 to 0.28.5
## [0.33.1](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.33.0...avm-server-v0.33.1) (2023-09-21)
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* avm-data-store bumped from 0.7.0 to 0.7.1
* polyplets bumped from 0.5.0 to 0.5.1
* avm-interface bumped from 0.29.0 to 0.29.1
## [0.33.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.32.2...avm-server-v0.33.0) (2023-08-17)

View File

@ -1,7 +1,7 @@
[package]
name = "avm-server"
description = "Fluence AIR VM"
version = "0.33.0"
version = "0.33.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -15,12 +15,12 @@ name = "avm_server"
path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.15.0", path = "../../crates/air-lib/interpreter-interface" }
air-interpreter-interface = { version = "0.15.1", path = "../../crates/air-lib/interpreter-interface" }
air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" }
avm-data-store = { version = "0.7.0", path = "../../crates/data-store" }
avm-data-store = { version = "0.7.1", path = "../../crates/data-store" }
marine-runtime = "0.30.0"
polyplets = { version = "0.5.0", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.29.0", path = "../../avm/interface" }
polyplets = { version = "0.5.1", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.29.1", path = "../../avm/interface" }
eyre = "0.6.8"
thiserror = "1.0.40"

View File

@ -1,5 +1,17 @@
# Changelog
## [0.10.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.9.0...air-parser-v0.10.0) (2023-09-21)
### ⚠ BREAKING CHANGES
* **execution-engine:** this patch prohibits error code = 0 ([#702](https://github.com/fluencelabs/aquavm/issues/702))
### Features
* **execution-engine:** this patch prohibits error code = 0 ([#702](https://github.com/fluencelabs/aquavm/issues/702)) ([45035cc](https://github.com/fluencelabs/aquavm/commit/45035ccff515344ee8c2dc63f172f00637226778))
* **parser,execution-engine:** allow :error: in fail ([#696](https://github.com/fluencelabs/aquavm/issues/696)) ([bd80a12](https://github.com/fluencelabs/aquavm/commit/bd80a127eaab39f1ba02740e3e67d69cb36a699c))
## [0.9.0](https://github.com/fluencelabs/aquavm/compare/air-parser-v0.8.2...air-parser-v0.9.0) (2023-09-07)

View File

@ -1,7 +1,7 @@
[package]
name = "aquavm-air-parser"
description = "Parser of the AIR scripts in a form of string to AST"
version = "0.9.0"
version = "0.10.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -16,6 +16,10 @@
* dependencies
* aquavm-air-parser bumped from 0.8.2 to 0.9.0
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.9.0 to 0.10.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)

View File

@ -1,6 +1,6 @@
[package]
name = "air-execution-info-collector"
version = "0.7.9"
version = "0.7.10"
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.9.0", path = "../air-parser" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }

View File

@ -16,6 +16,11 @@
* dependencies
* aquavm-air-parser bumped from 0.8.2 to 0.9.0
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
* polyplets bumped from 0.5.0 to 0.5.1
## [0.11.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.10.0...air-interpreter-data-v0.11.0) (2023-08-31)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.11.2"
version = "0.11.3"
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.9.0", path = "../air-parser" }
aquavm-air-parser = { version = "0.10.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.5.0", path = "../polyplets" }
polyplets = { version = "0.5.1", path = "../polyplets" }
serde = {version = "1.0.164", features = ["derive", "rc"]}
serde_json = "1.0.95"

View File

@ -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.15.1](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.15.0...air-interpreter-interface-v0.15.1) (2023-09-21)
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
## [0.15.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.14.0...air-interpreter-interface-v0.15.0) (2023-08-17)

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-interface"
description = "Interface of the AIR interpreter"
version = "0.15.0"
version = "0.15.1"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -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.5.1](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.5.0...polyplets-v0.5.1) (2023-09-21)
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.4.0...polyplets-v0.5.0) (2023-08-17)

View File

@ -1,6 +1,6 @@
[package]
name = "polyplets"
version = "0.5.0"
version = "0.5.1"
description = "Security primitives to verify origin of service calls in Fluence network"
authors = ["Fluence Labs"]
edition = "2018"

View File

@ -49,6 +49,24 @@
* aquavm-air bumped from 0.46.0 to 0.47.0
* air-interpreter-data bumped from 0.11.1 to 0.11.2
## [0.10.4](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.10.3...air-test-utils-v0.10.4) (2023-09-21)
### Bug Fixes
* **deps:** update rust crate marine-rs-sdk to 0.10.0 ([#640](https://github.com/fluencelabs/aquavm/issues/640)) ([b713e44](https://github.com/fluencelabs/aquavm/commit/b713e447fca38e0877a6c0e56bf91880f02bf9e4))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.47.0 to 0.48.0
* air-interpreter-data bumped from 0.11.2 to 0.11.3
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* avm-interface bumped from 0.29.0 to 0.29.1
* avm-server bumped from 0.33.0 to 0.33.1
## [0.10.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.9.0...air-test-utils-v0.10.0) (2023-08-31)

View File

@ -1,6 +1,6 @@
[package]
name = "air-test-utils"
version = "0.10.3"
version = "0.10.4"
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.47.0", path = "../../../air" }
aquavm-air = { version = "0.48.0", path = "../../../air" }
air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.11.2", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.15.0", path = "../interpreter-interface" }
avm-interface = { version = "0.29.0", path = "../../../avm/interface" }
avm-server = { version = "0.33.0", path = "../../../avm/server" }
air-interpreter-data = { version = "0.11.3", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.15.1", path = "../interpreter-interface" }
avm-interface = { version = "0.29.1", path = "../../../avm/interface" }
avm-server = { version = "0.33.1", path = "../../../avm/server" }
marine-rs-sdk = "0.10.0"
object-pool = "0.5.4"

View File

@ -15,6 +15,12 @@
* air-interpreter-data bumped from 0.11.1 to 0.11.2
* aquavm-air-parser bumped from 0.8.2 to 0.9.0
* The following workspace dependencies were updated
* dependencies
* air-interpreter-data bumped from 0.11.2 to 0.11.3
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
* polyplets bumped from 0.5.0 to 0.5.1
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.4.0...air-trace-handler-v0.5.0) (2023-08-31)

View File

@ -1,6 +1,6 @@
[package]
name = "air-trace-handler"
version = "0.5.2"
version = "0.5.3"
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.11.2", path = "../interpreter-data" }
air-interpreter-data = { version = "0.11.3", path = "../interpreter-data" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.9.0", path = "../air-parser" }
polyplets = { version = "0.5.0", path = "../polyplets" }
aquavm-air-parser = { version = "0.10.0", path = "../air-parser" }
polyplets = { version = "0.5.1", path = "../polyplets" }
bimap = "0.6.3"
serde_json = "1.0.95"

View File

@ -8,6 +8,20 @@
* dependencies
* aquavm-air-parser bumped from 0.8.1 to 0.8.2
## [0.3.1](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.3.0...air-beautifier-v0.3.1) (2023-09-21)
### Features
* **parser,execution-engine:** allow :error: in fail ([#696](https://github.com/fluencelabs/aquavm/issues/696)) ([bd80a12](https://github.com/fluencelabs/aquavm/commit/bd80a127eaab39f1ba02740e3e67d69cb36a699c))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
## [0.3.0](https://github.com/fluencelabs/aquavm/compare/air-beautifier-v0.2.2...air-beautifier-v0.3.0) (2023-09-07)

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautifier"
version = "0.3.0"
version = "0.3.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.9.0", path = "../air-lib/air-parser" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
thiserror = "1.0.40"

View File

@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* dependencies
* avm-interface bumped from 0.28.4 to 0.28.5
* The following workspace dependencies were updated
* dependencies
* avm-interface bumped from 0.29.0 to 0.29.1
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.6.3...avm-data-store-v0.7.0) (2023-08-17)

View File

@ -1,6 +1,6 @@
[package]
name = "avm-data-store"
version = "0.7.0"
version = "0.7.1"
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.29.0", path = "../../avm/interface"}
avm-interface = { version = "0.29.1", path = "../../avm/interface"}
serde = { version = "1.0.164", features = ["derive"] }
serde_bytes = "0.11.9"

View File

@ -4,7 +4,7 @@ version = 3
[[package]]
name = "air-interpreter-wasm"
version = "0.47.0"
version = "0.48.0"
dependencies = [
"built",
]

View File

@ -1,6 +1,6 @@
[package]
name = "air-interpreter-wasm"
version = "0.47.0"
version = "0.48.0"
description = "Distribution of AIR interpreter as .wasm"
authors = ["Fluence Labs"]
license = "Apache-2.0"

View File

@ -39,6 +39,11 @@
* air-test-utils bumped from 0.10.2 to 0.10.3
* aquavm-air-parser bumped from 0.8.2 to 0.9.0
* The following workspace dependencies were updated
* dependencies
* air-test-utils bumped from 0.10.3 to 0.10.4
* aquavm-air-parser bumped from 0.9.0 to 0.10.0
## [0.5.2](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.5.1...air-testing-framework-v0.5.2) (2023-09-04)

View File

@ -1,6 +1,6 @@
[package]
name = "air-testing-framework"
version = "0.5.4"
version = "0.5.5"
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.10.3", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.9.0", path = "../air-lib/air-parser" }
air-test-utils = { version = "0.10.4", path = "../air-lib/test-utils" }
aquavm-air-parser = { version = "0.10.0", path = "../air-lib/air-parser" }
itertools = "0.10.5"
strum = { version="0.24.1", features=["derive"] }

View File

@ -71,6 +71,15 @@
* air-beautifier bumped from 0.2.2 to 0.3.0
* air-test-utils bumped from 0.10.2 to 0.10.3
* The following workspace dependencies were updated
* dependencies
* aquavm-air bumped from 0.47.0 to 0.48.0
* air-beautifier bumped from 0.3.0 to 0.3.1
* avm-data-store bumped from 0.7.0 to 0.7.1
* avm-interface bumped from 0.29.0 to 0.29.1
* air-interpreter-interface bumped from 0.15.0 to 0.15.1
* air-test-utils bumped from 0.10.3 to 0.10.4
## [0.4.1](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.4.0...aquavm-air-cli-v0.4.1) (2023-08-31)

View File

@ -1,6 +1,6 @@
[package]
name = "aquavm-air-cli"
version = "0.4.4"
version = "0.4.5"
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.47.0", path = "../../../air" }
air-beautifier = { version = "0.3.0", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.0", path = "../../../crates/data-store" }
avm-interface = { version = "0.29.0", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.15.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.10.3",path = "../../../crates/air-lib/test-utils", optional = true }
aquavm-air = { version = "0.48.0", path = "../../../air" }
air-beautifier = { version = "0.3.1", path = "../../../crates/beautifier" }
avm-data-store = { version = "0.7.1", path = "../../../crates/data-store" }
avm-interface = { version = "0.29.1", path = "../../../avm/interface" }
air-interpreter-interface = { version = "0.15.1", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.10.4",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.70"
clap = { version = "4.2.7", features = ["derive", "env"] }

View File

@ -20,6 +20,10 @@
* dependencies
* air-beautifier bumped from 0.2.2 to 0.3.0
* The following workspace dependencies were updated
* dependencies
* air-beautifier bumped from 0.3.0 to 0.3.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)

View File

@ -1,6 +1,6 @@
[package]
name = "air-beautify-wasm"
version = "0.3.4"
version = "0.3.5"
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.3.0", path = "../../../crates/beautifier" }
air-beautifier = { version = "0.3.1", path = "../../../crates/beautifier" }

View File

@ -30,7 +30,7 @@ dependencies = [
[[package]]
name = "air-execution-info-collector"
version = "0.7.7"
version = "0.7.10"
dependencies = [
"aquavm-air-parser",
]
@ -47,7 +47,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.10.0"
version = "0.11.3"
dependencies = [
"air-interpreter-cid",
"air-interpreter-signatures",
@ -65,7 +65,7 @@ dependencies = [
[[package]]
name = "air-interpreter-interface"
version = "0.15.0"
version = "0.15.1"
dependencies = [
"fluence-it-types",
"marine-rs-sdk",
@ -112,7 +112,7 @@ version = "0.1.0"
[[package]]
name = "air-near-contract"
version = "0.43.1"
version = "0.48.0"
dependencies = [
"air-interpreter-interface",
"aquavm-air",
@ -124,7 +124,7 @@ dependencies = [
[[package]]
name = "air-trace-handler"
version = "0.4.0"
version = "0.5.3"
dependencies = [
"air-interpreter-cid",
"air-interpreter-data",
@ -160,7 +160,7 @@ dependencies = [
[[package]]
name = "aquavm-air"
version = "0.44.0"
version = "0.48.0"
dependencies = [
"air-execution-info-collector",
"air-interpreter-cid",
@ -192,7 +192,7 @@ dependencies = [
[[package]]
name = "aquavm-air-parser"
version = "0.8.1"
version = "0.10.0"
dependencies = [
"air-lambda-ast",
"air-lambda-parser",
@ -1205,8 +1205,9 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
[[package]]
name = "marine-call-parameters"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9ca0439e5b2a812d8bc5c3b7d71e3691fb260a1f0384a7e842eec1b59f13069"
dependencies = [
"marine-macro",
"marine-rs-sdk-main",
@ -1215,8 +1216,9 @@ dependencies = [
[[package]]
name = "marine-macro"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0088fc9cb6a970dc17a510c3cb28fe459c368d566e8cb7f8354e06ef3395c883"
dependencies = [
"marine-macro-impl",
"marine-rs-sdk-main",
@ -1224,8 +1226,9 @@ dependencies = [
[[package]]
name = "marine-macro-impl"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e457b58c826679139896f04e6cfa38c5d23870a88e957e8e0a6f646e7c3f0ac4"
dependencies = [
"proc-macro2",
"quote",
@ -1236,8 +1239,9 @@ dependencies = [
[[package]]
name = "marine-rs-sdk"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6ecd45528096514b4db8d23523eadaf9e5d5a7d3fce637e4bb684afccc0e9a3"
dependencies = [
"marine-call-parameters",
"marine-macro",
@ -1248,8 +1252,9 @@ dependencies = [
[[package]]
name = "marine-rs-sdk-main"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11eabbc74c69ad11874fb6cf686604833d084633293324524a40ec581663f978"
dependencies = [
"log",
"serde",
@ -1257,8 +1262,9 @@ dependencies = [
[[package]]
name = "marine-timestamp-macro"
version = "0.9.0"
source = "git+https://github.com/fluencelabs/marine-rs-sdk?branch=feat/decouple-call-params#de7d55e422fc8a0594d9c32debdd4613e2d478bf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acf956d174fdbf940b474089d5388aa35b4fc73fedbfade2a92dc198084b9afa"
dependencies = [
"chrono",
"quote",
@ -1717,7 +1723,7 @@ checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8"
[[package]]
name = "polyplets"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"marine-call-parameters",
"serde",

View File

@ -1,6 +1,6 @@
[package]
name = "air-near-contract"
version = "0.47.0"
version = "0.48.0"
description = "AIR interpreter as a NEAR contract"
authors = ["Fluence labs"]
edition = "2018"