Skip to content

Commit 72c0e71

Browse files
github-actions[bot]justinbarry
authored andcommitted
Version Packages
1 parent a92fddd commit 72c0e71

35 files changed

+192
-88
lines changed

.changeset/big-tips-itch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/happy-cherries-talk.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nasty-actors-sing.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/rotten-news-scream.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/tidy-keys-heal.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/config/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @onflow/config
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
9+
- Updated dependencies [[`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4)]:
10+
- @onflow/util-actor@1.0.1
11+
312
## 1.0.0
413

514
### Patch Changes

packages/config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/config",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Config for FCL-JS",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -34,6 +34,6 @@
3434
"start": "microbundle watch --no-compress"
3535
},
3636
"dependencies": {
37-
"@onflow/util-actor": "^1.0.0"
37+
"@onflow/util-actor": "^1.0.1"
3838
}
3939
}

packages/fcl/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @onflow/fcl
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1181](https://github.com/onflow/fcl-js/pull/1181) [`25e87101`](https://github.com/onflow/fcl-js/commit/25e8710162a105771d1629eced6270ce37718a1b) Thanks [@jribbink](https://github.com/jribbink)! - Added exception handling in transaction subscriber polling to handle network disconnect/server error events
8+
9+
* [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
10+
11+
* Updated dependencies [[`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4)]:
12+
- @onflow/config@1.0.1
13+
- @onflow/rlp@1.0.1
14+
- @onflow/sdk@1.0.1
15+
- @onflow/types@1.0.1
16+
- @onflow/util-actor@1.0.1
17+
- @onflow/util-address@1.0.1
18+
- @onflow/util-invariant@1.0.1
19+
- @onflow/util-template@1.0.1
20+
- @onflow/util-uid@1.0.1
21+
322
## 1.0.0
423

524
### Major Changes

packages/fcl/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/fcl",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Flow Client Library",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -41,15 +41,15 @@
4141
"start": "microbundle watch --define MICROBUNDLE_CURRENT_VERSION=$npm_package_version --no-compress"
4242
},
4343
"dependencies": {
44-
"@onflow/config": "^1.0.0",
44+
"@onflow/config": "^1.0.1",
4545
"@onflow/interaction": "0.0.11",
46-
"@onflow/rlp": "^1.0.0",
47-
"@onflow/sdk": "^1.0.0",
48-
"@onflow/types": "^1.0.0",
49-
"@onflow/util-actor": "^1.0.0",
50-
"@onflow/util-address": "^1.0.0",
51-
"@onflow/util-invariant": "^1.0.0",
52-
"@onflow/util-template": "^1.0.0",
53-
"@onflow/util-uid": "^1.0.0"
46+
"@onflow/rlp": "^1.0.1",
47+
"@onflow/sdk": "^1.0.1",
48+
"@onflow/types": "^1.0.1",
49+
"@onflow/util-actor": "^1.0.1",
50+
"@onflow/util-address": "^1.0.1",
51+
"@onflow/util-invariant": "^1.0.1",
52+
"@onflow/util-template": "^1.0.1",
53+
"@onflow/util-uid": "^1.0.1"
5454
}
5555
}

packages/rlp/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @onflow/rlp
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
39
## 1.0.0
410

511
### Major Changes

packages/rlp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/rlp",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Port of ethereumjs/rlp",
55
"license": "MPL-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",

packages/sdk/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @onflow/sdk
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
9+
- Updated dependencies [[`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4), [`f348803d`](https://github.com/onflow/fcl-js/commit/f348803dbaaebad6d7081248b41f5582d5627d86)]:
10+
- @onflow/config@1.0.1
11+
- @onflow/rlp@1.0.1
12+
- @onflow/transport-http@1.1.0
13+
- @onflow/util-actor@1.0.1
14+
- @onflow/util-address@1.0.1
15+
- @onflow/util-invariant@1.0.1
16+
- @onflow/util-logger@1.0.1
17+
- @onflow/util-template@1.0.1
18+
319
## 1.0.0
420

521
### Major Changes

packages/sdk/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/sdk",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Flow SDK",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -39,14 +39,14 @@
3939
"start": "microbundle --no-compress --define MICROBUNDLE_CURRENT_VERSION=$npm_package_version watch"
4040
},
4141
"dependencies": {
42-
"@onflow/config": "^1.0.0",
43-
"@onflow/rlp": "^1.0.0",
44-
"@onflow/transport-http": "^1.0.0",
45-
"@onflow/util-actor": "^1.0.0",
46-
"@onflow/util-address": "^1.0.0",
47-
"@onflow/util-invariant": "^1.0.0",
48-
"@onflow/util-logger": "^1.0.0",
49-
"@onflow/util-template": "^1.0.0",
42+
"@onflow/config": "^1.0.1",
43+
"@onflow/rlp": "^1.0.1",
44+
"@onflow/transport-http": "^1.1.0",
45+
"@onflow/util-actor": "^1.0.1",
46+
"@onflow/util-address": "^1.0.1",
47+
"@onflow/util-invariant": "^1.0.1",
48+
"@onflow/util-logger": "^1.0.1",
49+
"@onflow/util-template": "^1.0.1",
5050
"deepmerge": "^4.2.2",
5151
"sha3": "^2.1.4"
5252
}

packages/transport-grpc/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @onflow/transport-grpc
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
9+
- Updated dependencies [[`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4)]:
10+
- @onflow/rlp@1.0.1
11+
- @onflow/util-address@1.0.1
12+
- @onflow/util-invariant@1.0.1
13+
- @onflow/util-template@1.0.1
14+
315
## 1.0.0
416

517
### Major Changes

packages/transport-grpc/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/transport-grpc",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Flow SDK GRPC Transport Module",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -38,9 +38,9 @@
3838
"@improbable-eng/grpc-web": "^0.14.0",
3939
"@improbable-eng/grpc-web-node-http-transport": "^0.14.0",
4040
"@onflow/protobuf": "^1.0.0",
41-
"@onflow/rlp": "^1.0.0",
42-
"@onflow/util-address": "^1.0.0",
43-
"@onflow/util-invariant": "^1.0.0",
44-
"@onflow/util-template": "^1.0.0"
41+
"@onflow/rlp": "^1.0.1",
42+
"@onflow/util-address": "^1.0.1",
43+
"@onflow/util-invariant": "^1.0.1",
44+
"@onflow/util-template": "^1.0.1"
4545
}
4646
}

packages/transport-http/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @onflow/transport-http
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- [#1180](https://github.com/onflow/fcl-js/pull/1180) [`f348803d`](https://github.com/onflow/fcl-js/commit/f348803dbaaebad6d7081248b41f5582d5627d86) Thanks [@jribbink](https://github.com/jribbink)! - Added automatic retries for failed requests with 500,502,503,504 status code
8+
9+
### Patch Changes
10+
11+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
12+
13+
- Updated dependencies [[`48d2b11e`](https://github.com/onflow/fcl-js/commit/48d2b11e3c88fac8f503283fd080d161b38460a3), [`67bc4f61`](https://github.com/onflow/fcl-js/commit/67bc4f612193c6e703acfb09fc756a28c9c4f28a), [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4)]:
14+
- @onflow/util-node-http-modules@1.0.1
15+
- @onflow/util-address@1.0.1
16+
- @onflow/util-invariant@1.0.1
17+
- @onflow/util-template@1.0.1
18+
319
## 1.0.0
420

521
### Major Changes

packages/transport-http/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/transport-http",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Flow SDK HTTP Transport Module",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -18,8 +18,8 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"@onflow/rlp": "^1.0.0",
22-
"@onflow/types": "^1.0.0",
21+
"@onflow/rlp": "^1.0.1",
22+
"@onflow/types": "^1.0.1",
2323
"jest": "^27.0.6",
2424
"jest-esm-transformer": "1.0.0",
2525
"microbundle": "^0.13.3"
@@ -37,9 +37,9 @@
3737
"start": "microbundle watch --no-compress"
3838
},
3939
"dependencies": {
40-
"@onflow/util-address": "^1.0.0",
41-
"@onflow/util-invariant": "^1.0.0",
42-
"@onflow/util-template": "^1.0.0",
43-
"@onflow/util-node-http-modules": "^1.0.0"
40+
"@onflow/util-address": "^1.0.1",
41+
"@onflow/util-invariant": "^1.0.1",
42+
"@onflow/util-template": "^1.0.1",
43+
"@onflow/util-node-http-modules": "^1.0.1"
4444
}
4545
}

packages/types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @onflow/types
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
39
## 1.0.0
410

511
### Major Changes

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/types",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Utilities to transform javascript values into Cadence understandable values",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",

packages/util-actor/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @onflow/util-actor
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
39
## 1.0.0
410

511
### Major Changes

packages/util-actor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/util-actor",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A mechanism for forcing order/transitions of scoped async state",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",

packages/util-address/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @onflow/util-address
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
39
## 1.0.0
410

511
### Major Changes

packages/util-address/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/util-address",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Flow JS SDK Util -- Address",
55
"license": "Apache-2.0",
66
"author": "Dapper Labs <dev@dapperlabs.com>",
@@ -18,7 +18,7 @@
1818
}
1919
},
2020
"devDependencies": {
21-
"@onflow/types": "^1.0.0",
21+
"@onflow/types": "^1.0.1",
2222
"jest": "26.4.2",
2323
"jest-esm-transformer": "1.0.0",
2424
"microbundle": "0.12.4"

packages/util-encode-key/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @onflow/util-encode-key
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#1178](https://github.com/onflow/fcl-js/pull/1178) [`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4) Thanks [@jribbink](https://github.com/jribbink)! - Add --no-compress to watch scripts for easier debugging
8+
9+
- Updated dependencies [[`9e7e4cfb`](https://github.com/onflow/fcl-js/commit/9e7e4cfbc026765019653b0e891e63a2d789ceb4)]:
10+
- @onflow/rlp@1.0.1
11+
- @onflow/util-invariant@1.0.1
12+
313
## 1.0.0
414

515
### Major Changes

0 commit comments

Comments
 (0)