@dynamic-labs/web-extension 4.0.0 → 4.1.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 +26 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,30 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.1.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.1...v4.1.0) (2025-01-14)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add hook for upgrading embedded wallets ([#7743](https://github.com/dynamic-labs/dynamic-auth/issues/7743)) ([f0f49b3](https://github.com/dynamic-labs/dynamic-auth/commit/f0f49b335fcf99402fcd8722ae0af137d6f313d1))
|
|
8
|
+
* add setting to require transaction confirmation ([#7770](https://github.com/dynamic-labs/dynamic-auth/issues/7770)) ([0a92485](https://github.com/dynamic-labs/dynamic-auth/commit/0a924852b241e786ad608c55e593d7363c1661c1))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* correctly detect MetaMask installation in the browser ([#7789](https://github.com/dynamic-labs/dynamic-auth/issues/7789)) ([d499497](https://github.com/dynamic-labs/dynamic-auth/commit/d499497c0b9e052962b3f16fc418a7de99e3bb34))
|
|
14
|
+
|
|
15
|
+
### [4.0.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0...v4.0.1) (2025-01-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* expose getMinAuthToken helper ([#7769](https://github.com/dynamic-labs/dynamic-auth/issues/7769)) ([2967e2f](https://github.com/dynamic-labs/dynamic-auth/commit/2967e2f5e0266b8fd7c96958d4502b0faff9d78b))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
* send balance view should not prompt confirmation ui ([#7663](https://github.com/dynamic-labs/dynamic-auth/issues/7663)) ([02d847b](https://github.com/dynamic-labs/dynamic-auth/commit/02d847b9f5f300c6d3a24778c0ddda8b46a01766))
|
|
26
|
+
* upgrade zerodev multichain package ([#7773](https://github.com/dynamic-labs/dynamic-auth/issues/7773)) ([cfe1ddc](https://github.com/dynamic-labs/dynamic-auth/commit/cfe1ddc1a5730b3f9624d6e0129ba88f55d54982))
|
|
27
|
+
|
|
2
28
|
## [4.0.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.52...v4.0.0) (2025-01-09)
|
|
3
29
|
|
|
4
30
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/web-extension",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
29
|
+
"@dynamic-labs/sdk-api-core": "0.0.586",
|
|
30
30
|
"@turnkey/webauthn-stamper": "0.5.0",
|
|
31
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
32
|
-
"@dynamic-labs/client": "4.
|
|
33
|
-
"@dynamic-labs/logger": "4.
|
|
34
|
-
"@dynamic-labs/message-transport": "4.
|
|
35
|
-
"@dynamic-labs/utils": "4.
|
|
36
|
-
"@dynamic-labs/webauthn": "4.
|
|
31
|
+
"@dynamic-labs/assert-package-version": "4.1.0",
|
|
32
|
+
"@dynamic-labs/client": "4.1.0",
|
|
33
|
+
"@dynamic-labs/logger": "4.1.0",
|
|
34
|
+
"@dynamic-labs/message-transport": "4.1.0",
|
|
35
|
+
"@dynamic-labs/utils": "4.1.0",
|
|
36
|
+
"@dynamic-labs/webauthn": "4.1.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {}
|
|
39
39
|
}
|