fluencelabs / examples

Quickstart with Fluence, Aqua, and Marine
https://fluence.dev
84 stars 23 forks source link

chore(deps): update fluence js #422

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@fluencelabs/aqua 0.9.1-374 -> 0.9.4 age adoption passing confidence
@fluencelabs/fluence 0.27.5 -> 0.28.0 age adoption passing confidence

Release Notes

fluencelabs/aqua ### [`v0.9.4`](https://togithub.com/fluencelabs/aqua/blob/HEAD/CHANGELOG.md#​094-httpsgithubcomfluencelabsaquacompareaqua-v093aqua-v094-2023-02-01) [Compare Source](https://togithub.com/fluencelabs/aqua/compare/e77fc066a953624f9d8df9560fb2ee93535a6759...b4a62da6fce19ac5ba18719b0ca0730a4c37ee88) ##### Bug Fixes - Canonicalize variable in object creation or copy if variable is a stream ([#​649](https://togithub.com/fluencelabs/aqua/issues/649)) ([fedd743](https://togithub.com/fluencelabs/aqua/commit/fedd743721c33ccee51b2b6b8efff2b032586329)) ##### Performance Improvements - Unfold variables in parallel where it is possible (fixes LNG-109 ) ([#​656](https://togithub.com/fluencelabs/aqua/issues/656)) ([439f2cd](https://togithub.com/fluencelabs/aqua/commit/439f2cde03b5bca99b072bf7cad389168b8ad0fa)) ### [`v0.9.3`](https://togithub.com/fluencelabs/aqua/blob/HEAD/CHANGELOG.md#​093-httpsgithubcomfluencelabsaquacompareaqua-v092aqua-v093-2023-01-20) [Compare Source](https://togithub.com/fluencelabs/aqua/compare/4a76c6f29fc467a2c3c07a4ecf28f501547c5935...e77fc066a953624f9d8df9560fb2ee93535a6759) ##### Features - copy structures implementation \[fixes LNG-102] ([#​646](https://togithub.com/fluencelabs/aqua/issues/646)) ([50f0723](https://togithub.com/fluencelabs/aqua/commit/50f0723a321c76490587ea5350b4055ae2f470ec)) ##### Bug Fixes - `nil` in return \[DXJ-226] ([#​629](https://togithub.com/fluencelabs/aqua/issues/629)) ([7ab980a](https://togithub.com/fluencelabs/aqua/commit/7ab980a5f00ba6f529a13faced3a25c04df19717)) - **ci:** Set correct aqua version when creating release-please PRs \[fixes FLU-215 and FLU-218] [#​642](https://togithub.com/fluencelabs/aqua/issues/642) ([d7956c1](https://togithub.com/fluencelabs/aqua/commit/d7956c1c8d3b3b0367e7db0831ef665df9bad790)) - **error-messages:** fix incorrect number of arguments message \[fixes LNG-108] ([#​645](https://togithub.com/fluencelabs/aqua/issues/645)) ([d0a9db5](https://togithub.com/fluencelabs/aqua/commit/d0a9db51640283ab065f7a7a5b5078f1f8ac7c29)) ### [`v0.9.2`](https://togithub.com/fluencelabs/aqua/blob/HEAD/CHANGELOG.md#​092-httpsgithubcomfluencelabsaquacompareaqua-v091aqua-v092-2023-01-17) ##### Bug Fixes - **deps:** update dependency [@​fluencelabs/fluence](https://togithub.com/fluencelabs/fluence) to v0.28.0 [#​627](https://togithub.com/fluencelabs/aqua/issues/627) ([fa1dc89](https://togithub.com/fluencelabs/aqua/commit/fa1dc89313d63830b7858cb10004a07dba6694c9))
fluencelabs/fluence-js ### [`v0.28.0`](https://togithub.com/fluencelabs/fluence-js/releases/tag/v0.28.0): Fluence JS v0.28.0 [Compare Source](https://togithub.com/fluencelabs/fluence-js/compare/v0.27.5...v0.28.0) - [#​218](https://togithub.com/fluencelabs/fluence-js/issues/218) chore(deps): update dependency [@​fluencelabs/avm](https://togithub.com/fluencelabs/avm) to v0.35.3 - [#​236](https://togithub.com/fluencelabs/fluence-js/issues/236) chore: update version to 0.28.0

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.

linear[bot] commented 1 year ago

LNG-109 Unfold arguments (call arrow and copy) in parallel where it is possible

LNG-102 Mutate (copy?) objects

depends on LNG-105

FLU-215 Bump aqua versions in package.json

Similar to what was done in [FLU-212](https://linear.app/fluence/issue/FLU-212/configure-rust-peer-repo-as-a-single-package-for-release-please)

FLU-218 fix aqua version in release (now it is 0.9.1-0.9.2)

LNG-108 Invalid error message when calling function with wrong number of args

When calling a function that expects one argument with zero arguments there is an error ``` Error: Number of arguments for the function is incorrect. Expected: 0. Actual: 1 ``` But it must be ``` Error: Number of arguments for the function is incorrect. Expected: 1. Actual: 0 ```