@dynamic-labs/viem-extension 2.1.0-alpha.32 → 2.1.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 +32 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,36 @@
|
|
|
1
1
|
|
|
2
|
+
### [2.1.1](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.0...v2.1.1) (2024-06-04)
|
|
3
|
+
|
|
4
|
+
## [2.1.0](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.0-alpha.32...v2.1.0) (2024-06-04)
|
|
5
|
+
|
|
6
|
+
## Features
|
|
7
|
+
|
|
8
|
+
### General Availability
|
|
9
|
+
|
|
10
|
+
- Support for Coinbase Smart Wallet comes as a default with V2.1, check out [the configuration guide and overview](https://docs.dynamic.xyz/wallets/advanced-wallets/coinbase-smart-wallet)
|
|
11
|
+
|
|
12
|
+
### New closed betas ([talk to us](https://dynamic.xyz/slack) for access)
|
|
13
|
+
|
|
14
|
+
- 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)
|
|
15
|
+
|
|
16
|
+
- 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.
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## Improvements
|
|
20
|
+
|
|
21
|
+
### General Wallets
|
|
22
|
+
- Phantom integration now supports Bitcoin out of the box
|
|
23
|
+
|
|
24
|
+
### Headless
|
|
25
|
+
- Social Sign-in is now available, learn more in the [guide here](https://docs.dynamic.xyz/headless/headless-social)
|
|
26
|
+
|
|
27
|
+
### Hooks
|
|
28
|
+
- [useSwitchWallet](https://docs.dynamic.xyz/react-sdk/hooks/useswitchwallet) now means you can easily switch between wallets for an authenticated user.
|
|
29
|
+
|
|
30
|
+
### Signup UI
|
|
31
|
+
- Farcaster QR code shows by default if the only login option, learn more [here](https://docs.dynamic.xyz/guides/integrations/farcaster/sign-in-with-farcaster)
|
|
32
|
+
|
|
33
|
+
|
|
2
34
|
## [2.1.0-alpha.32](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.0-alpha.31...v2.1.0-alpha.32) (2024-06-04)
|
|
3
35
|
|
|
4
36
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/viem-extension",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"main": "./src/index.cjs",
|
|
5
5
|
"module": "./src/index.js",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"./package.json": "./package.json"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@dynamic-labs/message-transport": "2.1.
|
|
17
|
+
"@dynamic-labs/message-transport": "2.1.1"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"viem": "^2.7.6",
|
|
21
|
-
"@dynamic-labs/client": "2.1.
|
|
22
|
-
"@dynamic-labs/types": "2.1.
|
|
21
|
+
"@dynamic-labs/client": "2.1.1",
|
|
22
|
+
"@dynamic-labs/types": "2.1.1"
|
|
23
23
|
}
|
|
24
24
|
}
|