Skip to content

Commit 07fcec0

Browse files
Version Packages (#8888)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ac6a123 commit 07fcec0

12 files changed

Lines changed: 37 additions & 26 deletions

.changeset/autoconnect-redirect-state.md

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

.changeset/eip1193-remove-listener-noop.md

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

.changeset/fix-injected-wallet-transient-disconnect.md

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

.changeset/siwe-fail-closed-invalid-dates.md

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

apps/wagmi-demo/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# wagmi-inapp
22

3+
## 0.0.59
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`133e57d`](https://github.com/thirdweb-dev/js/commit/133e57d373ffbbe3531c9c12023540dcb8ad372f), [`e4fba08`](https://github.com/thirdweb-dev/js/commit/e4fba08e2546511f3c4d1f03c49893b0b643aa28), [`8c521aa`](https://github.com/thirdweb-dev/js/commit/8c521aa06aca02a57200f5941e10d06c8cbaf9fb), [`f411769`](https://github.com/thirdweb-dev/js/commit/f411769e2a0c82ad636a41ba650b72222df29006)]:
8+
- thirdweb@5.121.0
9+
- @thirdweb-dev/wagmi-adapter@0.2.214
10+
311
## 0.0.58
412

513
### Patch Changes

apps/wagmi-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "wagmi-inapp",
33
"private": true,
4-
"version": "0.0.58",
4+
"version": "0.0.59",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

packages/nebula/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @thirdweb-dev/nebula
22

3+
## 0.2.117
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`133e57d`](https://github.com/thirdweb-dev/js/commit/133e57d373ffbbe3531c9c12023540dcb8ad372f), [`e4fba08`](https://github.com/thirdweb-dev/js/commit/e4fba08e2546511f3c4d1f03c49893b0b643aa28), [`8c521aa`](https://github.com/thirdweb-dev/js/commit/8c521aa06aca02a57200f5941e10d06c8cbaf9fb), [`f411769`](https://github.com/thirdweb-dev/js/commit/f411769e2a0c82ad636a41ba650b72222df29006)]:
8+
- thirdweb@5.121.0
9+
310
## 0.2.116
411

512
### Patch Changes

packages/nebula/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"type": "module",
5858
"types": "./dist/types/exports/thirdweb.d.ts",
5959
"typings": "./dist/types/exports/thirdweb.d.ts",
60-
"version": "0.2.116"
60+
"version": "0.2.117"
6161
}

packages/thirdweb/CHANGELOG.md

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

3+
## 5.121.0
4+
5+
### Minor Changes
6+
7+
- [#8887](https://github.com/thirdweb-dev/js/pull/8887) [`133e57d`](https://github.com/thirdweb-dev/js/commit/133e57d373ffbbe3531c9c12023540dcb8ad372f) Thanks [@0xFirekeeper](https://github.com/0xFirekeeper)! - Redirect-based in-app wallet logins now include and verify a one-time `state` value before `AutoConnect` consumes auth material returned in the URL, tying the returned token back to a flow the page actually started. Added a `readUrlToken` option to `AutoConnect` / `useAutoConnect` to opt out of reading wallet auth material from the URL entirely.
8+
9+
### Patch Changes
10+
11+
- [#8886](https://github.com/thirdweb-dev/js/pull/8886) [`e4fba08`](https://github.com/thirdweb-dev/js/commit/e4fba08e2546511f3c4d1f03c49893b0b643aa28) Thanks [@blockgroot](https://github.com/blockgroot)! - Fix: `EIP1193.toProvider()`'s `removeListener` is no longer a no-op. Previously, `removeListener` discarded the unsubscribe function returned by `wallet.subscribe()`, so listeners registered via `provider.on(...)` (e.g. `accountsChanged`, `chainChanged`, `disconnect`) could never actually be detached — they kept firing after callers (such as wagmi connectors) believed they had unsubscribed. `removeListener` now tracks and invokes the correct unsubscribe function per `(event, listener)` pair.
12+
13+
- [#8807](https://github.com/thirdweb-dev/js/pull/8807) [`8c521aa`](https://github.com/thirdweb-dev/js/commit/8c521aa06aca02a57200f5941e10d06c8cbaf9fb) Thanks [@Yash094](https://github.com/Yash094)! - Fix: injected wallets (e.g. MetaMask) no longer fire a spurious `"disconnect"` event for transient EIP-1193 error code 1013 ("disconnected, will reconnect"). Previously, MetaMask's temporary disconnect during chain changes or RPC hiccups would trigger the thirdweb `disconnect` subscriber and tear down wallet state, causing unexpected logouts. The `onDisconnect` handler now ignores code-1013 errors and lets MetaMask reconnect automatically.
14+
15+
Additionally, the `WalletEmitterEvents["disconnect"]` type is updated from `never` to `WalletDisconnectError | undefined`, so `disconnect` subscribers can inspect the underlying EIP-1193 error code and message when they need to distinguish disconnect causes.
16+
17+
- [#8875](https://github.com/thirdweb-dev/js/pull/8875) [`f411769`](https://github.com/thirdweb-dev/js/commit/f411769e2a0c82ad636a41ba650b72222df29006) Thanks [@SashaMIT](https://github.com/SashaMIT)! - Reject SIWE login payloads with an unparseable Not Before or Expiration Time instead of skipping the time-bound checks.
18+
319
## 5.120.1
420

521
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,5 +431,5 @@
431431
}
432432
},
433433
"typings": "./dist/types/exports/thirdweb.d.ts",
434-
"version": "5.120.1"
434+
"version": "5.121.0"
435435
}

0 commit comments

Comments
 (0)