@dynamic-labs/waas-evm 4.92.4 → 5.0.0-rc.1

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,17 @@
1
1
 
2
+ ## [5.0.0-rc.1](https://github.com/dynamic-labs/dynamic-auth/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2026-07-17)
3
+
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+
7
+ * move legacy embedded wallet to waas upgrade flow to new legacy-embedded-wallet-migration package (#11841)
8
+ * drop default injection of legacy embedded wallet connectors (#11833)
9
+ * remove legacy embedded wallet support (#11979)
10
+ * throw when legacy embedded wallet is detected without migration provider (#11855)
11
+ * remove deprecated eclipse package (#11831)
12
+ * remove deprecated functions and props (#11832)
13
+
14
+
2
15
  ### [4.92.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.92.3...v4.92.4) (2026-07-16)
3
16
 
4
17
 
@@ -57,6 +70,7 @@
57
70
  * improve social OAuth error messages ([#11837](https://github.com/dynamic-labs/dynamic-auth/issues/11837)) ([8e57c06](https://github.com/dynamic-labs/dynamic-auth/commit/8e57c067c5a89111a32a12fb82e190cf6c46ad67))
58
71
  * **react-native-extension:** reject path traversal in downloadFile fileName ([#11816](https://github.com/dynamic-labs/dynamic-auth/issues/11816)) ([9367a56](https://github.com/dynamic-labs/dynamic-auth/commit/9367a56b6daa853d7f7e7f5534261bc68825b239))
59
72
  * **sdk-react-core:** display exactly the bytes signed in personal_sign preview ([#11818](https://github.com/dynamic-labs/dynamic-auth/issues/11818)) ([30b9382](https://github.com/dynamic-labs/dynamic-auth/commit/30b93829122f00060cb484aef09a03294c03f651))
73
+
60
74
 
61
75
  ### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
62
76
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.92.4";
6
+ var version = "5.0.0-rc.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.92.4";
2
+ var version = "5.0.0-rc.1";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-evm",
3
- "version": "4.92.4",
3
+ "version": "5.0.0-rc.1",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,15 +18,15 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.1073",
21
+ "@dynamic-labs/sdk-api-core": "0.0.1082",
22
22
  "viem": "^2.45.3",
23
- "@dynamic-labs/assert-package-version": "4.92.4",
24
- "@dynamic-labs/ethereum-core": "4.92.4",
25
- "@dynamic-labs/logger": "4.92.4",
26
- "@dynamic-labs/types": "4.92.4",
27
- "@dynamic-labs/utils": "4.92.4",
28
- "@dynamic-labs/waas": "4.92.4",
29
- "@dynamic-labs/wallet-connector-core": "4.92.4"
23
+ "@dynamic-labs/assert-package-version": "5.0.0-rc.1",
24
+ "@dynamic-labs/ethereum-core": "5.0.0-rc.1",
25
+ "@dynamic-labs/logger": "5.0.0-rc.1",
26
+ "@dynamic-labs/types": "5.0.0-rc.1",
27
+ "@dynamic-labs/utils": "5.0.0-rc.1",
28
+ "@dynamic-labs/waas": "5.0.0-rc.1",
29
+ "@dynamic-labs/wallet-connector-core": "5.0.0-rc.1"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -36,7 +36,7 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
36
36
  relayUrl?: string | undefined;
37
37
  baseClientKeysharesRelayApiUrl?: string | undefined;
38
38
  dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
39
- revokeSignedSession: (() => void) | undefined;
39
+ revokeSignedSession: ((reason?: string | undefined) => void) | undefined;
40
40
  chainName: string;
41
41
  authMode: "cookie" | "header";
42
42
  logger: Logger;
@@ -129,6 +129,21 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
129
129
  accountAddress: string;
130
130
  password?: string | undefined;
131
131
  }): Promise<void>;
132
+ runBackupLifecycle({ provider, accountAddress, password, performBackup, }: {
133
+ provider: string;
134
+ accountAddress: string;
135
+ password?: string | undefined;
136
+ performBackup: (prerequisites: {
137
+ walletClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient;
138
+ resolvedPassword: string | undefined;
139
+ signedSessionId: string;
140
+ sessionPublicKey: string | undefined;
141
+ traceContext: {
142
+ traceId: string;
143
+ startTime: number;
144
+ };
145
+ }) => Promise<void>;
146
+ }): Promise<void>;
132
147
  backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
133
148
  accountAddress: string;
134
149
  password?: string | undefined;