@dynamic-labs/webview-messages 4.88.3 → 4.88.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,30 @@
1
1
 
2
+ ### [4.88.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.88.4...v4.88.5) (2026-06-11)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **fix(webview):** fix issue where stepupauth is enabled and after it's completed the export private key window doesn't show up automatically
8
+ * **fix(global-wallet):** correctly sign ethereum messages ([#11548](https://github.com/dynamic-labs/dynamic-auth/issues/11548))
9
+
10
+
11
+ ### [4.88.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.88.3...v4.88.4) (2026-06-10)
12
+
13
+
14
+ ### Features
15
+
16
+ * **wagmi-connector:** instrument ConnectorAlreadyConnectedError to quantify SyncDynamicWagmi race DYNT-549 ([#11513](https://github.com/dynamic-labs/dynamic-auth/issues/11513)) ([00a3278](https://github.com/dynamic-labs/dynamic-auth/commit/00a3278197fc8d8442e64af7373fc4f20e4e5a69)), closes [#11131](https://github.com/dynamic-labs/dynamic-auth/issues/11131) [#11496](https://github.com/dynamic-labs/dynamic-auth/issues/11496)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **ci:** show unreleased changes in bump-version release review summary ([#11484](https://github.com/dynamic-labs/dynamic-auth/issues/11484)) ([3e1c3d1](https://github.com/dynamic-labs/dynamic-auth/commit/3e1c3d12d66e0d94cb430d66ccfbffe3abdbd6ba))
22
+ * **release:** surface perf and revert commits in generated changelog ([#11507](https://github.com/dynamic-labs/dynamic-auth/issues/11507)) ([8efa0d9](https://github.com/dynamic-labs/dynamic-auth/commit/8efa0d95ab320480fcaf970a24bba35892b0fc99))
23
+ * remediate critical shell-quote vulnerability (CVE-2026-9277) + bump @dynamic-labs-sdk/client to 1.8.1 ([#11527](https://github.com/dynamic-labs/dynamic-auth/issues/11527)) ([c056df6](https://github.com/dynamic-labs/dynamic-auth/commit/c056df653f99992c9b333078ba13651e61826ab5))
24
+ * remediate high-severity vite vulnerability (CVE-2024-52011) ([#11509](https://github.com/dynamic-labs/dynamic-auth/issues/11509)) ([7c43b4e](https://github.com/dynamic-labs/dynamic-auth/commit/7c43b4e736c68da7de8789f1d44964778306abbf))
25
+ * support plain EOA transactions for 7702 smart wallets via viem extension ([#11525](https://github.com/dynamic-labs/dynamic-auth/issues/11525)) ([ce8542f](https://github.com/dynamic-labs/dynamic-auth/commit/ce8542fa40b4227759bcf2ca243b4bc313018b50))
26
+ * **wagmi-connector:** propagate external wagmi disconnect to Dynamic via handleLogOut ([#11496](https://github.com/dynamic-labs/dynamic-auth/issues/11496)) ([1b19565](https://github.com/dynamic-labs/dynamic-auth/commit/1b195657b9210da233480dda143fb92b39998962))
27
+
2
28
  ### [4.88.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.88.2...v4.88.3) (2026-06-09)
3
29
 
4
30
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.88.3";
6
+ var version = "4.88.5";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.88.3";
2
+ var version = "4.88.5";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/webview-messages",
3
- "version": "4.88.3",
3
+ "version": "4.88.5",
4
4
  "description": "A package to define messages for the webview-controller",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  "./package.json": "./package.json"
19
19
  },
20
20
  "dependencies": {
21
- "@dynamic-labs/ethereum-gasless-core": "4.88.3",
21
+ "@dynamic-labs/ethereum-gasless-core": "4.88.5",
22
22
  "@dynamic-labs/sdk-api-core": "0.0.1015",
23
- "@dynamic-labs-sdk/client": "1.7.0",
24
- "@dynamic-labs/assert-package-version": "4.88.3",
25
- "@dynamic-labs/locale": "4.88.3",
26
- "@dynamic-labs/logger": "4.88.3",
27
- "@dynamic-labs/message-transport": "4.88.3",
28
- "@dynamic-labs/types": "4.88.3",
29
- "@dynamic-labs/wallet-connector-core": "4.88.3",
30
- "@dynamic-labs/webauthn": "4.88.3"
23
+ "@dynamic-labs-sdk/client": "1.8.2",
24
+ "@dynamic-labs/assert-package-version": "4.88.5",
25
+ "@dynamic-labs/locale": "4.88.5",
26
+ "@dynamic-labs/logger": "4.88.5",
27
+ "@dynamic-labs/message-transport": "4.88.5",
28
+ "@dynamic-labs/types": "4.88.5",
29
+ "@dynamic-labs/wallet-connector-core": "4.88.5",
30
+ "@dynamic-labs/webauthn": "4.88.5"
31
31
  },
32
32
  "peerDependencies": {}
33
33
  }
@@ -2,6 +2,12 @@ export type EthRequestWithAddressParams = {
2
2
  method: string;
3
3
  params: readonly unknown[];
4
4
  address: string;
5
+ /**
6
+ * When the address resolves to a smart wallet (e.g. a ZeroDev EIP-7702
7
+ * wallet sharing the EOA address), route the request to the underlying
8
+ * EOA wallet instead.
9
+ */
10
+ useEoaWallet?: boolean;
5
11
  };
6
12
  export type EthRequestWithChainIdParams = {
7
13
  method: string;