Skip to content

Commit

Permalink
chore: version packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 19, 2024
1 parent 15bfe49 commit 6e260ab
Show file tree
Hide file tree
Showing 41 changed files with 789 additions and 109 deletions.
22 changes: 0 additions & 22 deletions .changeset/little-ghosts-remember.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/small-penguins-pay.md

This file was deleted.

45 changes: 0 additions & 45 deletions .changeset/thirty-pumpkins-tickle.md

This file was deleted.

38 changes: 38 additions & 0 deletions packages/adapters/bitcoin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# @reown/appkit-adapter-bitcoin

## 1.6.2

### Patch Changes

- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set

- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.

Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.

**Example usage**

```ts
const wagmiAdapter = new WagmiAdapter({
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID',
pendingTransactionsFilter: {
enable: true,
pollingInterval: 15_000
}
})

createAppKit({
adapters: [wagmiAdapter],
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID'
})
```

- Updated dependencies [[`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f), [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867), [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72)]:
- @reown/appkit@1.6.2
- @reown/appkit-common@1.6.2
- @reown/appkit-core@1.6.2

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/bitcoin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-bitcoin",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"main": "./dist/esm/exports/index.js",
"types": "./dist/types/exports/index.d.ts",
Expand Down
45 changes: 45 additions & 0 deletions packages/adapters/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @reown/appkit-adapter-ethers

## 1.6.2

### Patch Changes

- [#3491](https://github.com/reown-com/appkit/pull/3491) [`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where browser tab option was showing for all wallets

- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set

- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.

Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.

**Example usage**

```ts
const wagmiAdapter = new WagmiAdapter({
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID',
pendingTransactionsFilter: {
enable: true,
pollingInterval: 15_000
}
})

createAppKit({
adapters: [wagmiAdapter],
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID'
})
```

- Updated dependencies [[`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f), [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867), [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72)]:
- @reown/appkit-scaffold-ui@1.6.2
- @reown/appkit@1.6.2
- @reown/appkit-utils@1.6.2
- @reown/appkit-common@1.6.2
- @reown/appkit-core@1.6.2
- @reown/appkit-polyfills@1.6.2
- @reown/appkit-ui@1.6.2
- @reown/appkit-wallet@1.6.2

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
Expand Down
45 changes: 45 additions & 0 deletions packages/adapters/ethers5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @reown/appkit-adapter-ethers5

## 1.6.2

### Patch Changes

- [#3491](https://github.com/reown-com/appkit/pull/3491) [`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where browser tab option was showing for all wallets

- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set

- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.

Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.

**Example usage**

```ts
const wagmiAdapter = new WagmiAdapter({
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID',
pendingTransactionsFilter: {
enable: true,
pollingInterval: 15_000
}
})

createAppKit({
adapters: [wagmiAdapter],
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID'
})
```

- Updated dependencies [[`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f), [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867), [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72)]:
- @reown/appkit-scaffold-ui@1.6.2
- @reown/appkit@1.6.2
- @reown/appkit-utils@1.6.2
- @reown/appkit-common@1.6.2
- @reown/appkit-core@1.6.2
- @reown/appkit-polyfills@1.6.2
- @reown/appkit-ui@1.6.2
- @reown/appkit-wallet@1.6.2

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/ethers5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-ethers5",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
Expand Down
45 changes: 45 additions & 0 deletions packages/adapters/solana/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @reown/appkit-adapter-solana

## 1.6.2

### Patch Changes

- [#3491](https://github.com/reown-com/appkit/pull/3491) [`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where browser tab option was showing for all wallets

- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set

- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.

Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.

**Example usage**

```ts
const wagmiAdapter = new WagmiAdapter({
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID',
pendingTransactionsFilter: {
enable: true,
pollingInterval: 15_000
}
})

createAppKit({
adapters: [wagmiAdapter],
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID'
})
```

- Updated dependencies [[`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f), [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867), [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72)]:
- @reown/appkit-scaffold-ui@1.6.2
- @reown/appkit@1.6.2
- @reown/appkit-utils@1.6.2
- @reown/appkit-common@1.6.2
- @reown/appkit-core@1.6.2
- @reown/appkit-polyfills@1.6.2
- @reown/appkit-ui@1.6.2
- @reown/appkit-wallet@1.6.2

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/solana/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-solana",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
Expand Down
45 changes: 45 additions & 0 deletions packages/adapters/wagmi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @reown/appkit-adapter-wagmi

## 1.6.2

### Patch Changes

- [#3491](https://github.com/reown-com/appkit/pull/3491) [`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where browser tab option was showing for all wallets

- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set

- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.

Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.

**Example usage**

```ts
const wagmiAdapter = new WagmiAdapter({
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID',
pendingTransactionsFilter: {
enable: true,
pollingInterval: 15_000
}
})

createAppKit({
adapters: [wagmiAdapter],
networks: [
/* Your Networks */
],
projectId: 'YOUR_PROJECT_ID'
})
```

- Updated dependencies [[`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f), [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867), [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72)]:
- @reown/appkit-scaffold-ui@1.6.2
- @reown/appkit@1.6.2
- @reown/appkit-utils@1.6.2
- @reown/appkit-common@1.6.2
- @reown/appkit-core@1.6.2
- @reown/appkit-polyfills@1.6.2
- @reown/appkit-ui@1.6.2
- @reown/appkit-wallet@1.6.2

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/wagmi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reown/appkit-adapter-wagmi",
"version": "1.6.1",
"version": "1.6.2",
"type": "module",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
Expand Down
Loading

0 comments on commit 6e260ab

Please sign in to comment.