@dynamic-labs/stellar 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
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/stellar",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-rc.1",
|
|
4
4
|
"description": "A React SDK for implementing Stellar wallet web3 authentication and authorization to your website.",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs-sdk/client": "1.18.0",
|
|
22
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
22
|
+
"@dynamic-labs/sdk-api-core": "0.0.1082",
|
|
23
23
|
"@stellar/stellar-sdk": "14.4.3",
|
|
24
|
-
"@dynamic-labs/wallet-connector-core": "
|
|
25
|
-
"@dynamic-labs/assert-package-version": "
|
|
24
|
+
"@dynamic-labs/wallet-connector-core": "5.0.0-rc.1",
|
|
25
|
+
"@dynamic-labs/assert-package-version": "5.0.0-rc.1",
|
|
26
26
|
"@lobstrco/signer-extension-api": "2.0.0",
|
|
27
27
|
"@stellar/freighter-api": "6.0.1",
|
|
28
|
-
"@dynamic-labs/logger": "
|
|
29
|
-
"@dynamic-labs/types": "
|
|
30
|
-
"@dynamic-labs/utils": "
|
|
31
|
-
"@dynamic-labs/waas": "
|
|
32
|
-
"@dynamic-labs/wallet-book": "
|
|
28
|
+
"@dynamic-labs/logger": "5.0.0-rc.1",
|
|
29
|
+
"@dynamic-labs/types": "5.0.0-rc.1",
|
|
30
|
+
"@dynamic-labs/utils": "5.0.0-rc.1",
|
|
31
|
+
"@dynamic-labs/waas": "5.0.0-rc.1",
|
|
32
|
+
"@dynamic-labs/wallet-book": "5.0.0-rc.1",
|
|
33
33
|
"eventemitter3": "5.0.1"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {}
|
|
@@ -30,10 +30,8 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
|
|
|
30
30
|
relayUrl?: string | undefined;
|
|
31
31
|
baseClientKeysharesRelayApiUrl?: string | undefined;
|
|
32
32
|
dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
|
|
33
|
-
revokeSignedSession: (() => void) | undefined;
|
|
34
|
-
chainName: string;
|
|
35
|
-
* @param props - Constructor properties including walletUiUtils
|
|
36
|
-
*/
|
|
33
|
+
revokeSignedSession: ((reason?: string | undefined) => void) | undefined;
|
|
34
|
+
chainName: string;
|
|
37
35
|
authMode: "cookie" | "header";
|
|
38
36
|
logger: Logger;
|
|
39
37
|
__exportHandler: import("@dynamic-labs/waas").WaasExportHandler;
|
|
@@ -125,6 +123,21 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
|
|
|
125
123
|
accountAddress: string;
|
|
126
124
|
password?: string | undefined;
|
|
127
125
|
}): Promise<void>;
|
|
126
|
+
runBackupLifecycle({ provider, accountAddress, password, performBackup, }: {
|
|
127
|
+
provider: string;
|
|
128
|
+
accountAddress: string;
|
|
129
|
+
password?: string | undefined;
|
|
130
|
+
performBackup: (prerequisites: {
|
|
131
|
+
walletClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient;
|
|
132
|
+
resolvedPassword: string | undefined;
|
|
133
|
+
signedSessionId: string;
|
|
134
|
+
sessionPublicKey: string | undefined;
|
|
135
|
+
traceContext: {
|
|
136
|
+
traceId: string;
|
|
137
|
+
startTime: number;
|
|
138
|
+
};
|
|
139
|
+
}) => Promise<void>;
|
|
140
|
+
}): Promise<void>;
|
|
128
141
|
backupKeySharesToGoogleDrive({ accountAddress, password, googleDriveAccessToken, }: {
|
|
129
142
|
accountAddress: string;
|
|
130
143
|
password?: string | undefined;
|
|
@@ -178,9 +191,6 @@ declare const DynamicWaasStellarConnector_base: (abstract new (...args: any[]) =
|
|
|
178
191
|
getWalletRecoveryState({ accountAddress, }: {
|
|
179
192
|
accountAddress: string;
|
|
180
193
|
}): Promise<import("@dynamic-labs-wallet/browser-wallet-client").WalletRecoveryState>;
|
|
181
|
-
/**
|
|
182
|
-
* Ends the current session and clears the active account address
|
|
183
|
-
*/
|
|
184
194
|
endSession(reason?: LogoutReason | undefined): Promise<void>;
|
|
185
195
|
getActiveAccountAddress(): Promise<string | undefined>;
|
|
186
196
|
getConnectedAccounts(): Promise<string[]>;
|