From 3e353a2dab73e6e42a21c722e17c580e787c6c7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 15:32:37 -0800 Subject: [PATCH] Version Packages (#1808) Co-authored-by: github-actions[bot] --- .changeset/yellow-carrots-change.md | 23 ---------------------- packages/config/CHANGELOG.md | 11 +++++++++++ packages/config/package.json | 10 +++++----- packages/fcl-bundle/CHANGELOG.md | 6 ++++++ packages/fcl-bundle/package.json | 2 +- packages/fcl-wc/CHANGELOG.md | 12 ++++++++++++ packages/fcl-wc/package.json | 12 ++++++------ packages/fcl/CHANGELOG.md | 19 ++++++++++++++++++ packages/fcl/package.json | 28 +++++++++++++-------------- packages/protobuf/CHANGELOG.md | 6 ++++++ packages/protobuf/package.json | 2 +- packages/rlp/CHANGELOG.md | 6 ++++++ packages/rlp/package.json | 4 ++-- packages/sdk/CHANGELOG.md | 16 +++++++++++++++ packages/sdk/package.json | 22 ++++++++++----------- packages/transport-grpc/CHANGELOG.md | 13 +++++++++++++ packages/transport-grpc/package.json | 16 +++++++-------- packages/transport-http/CHANGELOG.md | 12 ++++++++++++ packages/transport-http/package.json | 18 ++++++++--------- packages/typedefs/CHANGELOG.md | 6 ++++++ packages/typedefs/package.json | 4 ++-- packages/types/CHANGELOG.md | 9 +++++++++ packages/types/package.json | 6 +++--- packages/util-actor/CHANGELOG.md | 6 ++++++ packages/util-actor/package.json | 4 ++-- packages/util-address/CHANGELOG.md | 6 ++++++ packages/util-address/package.json | 6 +++--- packages/util-encode-key/CHANGELOG.md | 10 ++++++++++ packages/util-encode-key/package.json | 10 +++++----- packages/util-invariant/CHANGELOG.md | 6 ++++++ packages/util-invariant/package.json | 6 +++--- packages/util-logger/CHANGELOG.md | 6 ++++++ packages/util-logger/package.json | 4 ++-- packages/util-semver/CHANGELOG.md | 7 +++++++ packages/util-semver/package.json | 4 ++-- packages/util-template/CHANGELOG.md | 9 +++++++++ packages/util-template/package.json | 6 +++--- packages/util-uid/CHANGELOG.md | 6 ++++++ packages/util-uid/package.json | 4 ++-- 39 files changed, 256 insertions(+), 107 deletions(-) delete mode 100644 .changeset/yellow-carrots-change.md create mode 100644 packages/util-semver/CHANGELOG.md diff --git a/.changeset/yellow-carrots-change.md b/.changeset/yellow-carrots-change.md deleted file mode 100644 index 453c1dacc..000000000 --- a/.changeset/yellow-carrots-change.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -"@onflow/util-actor": patch -"@onflow/config": patch -"@onflow/fcl": patch -"@onflow/fcl-bundle": patch -"@onflow/fcl-wc": patch -"@onflow/protobuf": patch -"@onflow/rlp": patch -"@onflow/sdk": patch -"@onflow/transport-grpc": patch -"@onflow/transport-http": patch -"@onflow/typedefs": patch -"@onflow/types": patch -"@onflow/util-address": patch -"@onflow/util-encode-key": patch -"@onflow/util-invariant": patch -"@onflow/util-logger": patch -"@onflow/util-semver": patch -"@onflow/util-template": patch -"@onflow/util-uid": patch ---- - -Fix versioning & actor bug diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 5ed863eee..b276dd1c6 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,16 @@ # @onflow/config +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-actor@1.3.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-logger@1.3.1 + ## 1.2.0 ### Minor Changes diff --git a/packages/config/package.json b/packages/config/package.json index 389355372..44e521e38 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/config", - "version": "1.2.0", + "version": "1.2.1", "description": "Config for FCL-JS", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.11", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/estree": "^1.0.1", "@types/jest": "^29.5.4", "@typescript-eslint/eslint-plugin": "^6.5.0", @@ -39,9 +39,9 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/util-actor": "^1.3.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-logger": "^1.3.0", + "@onflow/util-actor": "^1.3.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-logger": "^1.3.1", "eslint": "^8.34.0", "eslint-plugin-jsdoc": "^40.0.0" } diff --git a/packages/fcl-bundle/CHANGELOG.md b/packages/fcl-bundle/CHANGELOG.md index f7fe536ba..14817bfbd 100644 --- a/packages/fcl-bundle/CHANGELOG.md +++ b/packages/fcl-bundle/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/fcl-bundle +## 1.4.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.4.0 ### Minor Changes diff --git a/packages/fcl-bundle/package.json b/packages/fcl-bundle/package.json index 2598910f8..257250c9e 100644 --- a/packages/fcl-bundle/package.json +++ b/packages/fcl-bundle/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/fcl-bundle", - "version": "1.4.0", + "version": "1.4.1", "description": "FCL Bundler Tool", "license": "Apache-2.0", "author": "Dapper Labs ", diff --git a/packages/fcl-wc/CHANGELOG.md b/packages/fcl-wc/CHANGELOG.md index 564b42f1a..328dc4fcf 100644 --- a/packages/fcl-wc/CHANGELOG.md +++ b/packages/fcl-wc/CHANGELOG.md @@ -1,5 +1,17 @@ # @onflow/fcl-wc +## 5.0.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/config@1.2.1 + - @onflow/fcl@1.8.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-logger@1.3.1 + ## 5.0.0 ### Minor Changes diff --git a/packages/fcl-wc/package.json b/packages/fcl-wc/package.json index b9fa9ebc0..806038ace 100644 --- a/packages/fcl-wc/package.json +++ b/packages/fcl-wc/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/fcl-wc", - "version": "5.0.0", + "version": "5.0.1", "description": "WalletConnect adapter for FCL", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -25,21 +25,21 @@ "start": "fcl-bundle --watch" }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "better-sqlite3": "^7.6.2", "jest": "^29.5.0" }, "dependencies": { "@babel/runtime": "^7.18.9", - "@onflow/config": "^1.2.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-logger": "^1.3.0", + "@onflow/config": "^1.2.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-logger": "^1.3.1", "@walletconnect/modal": "^2.4.7", "@walletconnect/sign-client": "^2.8.1", "@walletconnect/types": "^2.8.1", "@walletconnect/utils": "^2.8.1" }, "peerDependencies": { - "@onflow/fcl": "^1.8.0" + "@onflow/fcl": "^1.8.1" } } diff --git a/packages/fcl/CHANGELOG.md b/packages/fcl/CHANGELOG.md index 542890d96..62ba5e864 100644 --- a/packages/fcl/CHANGELOG.md +++ b/packages/fcl/CHANGELOG.md @@ -1,5 +1,24 @@ # @onflow/fcl +## 1.8.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-actor@1.3.1 + - @onflow/config@1.2.1 + - @onflow/rlp@1.2.1 + - @onflow/sdk@1.3.1 + - @onflow/types@1.2.1 + - @onflow/util-address@1.2.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-logger@1.3.1 + - @onflow/util-semver@1.0.1 + - @onflow/util-template@1.2.1 + - @onflow/util-uid@1.2.1 + ## 1.8.0 ### Minor Changes diff --git a/packages/fcl/package.json b/packages/fcl/package.json index 177dd3cb6..cdc22d5e5 100644 --- a/packages/fcl/package.json +++ b/packages/fcl/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/fcl", - "version": "1.8.0", + "version": "1.8.1", "description": "Flow Client Library", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -19,8 +19,8 @@ } }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/typedefs": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/typedefs": "^1.2.1", "@types/estree": "^1.0.1", "@types/node": "^18.13.0", "eslint": "^8.35.0", @@ -58,18 +58,18 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/config": "^1.2.0", + "@onflow/config": "^1.2.1", "@onflow/interaction": "0.0.11", - "@onflow/rlp": "^1.2.0", - "@onflow/sdk": "^1.3.0", - "@onflow/types": "^1.2.0", - "@onflow/util-actor": "^1.3.0", - "@onflow/util-address": "^1.2.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-logger": "^1.3.0", - "@onflow/util-semver": "^1.0.0", - "@onflow/util-template": "^1.2.0", - "@onflow/util-uid": "^1.2.0", + "@onflow/rlp": "^1.2.1", + "@onflow/sdk": "^1.3.1", + "@onflow/types": "^1.2.1", + "@onflow/util-actor": "^1.3.1", + "@onflow/util-address": "^1.2.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-logger": "^1.3.1", + "@onflow/util-semver": "^1.0.1", + "@onflow/util-template": "^1.2.1", + "@onflow/util-uid": "^1.2.1", "cross-fetch": "^3.1.6" }, "peerDependencies": { diff --git a/packages/protobuf/CHANGELOG.md b/packages/protobuf/CHANGELOG.md index 074711495..db58157eb 100644 --- a/packages/protobuf/CHANGELOG.md +++ b/packages/protobuf/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/protobuf +## 1.2.2 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.1 ### Patch Changes diff --git a/packages/protobuf/package.json b/packages/protobuf/package.json index 4f7eea777..c54f9b8d0 100644 --- a/packages/protobuf/package.json +++ b/packages/protobuf/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/protobuf", - "version": "1.2.1", + "version": "1.2.2", "description": "Access Node Protobuf", "license": "Apache-2.0", "author": "Dapper Labs ", diff --git a/packages/rlp/CHANGELOG.md b/packages/rlp/CHANGELOG.md index d9b8850d4..ec37bc556 100644 --- a/packages/rlp/CHANGELOG.md +++ b/packages/rlp/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/rlp +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.0 ### Minor Changes diff --git a/packages/rlp/package.json b/packages/rlp/package.json index b9e68c822..fa2214109 100644 --- a/packages/rlp/package.json +++ b/packages/rlp/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/rlp", - "version": "1.2.0", + "version": "1.2.1", "description": "Port of ethereumjs/rlp", "license": "MPL-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index e74d0c9cf..1b1c47175 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,21 @@ # @onflow/sdk +## 1.3.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-actor@1.3.1 + - @onflow/config@1.2.1 + - @onflow/rlp@1.2.1 + - @onflow/transport-http@1.8.1 + - @onflow/util-address@1.2.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-logger@1.3.1 + - @onflow/util-template@1.2.1 + ## 1.3.0 ### Minor Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 2e3995974..c83a9734a 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/sdk", - "version": "1.3.0", + "version": "1.3.1", "description": "Flow SDK", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -18,8 +18,8 @@ } }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/typedefs": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/typedefs": "^1.2.1", "eslint": "^8.35.0", "eslint-plugin-jsdoc": "^40.0.1", "jest": "^29.5.0", @@ -41,14 +41,14 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/config": "^1.2.0", - "@onflow/rlp": "^1.2.0", - "@onflow/transport-http": "^1.8.0", - "@onflow/util-actor": "^1.3.0", - "@onflow/util-address": "^1.2.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-logger": "^1.3.0", - "@onflow/util-template": "^1.2.0", + "@onflow/config": "^1.2.1", + "@onflow/rlp": "^1.2.1", + "@onflow/transport-http": "^1.8.1", + "@onflow/util-actor": "^1.3.1", + "@onflow/util-address": "^1.2.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-logger": "^1.3.1", + "@onflow/util-template": "^1.2.1", "deepmerge": "^4.2.2", "sha3": "^2.1.4", "uuid": "^9.0.1" diff --git a/packages/transport-grpc/CHANGELOG.md b/packages/transport-grpc/CHANGELOG.md index c68edd685..34b586a24 100644 --- a/packages/transport-grpc/CHANGELOG.md +++ b/packages/transport-grpc/CHANGELOG.md @@ -1,5 +1,18 @@ # @onflow/transport-grpc +## 1.3.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/protobuf@1.2.2 + - @onflow/rlp@1.2.1 + - @onflow/util-address@1.2.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-template@1.2.1 + ## 1.3.0 ### Minor Changes diff --git a/packages/transport-grpc/package.json b/packages/transport-grpc/package.json index c1e708822..b6116b08f 100644 --- a/packages/transport-grpc/package.json +++ b/packages/transport-grpc/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/transport-grpc", - "version": "1.3.0", + "version": "1.3.1", "description": "Flow SDK GRPC Transport Module", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -13,8 +13,8 @@ "url": "https://github.com/onflow/flow-js-sdk/issues" }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/sdk": "^1.3.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/sdk": "^1.3.1", "jest": "^29.5.0" }, "source": "src/sdk-send-grpc.js", @@ -33,10 +33,10 @@ "@babel/runtime": "^7.18.6", "@improbable-eng/grpc-web": "^0.14.0", "@improbable-eng/grpc-web-node-http-transport": "^0.14.0", - "@onflow/protobuf": "^1.2.1", - "@onflow/rlp": "^1.2.0", - "@onflow/util-address": "^1.2.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-template": "^1.2.0" + "@onflow/protobuf": "^1.2.2", + "@onflow/rlp": "^1.2.1", + "@onflow/util-address": "^1.2.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-template": "^1.2.1" } } diff --git a/packages/transport-http/CHANGELOG.md b/packages/transport-http/CHANGELOG.md index a615e6bce..a45f4322a 100644 --- a/packages/transport-http/CHANGELOG.md +++ b/packages/transport-http/CHANGELOG.md @@ -1,5 +1,17 @@ # @onflow/transport-http +## 1.8.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-address@1.2.1 + - @onflow/util-invariant@1.2.1 + - @onflow/util-logger@1.3.1 + - @onflow/util-template@1.2.1 + ## 1.8.0 ### Minor Changes diff --git a/packages/transport-http/package.json b/packages/transport-http/package.json index d8eb9a1ac..7b1a311cc 100644 --- a/packages/transport-http/package.json +++ b/packages/transport-http/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/transport-http", - "version": "1.8.0", + "version": "1.8.1", "description": "Flow SDK HTTP Transport Module", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -13,10 +13,10 @@ "url": "https://github.com/onflow/flow-js-sdk/issues" }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/rlp": "^1.2.0", - "@onflow/sdk": "^1.3.0", - "@onflow/types": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/rlp": "^1.2.1", + "@onflow/sdk": "^1.3.1", + "@onflow/types": "^1.2.1", "jest": "^29.5.0" }, "source": "src/sdk-send-http.js", @@ -33,10 +33,10 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/util-address": "^1.2.0", - "@onflow/util-invariant": "^1.2.0", - "@onflow/util-logger": "^1.3.0", - "@onflow/util-template": "^1.2.0", + "@onflow/util-address": "^1.2.1", + "@onflow/util-invariant": "^1.2.1", + "@onflow/util-logger": "^1.3.1", + "@onflow/util-template": "^1.2.1", "abort-controller": "^3.0.0", "cross-fetch": "^3.1.6" } diff --git a/packages/typedefs/CHANGELOG.md b/packages/typedefs/CHANGELOG.md index 94ab601b9..f90d27e89 100644 --- a/packages/typedefs/CHANGELOG.md +++ b/packages/typedefs/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/typedefs +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.0 ### Minor Changes diff --git a/packages/typedefs/package.json b/packages/typedefs/package.json index 3c09ed194..3033afa18 100644 --- a/packages/typedefs/package.json +++ b/packages/typedefs/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/typedefs", - "version": "1.2.0", + "version": "1.2.1", "description": "Flow JS Type Defs", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -13,7 +13,7 @@ "url": "https://github.com/onflow/flow-js-sdk/issues" }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/node": "^18.13.0", "eslint": "^8.33.0", "eslint-plugin-jsdoc": "^39.7.5", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 7bfb6c4fa..115ea0d70 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,14 @@ # @onflow/types +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-logger@1.3.1 + ## 1.2.0 ### Minor Changes diff --git a/packages/types/package.json b/packages/types/package.json index c15f88071..ee16cd9c6 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/types", - "version": "1.2.0", + "version": "1.2.1", "description": "Utilities to transform javascript values into Cadence understandable values", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", @@ -37,6 +37,6 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/util-logger": "^1.3.0" + "@onflow/util-logger": "^1.3.1" } } diff --git a/packages/util-actor/CHANGELOG.md b/packages/util-actor/CHANGELOG.md index d393bbfc9..c0d9fe6ee 100644 --- a/packages/util-actor/CHANGELOG.md +++ b/packages/util-actor/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-actor +## 1.3.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.3.0 ### Minor Changes diff --git a/packages/util-actor/package.json b/packages/util-actor/package.json index 5284fb821..9f9fe0969 100644 --- a/packages/util-actor/package.json +++ b/packages/util-actor/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-actor", - "version": "1.3.0", + "version": "1.3.1", "description": "A mechanism for forcing order/transitions of scoped async state", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", diff --git a/packages/util-address/CHANGELOG.md b/packages/util-address/CHANGELOG.md index 0f62648ce..23469dc27 100644 --- a/packages/util-address/CHANGELOG.md +++ b/packages/util-address/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-address +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.0 ### Minor Changes diff --git a/packages/util-address/package.json b/packages/util-address/package.json index e03876f4f..395548a16 100644 --- a/packages/util-address/package.json +++ b/packages/util-address/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-address", - "version": "1.2.0", + "version": "1.2.1", "description": "Flow JS SDK Util -- Address", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,8 +14,8 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/types": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/types": "^1.2.1", "@types/jest": "^29.5.3", "@types/node": "^18.13.0", "@typescript-eslint/eslint-plugin": "^6.4.0", diff --git a/packages/util-encode-key/CHANGELOG.md b/packages/util-encode-key/CHANGELOG.md index 756dc9532..baf279afc 100644 --- a/packages/util-encode-key/CHANGELOG.md +++ b/packages/util-encode-key/CHANGELOG.md @@ -1,5 +1,15 @@ # @onflow/util-encode-key +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/rlp@1.2.1 + - @onflow/util-invariant@1.2.1 + ## 1.2.0 ### Minor Changes diff --git a/packages/util-encode-key/package.json b/packages/util-encode-key/package.json index ba977c2ab..0dadf4092 100644 --- a/packages/util-encode-key/package.json +++ b/packages/util-encode-key/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-encode-key", - "version": "1.2.0", + "version": "1.2.1", "description": "Flow JS SDK Util -- Encode Key", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,8 +14,8 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/types": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/types": "^1.2.1", "@types/jest": "^29.5.3", "@types/node": "^18.13.0", "@typescript-eslint/eslint-plugin": "^6.4.0", @@ -40,7 +40,7 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/rlp": "^1.2.0", - "@onflow/util-invariant": "^1.2.0" + "@onflow/rlp": "^1.2.1", + "@onflow/util-invariant": "^1.2.1" } } diff --git a/packages/util-invariant/CHANGELOG.md b/packages/util-invariant/CHANGELOG.md index 0781e5348..131c95626 100644 --- a/packages/util-invariant/CHANGELOG.md +++ b/packages/util-invariant/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-invariant +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.0 ### Minor Changes diff --git a/packages/util-invariant/package.json b/packages/util-invariant/package.json index 986583aad..9f1b1905a 100644 --- a/packages/util-invariant/package.json +++ b/packages/util-invariant/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-invariant", - "version": "1.2.0", + "version": "1.2.1", "description": "Flow JS SDK Util -- Invariant", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,8 +14,8 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", - "@onflow/types": "^1.2.0", + "@onflow/fcl-bundle": "^1.4.1", + "@onflow/types": "^1.2.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", diff --git a/packages/util-logger/CHANGELOG.md b/packages/util-logger/CHANGELOG.md index 11e1185d9..16c4e0844 100644 --- a/packages/util-logger/CHANGELOG.md +++ b/packages/util-logger/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-logger +## 1.3.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.3.0 ### Minor Changes diff --git a/packages/util-logger/package.json b/packages/util-logger/package.json index 9a7f39734..310cd9373 100644 --- a/packages/util-logger/package.json +++ b/packages/util-logger/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-logger", - "version": "1.3.0", + "version": "1.3.1", "description": "Logger for FCL-JS", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", diff --git a/packages/util-semver/CHANGELOG.md b/packages/util-semver/CHANGELOG.md new file mode 100644 index 000000000..fccc2c02f --- /dev/null +++ b/packages/util-semver/CHANGELOG.md @@ -0,0 +1,7 @@ +# @onflow/util-semver + +## 1.0.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug diff --git a/packages/util-semver/package.json b/packages/util-semver/package.json index b24246f31..b2063894f 100644 --- a/packages/util-semver/package.json +++ b/packages/util-semver/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-semver", - "version": "1.0.0", + "version": "1.0.1", "description": "A lightweight semver implementation for use in FCL", "main": "dist/index.js", "module": "dist/index.module.js", @@ -13,7 +13,7 @@ "start": "fcl-bundle --watch" }, "devDependencies": { - "@onflow/fcl-bundle": "^1.4.0-typescript.0", + "@onflow/fcl-bundle": "^1.4.1", "jest": "^29.5.0" }, "dependencies": { diff --git a/packages/util-template/CHANGELOG.md b/packages/util-template/CHANGELOG.md index 985661112..68db6ef39 100644 --- a/packages/util-template/CHANGELOG.md +++ b/packages/util-template/CHANGELOG.md @@ -1,5 +1,14 @@ # @onflow/util-template +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + +- Updated dependencies [[`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9)]: + - @onflow/util-logger@1.3.1 + ## 1.2.0 ### Minor Changes diff --git a/packages/util-template/package.json b/packages/util-template/package.json index 8040a7716..0fd9d55d2 100644 --- a/packages/util-template/package.json +++ b/packages/util-template/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-template", - "version": "1.2.0", + "version": "1.2.1", "description": "Template Literal used for Cadence Interop", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0", @@ -36,6 +36,6 @@ }, "dependencies": { "@babel/runtime": "^7.18.6", - "@onflow/util-logger": "^1.3.0" + "@onflow/util-logger": "^1.3.1" } } diff --git a/packages/util-uid/CHANGELOG.md b/packages/util-uid/CHANGELOG.md index 4fd5f534e..0ce30d7e4 100644 --- a/packages/util-uid/CHANGELOG.md +++ b/packages/util-uid/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-uid +## 1.2.1 + +### Patch Changes + +- [#1807](https://github.com/onflow/fcl-js/pull/1807) [`9430d723`](https://github.com/onflow/fcl-js/commit/9430d7232c272f4acb55f5bcff7be82cef9704d9) Thanks [@jribbink](https://github.com/jribbink)! - Fix versioning & actor bug + ## 1.2.0 ### Minor Changes diff --git a/packages/util-uid/package.json b/packages/util-uid/package.json index d93bf74cc..bda0faeda 100644 --- a/packages/util-uid/package.json +++ b/packages/util-uid/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-uid", - "version": "1.2.0", + "version": "1.2.1", "description": "Utilities to generate Unique Identifiers", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -14,7 +14,7 @@ }, "devDependencies": { "@babel/preset-typescript": "^7.22.5", - "@onflow/fcl-bundle": "^1.4.0", + "@onflow/fcl-bundle": "^1.4.1", "@types/jest": "^29.5.3", "@typescript-eslint/eslint-plugin": "^6.4.0", "@typescript-eslint/parser": "^6.4.0",