Skip to content

Commit c98e2f8

Browse files
Version Packages (#2231)
* Version Packages * fix wc vsn --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jordan Ribbink <[email protected]>
1 parent ca2b277 commit c98e2f8

18 files changed

+95
-56
lines changed

.changeset/clean-otters-approve.md

-7
This file was deleted.

.changeset/rotten-cars-watch.md

-5
This file was deleted.

.changeset/ten-gorillas-play.md

-5
This file was deleted.

.changeset/tiny-vans-beg.md

-5
This file was deleted.

package-lock.json

+17-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/fcl-core/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @onflow/fcl
22

3+
## 1.15.0
4+
5+
### Minor Changes
6+
7+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Add `fcl.experimental.softFinality` config option to run all state queries (e.g. execute script, get account) against the latest soft-finality state by default
8+
9+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Add `isSealed` flag to `account` function to configure block finality state
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8)]:
14+
- @onflow/sdk@1.6.0
15+
- @onflow/transport-http@1.11.0
16+
317
## 1.14.1
418

519
### Patch Changes

packages/fcl-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/fcl-core",
3-
"version": "1.14.1",
3+
"version": "1.15.0",
44
"description": "Flow Client Library",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -52,8 +52,8 @@
5252
"@onflow/config": "1.5.1",
5353
"@onflow/interaction": "0.0.11",
5454
"@onflow/rlp": "1.2.3",
55-
"@onflow/sdk": "1.5.7",
56-
"@onflow/transport-http": "1.10.5",
55+
"@onflow/sdk": "1.6.0",
56+
"@onflow/transport-http": "1.11.0",
5757
"@onflow/types": "1.4.1",
5858
"@onflow/util-actor": "1.3.4",
5959
"@onflow/util-address": "1.2.3",

packages/fcl-react-native/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @onflow/fcl-react-native
22

3+
## 1.9.15
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8)]:
8+
- @onflow/fcl-core@1.15.0
9+
- @onflow/sdk@1.6.0
10+
311
## 1.9.14
412

513
### Patch Changes

packages/fcl-react-native/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/fcl-react-native",
3-
"version": "1.9.14",
3+
"version": "1.9.15",
44
"description": "Flow Client Library",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -48,10 +48,10 @@
4848
"dependencies": {
4949
"@babel/runtime": "^7.25.7",
5050
"@onflow/config": "1.5.1",
51-
"@onflow/fcl-core": "1.14.1",
51+
"@onflow/fcl-core": "1.15.0",
5252
"@onflow/interaction": "0.0.11",
5353
"@onflow/rlp": "1.2.3",
54-
"@onflow/sdk": "1.5.7",
54+
"@onflow/sdk": "1.6.0",
5555
"@onflow/types": "1.4.1",
5656
"@onflow/util-actor": "1.3.4",
5757
"@onflow/util-address": "1.2.3",

packages/fcl-wc/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @onflow/fcl-wc
22

3+
## 5.6.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8)]:
8+
- @onflow/fcl-core@1.15.0
9+
310
## 5.6.1
411

512
### Patch Changes

packages/fcl-wc/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/fcl-wc",
3-
"version": "5.6.1",
3+
"version": "5.6.2",
44
"description": "WalletConnect adapter for FCL",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -53,6 +53,6 @@
5353
"tailwindcss": "^3.4.14"
5454
},
5555
"peerDependencies": {
56-
"@onflow/fcl-core": "1.14.1"
56+
"@onflow/fcl-core": "1.15.0"
5757
}
5858
}

packages/fcl/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @onflow/fcl
22

3+
## 1.14.0
4+
5+
### Minor Changes
6+
7+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Add `fcl.experimental.softFinality` config option to run all state queries (e.g. execute script, get account) against the latest soft-finality state by default
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8), [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8)]:
12+
- @onflow/fcl-core@1.15.0
13+
- @onflow/sdk@1.6.0
14+
- @onflow/fcl-wc@5.6.2
15+
316
## 1.13.7
417

518
### Patch Changes

packages/fcl/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/fcl",
3-
"version": "1.13.7",
3+
"version": "1.14.0",
44
"description": "Flow Client Library",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -49,11 +49,11 @@
4949
"dependencies": {
5050
"@babel/runtime": "^7.25.7",
5151
"@onflow/config": "1.5.1",
52-
"@onflow/fcl-core": "1.14.1",
53-
"@onflow/fcl-wc": "5.6.1",
52+
"@onflow/fcl-core": "1.15.0",
53+
"@onflow/fcl-wc": "5.6.2",
5454
"@onflow/interaction": "0.0.11",
5555
"@onflow/rlp": "1.2.3",
56-
"@onflow/sdk": "1.5.7",
56+
"@onflow/sdk": "1.6.0",
5757
"@onflow/types": "1.4.1",
5858
"@onflow/util-actor": "1.3.4",
5959
"@onflow/util-address": "1.2.3",

packages/sdk/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @onflow/sdk
22

3+
## 1.6.0
4+
5+
### Minor Changes
6+
7+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Add `fcl.experimental.softFinality` config option to run all state queries (e.g. execute script, get account) against the latest soft-finality state by default
8+
9+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Add `atLatestBlock` SDK builder method to query the latest block with the given finality state
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8)]:
14+
- @onflow/transport-http@1.11.0
15+
316
## 1.5.7
417

518
### Patch Changes

packages/sdk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/sdk",
3-
"version": "1.5.7",
3+
"version": "1.6.0",
44
"description": "Flow SDK",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -43,7 +43,7 @@
4343
"@babel/runtime": "^7.25.7",
4444
"@onflow/config": "1.5.1",
4545
"@onflow/rlp": "1.2.3",
46-
"@onflow/transport-http": "1.10.5",
46+
"@onflow/transport-http": "1.11.0",
4747
"@onflow/typedefs": "1.4.1",
4848
"@onflow/util-actor": "1.3.4",
4949
"@onflow/util-address": "1.2.3",

packages/transport-grpc/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"devDependencies": {
1616
"@onflow/fcl-bundle": "1.6.0",
17-
"@onflow/sdk": "1.5.7",
17+
"@onflow/sdk": "1.6.0",
1818
"jest": "^29.7.0"
1919
},
2020
"source": "src/sdk-send-grpc.js",

packages/transport-http/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @onflow/transport-http
22

3+
## 1.11.0
4+
5+
### Minor Changes
6+
7+
- [#2218](https://github.com/onflow/fcl-js/pull/2218) [`5b76b111ddb16ed607dc218714fdc51c21fdcdc8`](https://github.com/onflow/fcl-js/commit/5b76b111ddb16ed607dc218714fdc51c21fdcdc8) Thanks [@jribbink](https://github.com/jribbink)! - Default to executing scripts and querying accounts at latest finalized block
8+
39
## 1.10.5
410

511
### Patch Changes

packages/transport-http/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onflow/transport-http",
3-
"version": "1.10.5",
3+
"version": "1.11.0",
44
"description": "Flow SDK HTTP Transport Module",
55
"license": "Apache-2.0",
66
"author": "Flow Foundation",
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"@onflow/fcl-bundle": "1.6.0",
1717
"@onflow/rlp": "1.2.3",
18-
"@onflow/sdk": "1.5.7",
18+
"@onflow/sdk": "1.6.0",
1919
"@onflow/types": "1.4.1",
2020
"jest": "^29.7.0"
2121
},

0 commit comments

Comments
 (0)