Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/chilly-kangaroos-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clean-months-like.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-mice-glow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/mighty-rocks-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ready-lands-marry.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/shaggy-candles-move.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-things-show.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-snakes-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-teams-give.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/thirty-wasps-tell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/upset-cities-start.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/upset-sides-wait.md

This file was deleted.

17 changes: 17 additions & 0 deletions packages/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @onflow/demo

## 1.1.0

### Minor Changes

- [#2592](https://github.com/onflow/fcl-js/pull/2592) [`52688c33eb41862a5daa4226e2fdfa98afab79a4`](https://github.com/onflow/fcl-js/commit/52688c33eb41862a5daa4226e2fdfa98afab79a4) Thanks [@mfbz](https://github.com/mfbz)! - Added `useCrossVmBridgeTokenFromEvm` hook for bridging fungible tokens from Flow EVM to Cadence. This hook withdraws tokens from the signer's Cadence-Owned Account (COA) in EVM and deposits them into their Cadence vault, automatically configuring the vault if needed.

- [#2663](https://github.com/onflow/fcl-js/pull/2663) [`8ea4051b2a80024ade40bd58227c81f476011299`](https://github.com/onflow/fcl-js/commit/8ea4051b2a80024ade40bd58227c81f476011299) Thanks [@mfbz](https://github.com/mfbz)! - Added improved Google Analytics tracking for hash anchors

- [#2624](https://github.com/onflow/fcl-js/pull/2624) [`7963d7aa2984e4fd0ad94182a65c8c4065f1d98c`](https://github.com/onflow/fcl-js/commit/7963d7aa2984e4fd0ad94182a65c8c4065f1d98c) Thanks [@mfbz](https://github.com/mfbz)! - Added `useCrossVmBridgeNftFromEvm` hook for bridging NFTs from Flow EVM to Cadence. This hook withdraws an NFT from the signer's Cadence-Owned Account (COA) in EVM and deposits it into their Cadence collection, automatically configuring the collection if needed.

- [#2661](https://github.com/onflow/fcl-js/pull/2661) [`e651d625af8e516d935e74d885524eca741dd9e6`](https://github.com/onflow/fcl-js/commit/e651d625af8e516d935e74d885524eca741dd9e6) Thanks [@mfbz](https://github.com/mfbz)! - Add `useFlowNftMetadata` hook to fetch NFT metadata including name, description, thumbnail, traits, and collection information from Flow blockchain accounts.

- [#2657](https://github.com/onflow/fcl-js/pull/2657) [`5a0e093c5078253266b90cfc01884f532e0bd41e`](https://github.com/onflow/fcl-js/commit/5a0e093c5078253266b90cfc01884f532e0bd41e) Thanks [@mfbz](https://github.com/mfbz)! - Updated playground adding anchoring support and full responsive mode for mobile and tablet

- [#2662](https://github.com/onflow/fcl-js/pull/2662) [`5e88787e5b387bdc7289ff84b8d3e74f355b9ea8`](https://github.com/onflow/fcl-js/commit/5e88787e5b387bdc7289ff84b8d3e74f355b9ea8) Thanks [@mfbz](https://github.com/mfbz)! - Added Google Analytics and SEO improvements
2 changes: 1 addition & 1 deletion packages/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@onflow/demo",
"private": true,
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "cross-env VITE_FLOW_NETWORK=emulator vite",
Expand Down
29 changes: 29 additions & 0 deletions packages/fcl-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @onflow/fcl

## 1.22.0

### Minor Changes

- [#2638](https://github.com/onflow/fcl-js/pull/2638) [`d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960`](https://github.com/onflow/fcl-js/commit/d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960) Thanks [@jribbink](https://github.com/jribbink)! - Adds support for signature extension data introduced by [FLIP 264](https://github.com/onflow/flips/blob/main/protocol/20250203-webauthn-credential-support.md).

Users can now include signature extension data in their transactions by returning an additional `extensionData` property in their signing functions.

```typescript
const authz = (ix: Interaction) => {
return {
addr: "0x1234567890abcdef",
keyId: 0,
signingFunction: (signable: Signable) => ({
signature: "1234",
extensionData: "1234",
}),
}
}
```

### Patch Changes

- [#2655](https://github.com/onflow/fcl-js/pull/2655) [`81d21f98ab2838885ad32217de42b85481f5595c`](https://github.com/onflow/fcl-js/commit/81d21f98ab2838885ad32217de42b85481f5595c) Thanks [@chasefleming](https://github.com/chasefleming)! - Bugfix: add `discoveryAuthnInclude` in FCL core configStore

- Updated dependencies [[`ef3fb70d694e83bc19c2bd6b6d6ea44b6df6ac23`](https://github.com/onflow/fcl-js/commit/ef3fb70d694e83bc19c2bd6b6d6ea44b6df6ac23), [`d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960`](https://github.com/onflow/fcl-js/commit/d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960)]:
- @onflow/sdk@1.11.0
- @onflow/transport-http@1.14.0

## 1.21.2

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/fcl-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl-core",
"version": "1.21.2",
"version": "1.22.0",
"description": "Core JavaScript/TypeScript library providing shared functionality for Flow blockchain interactions.",
"license": "Apache-2.0",
"author": "Flow Foundation",
Expand All @@ -20,7 +20,7 @@
},
"devDependencies": {
"@onflow/fcl-bundle": "1.7.1",
"@onflow/typedefs": "1.7.1",
"@onflow/typedefs": "1.8.0",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.13",
"@types/node": "^18.19.57",
Expand Down Expand Up @@ -52,8 +52,8 @@
"@onflow/config": "1.6.1",
"@onflow/interaction": "0.0.11",
"@onflow/rlp": "1.2.4",
"@onflow/sdk": "1.10.2",
"@onflow/transport-http": "1.13.2",
"@onflow/sdk": "1.11.0",
"@onflow/transport-http": "1.14.0",
"@onflow/types": "1.4.2",
"@onflow/util-actor": "1.3.5",
"@onflow/util-address": "1.2.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/fcl-ethereum-provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @onflow/fcl-ethereum-provider

## 0.0.10

### Patch Changes

- Updated dependencies []:
- @onflow/fcl@1.20.3
- @onflow/fcl-wc@6.0.8

## 0.0.9

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/fcl-ethereum-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl-ethereum-provider",
"version": "0.0.9",
"version": "0.0.10",
"description": "Ethereum provider for FCL-compatible wallets",
"license": "Apache-2.0",
"author": "Dapper Labs <dev@dapperlabs.com>",
Expand All @@ -15,7 +15,7 @@
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@onflow/fcl-bundle": "1.7.1",
"@onflow/typedefs": "^1.7.1",
"@onflow/typedefs": "^1.8.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
Expand All @@ -40,7 +40,7 @@
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@noble/hashes": "^1.7.1",
"@onflow/fcl-wc": "6.0.7",
"@onflow/fcl-wc": "6.0.8",
"@onflow/rlp": "^1.2.4",
"@walletconnect/ethereum-provider": "^2.20.2",
"@walletconnect/jsonrpc-http-connection": "^1.0.8",
Expand All @@ -50,6 +50,6 @@
"@walletconnect/utils": "^2.20.2"
},
"peerDependencies": {
"@onflow/fcl": "1.20.2"
"@onflow/fcl": "1.20.3"
}
}
9 changes: 9 additions & 0 deletions packages/fcl-rainbowkit-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @onflow/fcl-rainbowkit-adapter

## 0.2.6

### Patch Changes

- Updated dependencies []:
- @onflow/fcl@1.20.3
- @onflow/fcl-ethereum-provider@0.0.10
- @onflow/fcl-wagmi-adapter@0.0.10

## 0.2.5

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/fcl-rainbowkit-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl-rainbowkit-adapter",
"version": "0.2.5",
"version": "0.2.6",
"description": "Rainbowkit adapter for FCL-compatible wallets",
"license": "Apache-2.0",
"author": "Dapper Labs <dev@dapperlabs.com>",
Expand All @@ -15,7 +15,7 @@
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@onflow/fcl-bundle": "1.7.1",
"@onflow/typedefs": "^1.7.1",
"@onflow/typedefs": "^1.8.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
Expand All @@ -40,8 +40,8 @@
"@babel/runtime": "^7.25.7",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@onflow/fcl-ethereum-provider": "0.0.9",
"@onflow/fcl-wagmi-adapter": "0.0.9",
"@onflow/fcl-ethereum-provider": "0.0.10",
"@onflow/fcl-wagmi-adapter": "0.0.10",
"@onflow/rlp": "^1.2.4",
"@wagmi/core": "^2.16.3",
"mipd": "^0.0.7",
Expand All @@ -50,7 +50,7 @@
"wagmi": "^2.14.11"
},
"peerDependencies": {
"@onflow/fcl": "1.20.2",
"@onflow/fcl": "1.20.3",
"@rainbow-me/rainbowkit": "^2.2.3",
"react": "17.x || 18.x || 19.x"
}
Expand Down
8 changes: 8 additions & 0 deletions packages/fcl-react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @onflow/fcl-react-native

## 1.13.3

### Patch Changes

- Updated dependencies [[`ef3fb70d694e83bc19c2bd6b6d6ea44b6df6ac23`](https://github.com/onflow/fcl-js/commit/ef3fb70d694e83bc19c2bd6b6d6ea44b6df6ac23), [`81d21f98ab2838885ad32217de42b85481f5595c`](https://github.com/onflow/fcl-js/commit/81d21f98ab2838885ad32217de42b85481f5595c), [`d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960`](https://github.com/onflow/fcl-js/commit/d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960)]:
- @onflow/sdk@1.11.0
- @onflow/fcl-core@1.22.0

## 1.13.2

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/fcl-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl-react-native",
"version": "1.13.2",
"version": "1.13.3",
"description": "React Native JavaScript/TypeScript library for building mobile applications on the Flow blockchain.",
"license": "Apache-2.0",
"author": "Flow Foundation",
Expand All @@ -20,7 +20,7 @@
},
"devDependencies": {
"@onflow/fcl-bundle": "1.7.1",
"@onflow/typedefs": "1.7.1",
"@onflow/typedefs": "1.8.0",
"@types/estree": "^1.0.6",
"@types/node": "^18.19.57",
"eslint": "^8.57.1",
Expand Down Expand Up @@ -48,10 +48,10 @@
"dependencies": {
"@babel/runtime": "^7.25.7",
"@onflow/config": "1.6.1",
"@onflow/fcl-core": "1.21.2",
"@onflow/fcl-core": "1.22.0",
"@onflow/interaction": "0.0.11",
"@onflow/rlp": "1.2.4",
"@onflow/sdk": "1.10.2",
"@onflow/sdk": "1.11.0",
"@onflow/types": "1.4.2",
"@onflow/util-actor": "1.3.5",
"@onflow/util-address": "1.2.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/fcl-wagmi-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @onflow/fcl-wagmi-adapter

## 0.0.10

### Patch Changes

- Updated dependencies []:
- @onflow/fcl@1.20.3
- @onflow/fcl-ethereum-provider@0.0.10

## 0.0.9

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/fcl-wagmi-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl-wagmi-adapter",
"version": "0.0.9",
"version": "0.0.10",
"description": "Wagmi adapter for FCL-compatible wallets",
"license": "Apache-2.0",
"author": "Dapper Labs <dev@dapperlabs.com>",
Expand All @@ -15,7 +15,7 @@
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@onflow/fcl-bundle": "1.7.1",
"@onflow/typedefs": "^1.7.1",
"@onflow/typedefs": "^1.8.0",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
Expand All @@ -39,12 +39,12 @@
"@babel/runtime": "^7.25.7",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@onflow/fcl-ethereum-provider": "0.0.9",
"@onflow/fcl-ethereum-provider": "0.0.10",
"@onflow/rlp": "^1.2.4",
"viem": "^2.22.21"
},
"peerDependencies": {
"@onflow/fcl": "1.20.2",
"@onflow/fcl": "1.20.3",
"@wagmi/core": "^2.16.3"
}
}
7 changes: 7 additions & 0 deletions packages/fcl-wc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @onflow/fcl-wc

## 6.0.8

### Patch Changes

- Updated dependencies [[`81d21f98ab2838885ad32217de42b85481f5595c`](https://github.com/onflow/fcl-js/commit/81d21f98ab2838885ad32217de42b85481f5595c), [`d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960`](https://github.com/onflow/fcl-js/commit/d9d994cdaca8fe82cce0a3bcf48b5b4f7d3dc960)]:
- @onflow/fcl-core@1.22.0

## 6.0.7

### Patch Changes
Expand Down
Loading
Loading