diff --git a/.changeset/pre.json b/.changeset/pre.json index a943bafba..a4d4fe8a8 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -16,11 +16,23 @@ "@onflow/util-logger": "0.0.1", "@onflow/util-node-http-modules": "0.0.1", "@onflow/util-template": "0.0.1", - "@onflow/util-uid": "0.0.1" + "@onflow/util-uid": "0.0.1", + "@onflow/config": "1.0.0-alpha.0" }, "changesets": [ + "angry-rockets-sniff", + "blue-eels-whisper", + "blue-pianos-search", + "clever-seals-own", + "dull-poems-think", + "fair-files-reply", + "green-garlics-lick", "heavy-cats-draw", "heavy-rabbits-hear", + "late-hounds-judge", + "mean-timers-help", + "rich-cheetahs-occur", + "short-ravens-return", "spicy-wombats-taste" ] } diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md new file mode 100644 index 000000000..8afc2cf9f --- /dev/null +++ b/packages/config/CHANGELOG.md @@ -0,0 +1,10 @@ +# @onflow/config + +## 1.0.0-alpha.1 + +### Patch Changes + +- [#1124](https://github.com/onflow/fcl-js/pull/1124) [`9c191c15`](https://github.com/onflow/fcl-js/commit/9c191c1520ee772b4343265a42ad0e995a92dd9a) Thanks [@chasefleming](https://github.com/chasefleming)! - Create config package + +- Updated dependencies [[`de47af64`](https://github.com/onflow/fcl-js/commit/de47af647a5bdad154a2d83e2ea2260ab54f0c60)]: + - @onflow/util-actor@1.0.0-alpha.1 diff --git a/packages/config/package.json b/packages/config/package.json index 2f11ab9e1..c92a15e1a 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/config", - "version": "1.0.0-alpha.0", + "version": "1.0.0-alpha.1", "description": "Config for FCL-JS", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -34,6 +34,6 @@ "start": "microbundle watch" }, "dependencies": { - "@onflow/util-actor": "^1.0.0-alpha.0" + "@onflow/util-actor": "^1.0.0-alpha.1" } } diff --git a/packages/fcl/CHANGELOG.md b/packages/fcl/CHANGELOG.md index db23ab296..03c01acfe 100644 --- a/packages/fcl/CHANGELOG.md +++ b/packages/fcl/CHANGELOG.md @@ -1,5 +1,28 @@ # @onflow/fcl +## 1.0.0-alpha.2 + +### Major Changes + +- [#1158](https://github.com/onflow/fcl-js/pull/1158) [`f4ae08bb`](https://github.com/onflow/fcl-js/commit/f4ae08bb7e2bdfd1a0364ad1e37b90a489cd104c) Thanks [@gregsantos](https://github.com/gregsantos)! - # Removed default contract address for verifyAccountProof, verifyUserSignatures + + AppUtils.verifyAccountProof and AppUtils.verifyUserSignatures now requires + setting `fcl.config.flow.network` (testnet or mainnet) or override contract address via + `opts.fclCryptoContract` + +### Patch Changes + +- [#1143](https://github.com/onflow/fcl-js/pull/1143) [`de47af64`](https://github.com/onflow/fcl-js/commit/de47af647a5bdad154a2d83e2ea2260ab54f0c60) Thanks [@gregsantos](https://github.com/gregsantos)! - Internal update to util-actor + +* [#1141](https://github.com/onflow/fcl-js/pull/1141) [`ac108e20`](https://github.com/onflow/fcl-js/commit/ac108e2082659cd9f763c42638d2664e593f514c) Thanks [@gregsantos](https://github.com/gregsantos)! - Add support for local FCLCrypto contract account-proof/user-signature verification. fcl.config.network or opts.fclCryptoContract override is now required to use this api. + +- [#1115](https://github.com/onflow/fcl-js/pull/1115) [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - **BREAKING** Remove deprecated block builders, interaction types and send methods. + +- Updated dependencies [[`700433d5`](https://github.com/onflow/fcl-js/commit/700433d50d4156183b09b13781f7f74f23882586), [`6ff970df`](https://github.com/onflow/fcl-js/commit/6ff970dfc04281c86043e1cf8f5bceb633dc4186), [`7287ff14`](https://github.com/onflow/fcl-js/commit/7287ff14d20e19270ff345cd8b274ad5c8509eb7), [`9c191c15`](https://github.com/onflow/fcl-js/commit/9c191c1520ee772b4343265a42ad0e995a92dd9a), [`de47af64`](https://github.com/onflow/fcl-js/commit/de47af647a5bdad154a2d83e2ea2260ab54f0c60), [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe)]: + - @onflow/sdk@1.0.0-alpha.1 + - @onflow/config@1.0.0-alpha.1 + - @onflow/util-actor@1.0.0-alpha.1 + ## 1.0.0-alpha.1 ### Minor Changes diff --git a/packages/fcl/package.json b/packages/fcl/package.json index d6e82b6fd..d5dd20762 100644 --- a/packages/fcl/package.json +++ b/packages/fcl/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/fcl", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "description": "Flow Client Library", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -41,12 +41,12 @@ "start": "microbundle watch --define MICROBUNDLE_CURRENT_VERSION=$npm_package_version" }, "dependencies": { - "@onflow/config": "^1.0.0-alpha.0", + "@onflow/config": "^1.0.0-alpha.1", "@onflow/interaction": "0.0.11", "@onflow/rlp": "^1.0.0-alpha.0", - "@onflow/sdk": "^1.0.0-alpha.0", + "@onflow/sdk": "^1.0.0-alpha.1", "@onflow/types": "^1.0.0-alpha.0", - "@onflow/util-actor": "^1.0.0-alpha.0", + "@onflow/util-actor": "^1.0.0-alpha.1", "@onflow/util-address": "^1.0.0-alpha.0", "@onflow/util-invariant": "^1.0.0-alpha.0", "@onflow/util-template": "^1.0.0-alpha.0", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 354c10f02..1ab956a9e 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,22 @@ # @onflow/sdk +## 1.0.0-alpha.1 + +### Patch Changes + +- [#1155](https://github.com/onflow/fcl-js/pull/1155) [`700433d5`](https://github.com/onflow/fcl-js/commit/700433d50d4156183b09b13781f7f74f23882586) Thanks [@caosbad](https://github.com/caosbad)! - Export encodeTransactionPayload, encodeTransactionEnvelope, and encodeTxIdFromVoucher from sdk. + +* [#1153](https://github.com/onflow/fcl-js/pull/1153) [`6ff970df`](https://github.com/onflow/fcl-js/commit/6ff970dfc04281c86043e1cf8f5bceb633dc4186) Thanks [@lmcmz](https://github.com/lmcmz)! - Add sansPrefix for address before RLP encoding + +- [#1129](https://github.com/onflow/fcl-js/pull/1129) [`7287ff14`](https://github.com/onflow/fcl-js/commit/7287ff14d20e19270ff345cd8b274ad5c8509eb7) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Add blockId to GetTransactionStatus response + +* [#1115](https://github.com/onflow/fcl-js/pull/1115) [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - **BREAKING** Remove deprecated block builders, interaction types and send methods. + +* Updated dependencies [[`7287ff14`](https://github.com/onflow/fcl-js/commit/7287ff14d20e19270ff345cd8b274ad5c8509eb7), [`9c191c15`](https://github.com/onflow/fcl-js/commit/9c191c1520ee772b4343265a42ad0e995a92dd9a), [`de47af64`](https://github.com/onflow/fcl-js/commit/de47af647a5bdad154a2d83e2ea2260ab54f0c60), [`b2c95e77`](https://github.com/onflow/fcl-js/commit/b2c95e776a3bbfd769778e0bae767fdd69ba6143), [`828a7b2b`](https://github.com/onflow/fcl-js/commit/828a7b2b4babb6485218e67e49f3a8ba9d4488fd), [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe)]: + - @onflow/transport-http@1.0.0-alpha.1 + - @onflow/config@1.0.0-alpha.1 + - @onflow/util-actor@1.0.0-alpha.1 + ## 1.0.0-alpha.0 ### Major Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 7a6019ef1..51d4579ed 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/sdk", - "version": "1.0.0-alpha.0", + "version": "1.0.0-alpha.1", "description": "Flow SDK", "license": "Apache-2.0", "author": "Dapper Labs ", @@ -39,10 +39,10 @@ "start": "microbundle watch" }, "dependencies": { - "@onflow/config": "^1.0.0-alpha.0", + "@onflow/config": "^1.0.0-alpha.1", "@onflow/rlp": "^1.0.0-alpha.0", - "@onflow/transport-http": "^1.0.0-alpha.0", - "@onflow/util-actor": "^1.0.0-alpha.0", + "@onflow/transport-http": "^1.0.0-alpha.1", + "@onflow/util-actor": "^1.0.0-alpha.1", "@onflow/util-address": "^1.0.0-alpha.0", "@onflow/util-invariant": "^1.0.0-alpha.0", "@onflow/util-logger": "^1.0.0-alpha.0", diff --git a/packages/transport-grpc/CHANGELOG.md b/packages/transport-grpc/CHANGELOG.md index 8922f2f76..892b75252 100644 --- a/packages/transport-grpc/CHANGELOG.md +++ b/packages/transport-grpc/CHANGELOG.md @@ -1,6 +1,14 @@ # @onflow/transport-grpc -- 2022-04-05 -- **BREAKING** [@chasefleming](https://github.com/chasefleming): Remove the following from block response: +## 1.0.0-alpha.2 + +### Patch Changes + +- [#1129](https://github.com/onflow/fcl-js/pull/1129) [`7287ff14`](https://github.com/onflow/fcl-js/commit/7287ff14d20e19270ff345cd8b274ad5c8509eb7) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Add blockId to GetTransactionStatus response + +* [#1115](https://github.com/onflow/fcl-js/pull/1115) [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - **BREAKING** Remove deprecated block builders, interaction types and send methods. + +* 2022-04-05 -- **BREAKING** [@chasefleming](https://github.com/chasefleming): Remove the following from block response: - `block.collectionGuarantees.signatures` - `block.blockSeals.executionReceiptSignatures` diff --git a/packages/transport-grpc/package.json b/packages/transport-grpc/package.json index 82c31bf83..4415373c5 100644 --- a/packages/transport-grpc/package.json +++ b/packages/transport-grpc/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/transport-grpc", - "version": "1.0.0-alpha.1", + "version": "1.0.0-alpha.2", "description": "Flow SDK GRPC Transport Module", "license": "Apache-2.0", "author": "Dapper Labs ", diff --git a/packages/transport-http/CHANGELOG.md b/packages/transport-http/CHANGELOG.md index 884251dc5..a0695e72a 100644 --- a/packages/transport-http/CHANGELOG.md +++ b/packages/transport-http/CHANGELOG.md @@ -1,6 +1,18 @@ # @onflow/transport-http -- 2022-04-05 -- **BREAKING** [@chasefleming](https://github.com/chasefleming): Remove the following from block response: +## 1.0.0-alpha.1 + +### Patch Changes + +- [#1129](https://github.com/onflow/fcl-js/pull/1129) [`7287ff14`](https://github.com/onflow/fcl-js/commit/7287ff14d20e19270ff345cd8b274ad5c8509eb7) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Add blockId to GetTransactionStatus response + +* [#1138](https://github.com/onflow/fcl-js/pull/1138) [`b2c95e77`](https://github.com/onflow/fcl-js/commit/b2c95e776a3bbfd769778e0bae767fdd69ba6143) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Propagate up http error in node environment + +- [#1132](https://github.com/onflow/fcl-js/pull/1132) [`828a7b2b`](https://github.com/onflow/fcl-js/commit/828a7b2b4babb6485218e67e49f3a8ba9d4488fd) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - Expose error returned from AN through HTTPRequestError + +* [#1115](https://github.com/onflow/fcl-js/pull/1115) [`f7a985b3`](https://github.com/onflow/fcl-js/commit/f7a985b3cb64ed80c7354f97177ae7ef006530fe) Thanks [@JeffreyDoyle](https://github.com/JeffreyDoyle)! - **BREAKING** Remove deprecated block builders, interaction types and send methods. + +* 2022-04-05 -- **BREAKING** [@chasefleming](https://github.com/chasefleming): Remove the following from block response: - `block.collectionGuarantees.signatures` - `block.blockSeals.executionReceiptSignatures` diff --git a/packages/transport-http/package.json b/packages/transport-http/package.json index ac5d07cc4..762816cbb 100644 --- a/packages/transport-http/package.json +++ b/packages/transport-http/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/transport-http", - "version": "1.0.0-alpha.0", + "version": "1.0.0-alpha.1", "description": "Flow SDK HTTP Transport Module", "license": "Apache-2.0", "author": "Dapper Labs ", diff --git a/packages/util-actor/CHANGELOG.md b/packages/util-actor/CHANGELOG.md index 6a19897e8..6070eeb09 100644 --- a/packages/util-actor/CHANGELOG.md +++ b/packages/util-actor/CHANGELOG.md @@ -1,5 +1,11 @@ # @onflow/util-actor +## 1.0.0-alpha.1 + +### Patch Changes + +- [#1143](https://github.com/onflow/fcl-js/pull/1143) [`de47af64`](https://github.com/onflow/fcl-js/commit/de47af647a5bdad154a2d83e2ea2260ab54f0c60) Thanks [@gregsantos](https://github.com/gregsantos)! - Internal update to util-actor + ## 1.0.0-alpha.0 ### Major Changes diff --git a/packages/util-actor/package.json b/packages/util-actor/package.json index 1aecc33ac..19de94f1f 100644 --- a/packages/util-actor/package.json +++ b/packages/util-actor/package.json @@ -1,6 +1,6 @@ { "name": "@onflow/util-actor", - "version": "1.0.0-alpha.0", + "version": "1.0.0-alpha.1", "description": "A mechanism for forcing order/transitions of scoped async state", "license": "Apache-2.0", "author": "Dapper Labs ",