@dynamic-labs/waas-sui 4.92.0 → 4.92.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 +11 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +10 -10
- package/src/connector/DynamicWaasSuiConnector.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.92.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.92.0...v4.92.1) (2026-07-09)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **ethereum:** fire in-app-browser redirect on sign for injected EVM wallets that use in-app-browser experience ([#11888](https://github.com/dynamic-labs/dynamic-auth/issues/11888)) ([5116d91](https://github.com/dynamic-labs/dynamic-auth/commit/5116d91ab2c71000a490d72c5d278549d4d8ae9a))
|
|
8
|
+
* **sdk-react-core:** show clear message for Phantom redirect signing failures (v4 backport) ([#11886](https://github.com/dynamic-labs/dynamic-auth/issues/11886)) ([60ac897](https://github.com/dynamic-labs/dynamic-auth/commit/60ac897ba81f7758ccd7a05f97b619785e1f50a7))
|
|
9
|
+
* **social:** use redirect strategy for step-up OAuth on mobile [V4 backport] ([#11881](https://github.com/dynamic-labs/dynamic-auth/issues/11881)) ([42a202e](https://github.com/dynamic-labs/dynamic-auth/commit/42a202e6255de8db73df02eff37c0b10b24fef1a))
|
|
10
|
+
* **solana:** fire in-app-browser redirect on sign and wallet switch ([#11871](https://github.com/dynamic-labs/dynamic-auth/issues/11871)) ([4e2d6b7](https://github.com/dynamic-labs/dynamic-auth/commit/4e2d6b7ac8fdef5bf7c62b8a726ecaef1c6210ec))
|
|
11
|
+
* **solana:** resolve Phantom/Backpack provider collision and Backpack >=0.10.x connect hangs ([#11856](https://github.com/dynamic-labs/dynamic-auth/issues/11856)) ([#11882](https://github.com/dynamic-labs/dynamic-auth/issues/11882)) ([5784aff](https://github.com/dynamic-labs/dynamic-auth/commit/5784aff9641bbc85445fb466f3ab1d6a14331e73))
|
|
12
|
+
|
|
2
13
|
## [4.92.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.6...v4.92.0) (2026-07-08)
|
|
3
14
|
|
|
4
15
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/waas-sui",
|
|
3
|
-
"version": "4.92.
|
|
3
|
+
"version": "4.92.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",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"@dynamic-labs-wallet/forward-mpc-client": "0.12.0",
|
|
25
25
|
"@mysten/sui": "1.45.2",
|
|
26
26
|
"@mysten/wallet-standard": "0.19.9",
|
|
27
|
-
"@dynamic-labs/assert-package-version": "4.92.
|
|
28
|
-
"@dynamic-labs/logger": "4.92.
|
|
29
|
-
"@dynamic-labs/rpc-providers": "4.92.
|
|
30
|
-
"@dynamic-labs/sui-core": "4.92.
|
|
31
|
-
"@dynamic-labs/types": "4.92.
|
|
32
|
-
"@dynamic-labs/utils": "4.92.
|
|
33
|
-
"@dynamic-labs/waas": "4.92.
|
|
34
|
-
"@dynamic-labs/wallet-book": "4.92.
|
|
35
|
-
"@dynamic-labs/wallet-connector-core": "4.92.
|
|
27
|
+
"@dynamic-labs/assert-package-version": "4.92.1",
|
|
28
|
+
"@dynamic-labs/logger": "4.92.1",
|
|
29
|
+
"@dynamic-labs/rpc-providers": "4.92.1",
|
|
30
|
+
"@dynamic-labs/sui-core": "4.92.1",
|
|
31
|
+
"@dynamic-labs/types": "4.92.1",
|
|
32
|
+
"@dynamic-labs/utils": "4.92.1",
|
|
33
|
+
"@dynamic-labs/waas": "4.92.1",
|
|
34
|
+
"@dynamic-labs/wallet-book": "4.92.1",
|
|
35
|
+
"@dynamic-labs/wallet-connector-core": "4.92.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {}
|
|
38
38
|
}
|
|
@@ -162,8 +162,9 @@ declare const DynamicWaasSuiConnector_base: (abstract new (...args: any[]) => {
|
|
|
162
162
|
accountAddress: string;
|
|
163
163
|
newPassword: string;
|
|
164
164
|
}): Promise<void>;
|
|
165
|
-
signRawMessage({ accountAddress, message, password, }: {
|
|
165
|
+
signRawMessage({ accountAddress, context, message, password, }: {
|
|
166
166
|
accountAddress: string;
|
|
167
|
+
context?: import("@dynamic-labs/sdk-api-core").SignMessageContext | undefined;
|
|
167
168
|
message: string;
|
|
168
169
|
password?: string | undefined;
|
|
169
170
|
}): Promise<string>;
|