chore: release master (#668)

* chore: release master

* chore: Bump air-interpreter version to 0.44.0
This commit is contained in:
fluencebot 2023-08-17 16:06:59 +03:00 committed by GitHub
parent e34ca071b0
commit 27a99fcca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
29 changed files with 244 additions and 34 deletions

View File

@ -1,26 +1,26 @@
{
"air": "0.43.1",
"air-interpreter": "0.43.1",
"avm/interface": "0.28.5",
"avm/server": "0.32.2",
"avm/client": "0.43.1",
"air": "0.44.0",
"air-interpreter": "0.44.0",
"avm/interface": "0.29.0",
"avm/server": "0.33.0",
"avm/client": "0.44.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.9.0",
"crates/air-lib/test-utils": "0.8.2",
"crates/air-lib/trace-handler": "0.3.0",
"crates/air-lib/interpreter-data": "0.10.0",
"crates/air-lib/test-utils": "0.9.0",
"crates/air-lib/trace-handler": "0.4.0",
"crates/air-lib/utils": "0.1.1",
"crates/beautifier": "0.2.1",
"crates/data-store": "0.6.3",
"crates/testing-framework": "0.4.3",
"crates/data-store": "0.7.0",
"crates/testing-framework": "0.5.0",
"tools/cli/aquavm-air-cli": "0.2.6",
"tools/wasm/air-beautify-wasm": "0.3.2",
"tools/cli/air": "0.3.5",
"tools/cli/air": "0.4.0",
"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-interface": "0.15.0",
"crates/air-lib/interpreter-signatures": "0.1.1",
"crates/air-lib/polyplets": "0.4.0"
"crates/air-lib/polyplets": "0.5.0"
}

6
Cargo.lock generated
View File

@ -122,7 +122,7 @@ dependencies = [
[[package]]
name = "air-interpreter-interface"
version = "0.14.0"
version = "0.15.0"
dependencies = [
"fluence-it-types",
"marine-rs-sdk",
@ -4101,7 +4101,7 @@ dependencies = [
[[package]]
name = "polyplets"
version = "0.4.0"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b579a79a461ca50abb202eac61c76d8782fdf091a91775c9e181352e7cd30a8b"
dependencies = [
@ -4112,7 +4112,7 @@ dependencies = [
[[package]]
name = "polyplets"
version = "0.4.1"
version = "0.5.0"
dependencies = [
"marine-rs-sdk",
"serde",

View File

@ -1,5 +1,23 @@
# Changelog
## [0.44.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.43.1...air-interpreter-v0.44.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.0
## [0.43.1](https://github.com/fluencelabs/aquavm/compare/air-interpreter-v0.43.0...air-interpreter-v0.43.1) (2023-08-07)

View File

@ -19,7 +19,7 @@ path = "src/marine.rs"
[dependencies]
aquavm-air = { version = "0.44.0", path = "../air" }
air-interpreter-interface = { version = "0.14.0", path = "../crates/air-lib/interpreter-interface" }
air-interpreter-interface = { version = "0.15.0", path = "../crates/air-lib/interpreter-interface" }
air-log-targets = { version = "0.1.0", path = "../crates/air-lib/log-targets" }
marine-rs-sdk = { version = "0.8.1", features = ["logger"] }

View File

@ -1,5 +1,27 @@
# Changelog
## [0.44.0](https://github.com/fluencelabs/aquavm/compare/air-v0.43.1...air-v0.44.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* **polyplets:** move SecurityTetraplets to marine-rs-sdk ([#674](https://github.com/fluencelabs/aquavm/issues/674))
* update marine-rs-sdk minor version
### Features
* **aquavm-air-cli:** `--near` execution mode [fixes VM-322] ([#672](https://github.com/fluencelabs/aquavm/issues/672)) ([0e80ee7](https://github.com/fluencelabs/aquavm/commit/0e80ee7908913fc896369ff7e00d65eeaf5d9f22))
* **polyplets:** move SecurityTetraplets to marine-rs-sdk ([#674](https://github.com/fluencelabs/aquavm/issues/674)) ([7a8a460](https://github.com/fluencelabs/aquavm/commit/7a8a46057297317e1b776b13d913b0d42ec0a9af))
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.0
* polyplets bumped from 0.4.1 to 0.5.0
## [0.43.1](https://github.com/fluencelabs/aquavm/compare/air-v0.43.0...air-v0.43.1) (2023-08-07)

View File

@ -21,13 +21,13 @@ air-execution-info-collector = { version = "0.7.7", path = "../crates/air-lib/ex
air-interpreter-cid = { version = "0.3.0", path = "../crates/air-lib/interpreter-cid" }
air-interpreter-data = { version = "0.10.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-interpreter-interface = { version = "0.15.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.4.0", path = "../crates/air-lib/trace-handler" }
air-utils = { version = "0.1.1", path = "../crates/air-lib/utils" }
polyplets = { version = "0.4.1", path = "../crates/air-lib/polyplets" }
polyplets = { version = "0.5.0", 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.44.0](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.43.1...avm-client-v0.44.0) (2023-08-17)
### Miscellaneous Chores
* **avm-client:** Synchronize air-interpreter versions
## [0.43.1](https://github.com/fluencelabs/aquavm/compare/avm-client-v0.43.0...avm-client-v0.43.1) (2023-08-07)

View File

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

View File

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

View File

@ -17,6 +17,25 @@ 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
## [0.29.0](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.5...avm-interface-v0.29.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.0
* polyplets bumped from 0.4.1 to 0.5.0
## [0.28.2](https://github.com/fluencelabs/aquavm/compare/avm-interface-v0.28.1...avm-interface-v0.28.2) (2023-02-21)

View File

@ -15,9 +15,9 @@ name = "avm_interface"
path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.14.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.15.0", path = "../../crates/air-lib/interpreter-interface", default-features = false }
air-utils = { version = "0.1.1", path = "../../crates/air-lib/utils" }
polyplets = { version = "0.4.1", path = "../../crates/air-lib/polyplets" }
polyplets = { version = "0.5.0", path = "../../crates/air-lib/polyplets" }
thiserror = "1.0.40"
maplit = "1.0.2"

View File

@ -10,6 +10,26 @@ 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.0](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.32.2...avm-server-v0.33.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* **aquavm-air-cli:** `--near` execution mode [fixes VM-322] ([#672](https://github.com/fluencelabs/aquavm/issues/672)) ([0e80ee7](https://github.com/fluencelabs/aquavm/commit/0e80ee7908913fc896369ff7e00d65eeaf5d9f22))
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.0
* polyplets bumped from 0.4.1 to 0.5.0
## [0.32.2](https://github.com/fluencelabs/aquavm/compare/avm-server-v0.32.1...avm-server-v0.32.2) (2023-08-04)

View File

@ -15,11 +15,11 @@ name = "avm_server"
path = "src/lib.rs"
[dependencies]
air-interpreter-interface = { version = "0.14.0", path = "../../crates/air-lib/interpreter-interface" }
air-interpreter-interface = { version = "0.15.0", 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" }
marine-runtime = "0.29.0"
polyplets = { version = "0.4.1", path = "../../crates/air-lib/polyplets" }
polyplets = { version = "0.5.0", path = "../../crates/air-lib/polyplets" }
avm-interface = { version = "0.29.0", path = "../../avm/interface" }
eyre = "0.6.8"

View File

@ -8,6 +8,24 @@
* dependencies
* aquavm-air-parser bumped from 0.7.5 to 0.8.0
## [0.10.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-data-v0.9.0...air-interpreter-data-v0.10.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* polyplets bumped from 0.4.1 to 0.5.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)

View File

@ -19,7 +19,7 @@ air-utils = { version = "0.1.1", path = "../utils" }
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.4.1", path = "../polyplets" }
polyplets = { version = "0.5.0", path = "../polyplets" }
serde = {version = "1.0.164", features = ["derive", "rc"]}
serde_json = "1.0.95"

View File

@ -4,6 +4,17 @@ 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.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.14.0...air-interpreter-interface-v0.15.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
## [0.14.0](https://github.com/fluencelabs/aquavm/compare/air-interpreter-interface-v0.13.0...air-interpreter-interface-v0.14.0) (2023-06-22)

View File

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

View File

@ -4,6 +4,24 @@ 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.0](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.4.0...polyplets-v0.5.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* **polyplets:** move SecurityTetraplets to marine-rs-sdk ([#674](https://github.com/fluencelabs/aquavm/issues/674))
* update marine-rs-sdk minor version
### Features
* **polyplets:** move SecurityTetraplets to marine-rs-sdk ([#674](https://github.com/fluencelabs/aquavm/issues/674)) ([7a8a460](https://github.com/fluencelabs/aquavm/commit/7a8a46057297317e1b776b13d913b0d42ec0a9af))
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### 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))
## [0.3.3](https://github.com/fluencelabs/aquavm/compare/polyplets-v0.3.2...polyplets-v0.3.3) (2023-08-03)

View File

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

View File

@ -35,6 +35,24 @@
* dependencies
* aquavm-air bumped from 0.43.0 to 0.43.1
## [0.9.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.8.2...air-test-utils-v0.9.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.0
## [0.8.0](https://github.com/fluencelabs/aquavm/compare/air-test-utils-v0.7.1...air-test-utils-v0.8.0) (2023-08-03)

View File

@ -18,7 +18,7 @@ path = "src/lib.rs"
aquavm-air = { version = "0.44.0", path = "../../../air" }
air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.10.0", path = "../interpreter-data" }
air-interpreter-interface = { version = "0.14.0", path = "../interpreter-interface" }
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" }
marine-rs-sdk = "0.8.1"

View File

@ -5,6 +5,24 @@
* 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.4.0](https://github.com/fluencelabs/aquavm/compare/air-trace-handler-v0.3.0...air-trace-handler-v0.4.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* polyplets bumped from 0.4.1 to 0.5.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)

View File

@ -17,7 +17,7 @@ air-interpreter-cid = { version = "0.3.0", path = "../interpreter-cid" }
air-interpreter-data = { version = "0.10.0", path = "../interpreter-data" }
air-log-targets = { version = "0.1.0", path = "../log-targets" }
aquavm-air-parser = { version = "0.8.1", path = "../air-parser" }
polyplets = { version = "0.4.1", path = "../polyplets" }
polyplets = { version = "0.5.0", path = "../polyplets" }
bimap = "0.6.3"
serde_json = "1.0.95"

View File

@ -16,6 +16,17 @@ 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
## [0.7.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.6.3...avm-data-store-v0.7.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
## [0.6.0](https://github.com/fluencelabs/aquavm/compare/avm-data-store-v0.5.0...avm-data-store-v0.6.0) (2023-02-27)

View File

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

View File

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

View File

@ -26,6 +26,17 @@
* dependencies
* air-test-utils bumped from 0.8.1 to 0.8.2
## [0.5.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.4.3...air-testing-framework-v0.5.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
## [0.4.0](https://github.com/fluencelabs/aquavm/compare/air-testing-framework-v0.3.0...air-testing-framework-v0.4.0) (2023-07-16)

View File

@ -54,6 +54,25 @@
* aquavm-air bumped from 0.43.0 to 0.43.1
* air-test-utils bumped from 0.8.1 to 0.8.2
## [0.4.0](https://github.com/fluencelabs/aquavm/compare/aquavm-air-cli-v0.3.5...aquavm-air-cli-v0.4.0) (2023-08-17)
### ⚠ BREAKING CHANGES
* update marine-rs-sdk minor version
### Features
* **aquavm-air-cli:** `--near` execution mode [fixes VM-322] ([#672](https://github.com/fluencelabs/aquavm/issues/672)) ([0e80ee7](https://github.com/fluencelabs/aquavm/commit/0e80ee7908913fc896369ff7e00d65eeaf5d9f22))
* update marine-rs-sdk minor version ([4b4e3bd](https://github.com/fluencelabs/aquavm/commit/4b4e3bde839d1167ea559d49b183d1a76bc93439))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* air-interpreter-interface bumped from 0.14.0 to 0.15.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)

View File

@ -14,7 +14,7 @@ aquavm-air = { version = "0.44.0", path = "../../../air" }
air-beautifier = { version = "0.2.1", 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.14.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-interpreter-interface = { version = "0.15.0", path = "../../../crates/air-lib/interpreter-interface", default-features = false }
air-test-utils = { version = "0.9.0",path = "../../../crates/air-lib/test-utils", optional = true }
anyhow = "1.0.70"