@dynamic-labs/web-extension 4.0.0-alpha.51 → 4.0.0

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,84 @@
1
1
 
2
+ ## [4.0.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.52...v4.0.0) (2025-01-09)
3
+
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+ See [upgrade guide](https://docs.dynamic.xyz/react-sdk/upgrade/v4) for more details.
7
+ * change openFunding to openExternalFunding (#7684)
8
+ * stop exposing authToken and minAuthToken from dynamic context (#7629)
9
+ * Removes the `eventsCallbacks` prop which has been deprecated for a while. Use the `events` prop instead.
10
+ * remove usages of findWalletBookWallet when possible (#7455)
11
+ * remove `supportsSatsConnect` helper (#7453)
12
+ * moved `getWalletLinks` helper from `@dynamic-labs/wallet-book` to `@dynamic-labs/wallet-connector-core` (#7416
13
+ * change openFunding to openExternalFunding (#7684)
14
+ * upgrade zerodev to 5.4.x (#7670)
15
+
16
+ ### Features
17
+ * Support for multi-chain AA (#6829)
18
+ * Add account abstraction module to client (#7002)
19
+ * Add support for wallet events in RN (#7061)
20
+ * Add zerodev extension for react native (#7028)
21
+ * Global connectivity disconnect (#7008)
22
+ * Add isInstalledOnBrowser prop to wallet options (#6976)
23
+ * Add iconVariant prop to DynamicBridgeWidget (#6915)
24
+ * Allow creating extra embedded wallets in react-native (#6923)
25
+ * Add hide method for auth and userProfile UI modules (#6928)
26
+ * Blockaid website scanning for global connectivity (#6874)
27
+ * Add login with TikTok (#7360)
28
+ * New transaction modal and UI for sign/signAll (#7296)
29
+ * Allow adding connection configuration for Solana connectors (#7354)
30
+ * Allow deletion of embedded wallets (#7170)
31
+ * Add support for eclipse (#7255)
32
+ * Add passkey and social to web-extension (#7096, #7106)
33
+ * Add support for compass and leap wallets
34
+ * Add support for epicgames social (#7220)
35
+ * Add support for xverse account change event (#7114)
36
+ * Show wallet names when unknown (#7478)
37
+ * AA blockaid simulations (#7583)
38
+ * Add ethereum createConnector function (#7607)
39
+ * Add fundWithExternalWallet method to useFunding (#7688)
40
+ * Global wallet: add network switch to ethereum wallets (#7686)
41
+ * Global wallet: support Solana (#7732)
42
+ * Global wallet: support Solana sign message (#7739)
43
+
44
+ ### Bug Fixes
45
+ * Create v2 embedded wallet experience in manual mode (#6887)
46
+ * Solana pk export format (#6888)
47
+ * Deeplinking on ethereum and bitcoin sats connector (#6917)
48
+ * Solana and cosmos signers not working properly (#6898)
49
+ * Edge case where wallet book fails to load (#7148)
50
+ * Issues where native currency icons were incorrect (#7126)
51
+ * Eclipse and solana wallets getting mixed up in connect only (#7487)
52
+ * Eclipse wallets never get detected (#7479)
53
+ * Changing copy of linking same wallet (#7489)
54
+ * Don't allow user to connect wallet in bridge while SDK is still loading (#7506)
55
+ * SDKHasLoaded always false in cookie enabled env (#7516)
56
+ * Normalize user reject error from injected wallets (#7702)
57
+ * Fetch nonce when authenticating a user in connect-only mode (#7689)
58
+ * Filter out wallets for current network when using external wallet funding (#7694)
59
+ * Remove toaccount from signmessage and signtypeddata for zerodev (#7650)
60
+ * Save nonce to storage (#7698)
61
+ * Add timeout when getting connected accounts (#7697)
62
+ * Update auth token from new source (#7666)
63
+ * Update extension update_url endpoint (#7655)
64
+ * Zerodev confirmation UI closes properly (#7664)
65
+ * Normalize user reject error from Rainbow and BitGet (#7721)
66
+ * Map user reject error to viem user reject error (#7712)
67
+ * Allow selecting wallet directly without showing group view if wallet key is same as group key (#7744)
68
+ * Confirmation UI shows recipient if tx is native/token transfer (#7717)
69
+ * Force network change when secondary funding wallet is on different network (#7733)
70
+ * Some Solana standard wallets not being detected correctly as installed (#7759)
71
+ * Unexpected buy button disabled when onramp is available (#7746)
72
+ * UseRpcProviders race conditions (#7742)
73
+ * allow selecting wallet directly without showing group view if wallet key is the same as group key (#7744)
74
+ * confirmation ui shows recipient if tx is native/token transfer (#7717)
75
+ * force network change when secondary fundig wallet is on a different network (#7733)
76
+ * some solana standard wallets not being detected correctly as installed (#7759)
77
+ * unexpected buy button disabled when onramp is available (#7746)
78
+ * useRpcProviders race conditions (#7742)
79
+
80
+ ## [4.0.0-alpha.52](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.51...v4.0.0-alpha.52) (2025-01-02)
81
+
2
82
  ## [4.0.0-alpha.51](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.50...v4.0.0-alpha.51) (2024-12-30)
3
83
 
4
84
 
@@ -1348,7 +1428,7 @@ There are no code changes required on the Dynamic SDK side, however if you have
1348
1428
 
1349
1429
  - React Native - You can now build mobile-first onboarding experiences with the same Dynamic magic but for React Native, get started [here](https://docs.dynamic.xyz/react-native/introduction)
1350
1430
 
1351
- - Cookie Authentication - Dynamic can now be configured to set a secure, HttpOnly cookie that can be used for authenticating with Dynamic’s backend. This will contain a minified version of our JWT token.
1431
+ - Cookie Authentication - Dynamic can now be configured to set a secure, HttpOnly cookie that can be used for authenticating with Dynamic’s backend. This will contain a minified version of our JWT token.
1352
1432
 
1353
1433
 
1354
1434
  ## Improvements
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.0.0-alpha.51";
6
+ var version = "4.0.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.0.0-alpha.51";
2
+ var version = "4.0.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/web-extension",
3
- "version": "4.0.0-alpha.51",
3
+ "version": "4.0.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
@@ -28,12 +28,12 @@
28
28
  "dependencies": {
29
29
  "@dynamic-labs/sdk-api-core": "0.0.578",
30
30
  "@turnkey/webauthn-stamper": "0.5.0",
31
- "@dynamic-labs/assert-package-version": "4.0.0-alpha.51",
32
- "@dynamic-labs/client": "4.0.0-alpha.51",
33
- "@dynamic-labs/logger": "4.0.0-alpha.51",
34
- "@dynamic-labs/message-transport": "4.0.0-alpha.51",
35
- "@dynamic-labs/utils": "4.0.0-alpha.51",
36
- "@dynamic-labs/webauthn": "4.0.0-alpha.51"
31
+ "@dynamic-labs/assert-package-version": "4.0.0",
32
+ "@dynamic-labs/client": "4.0.0",
33
+ "@dynamic-labs/logger": "4.0.0",
34
+ "@dynamic-labs/message-transport": "4.0.0",
35
+ "@dynamic-labs/utils": "4.0.0",
36
+ "@dynamic-labs/webauthn": "4.0.0"
37
37
  },
38
38
  "peerDependencies": {}
39
39
  }