@dynamic-labs/locale 4.60.0 → 4.61.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 +30 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/lib/en/translation.cjs +10 -9
- package/src/lib/en/translation.d.ts +2 -1
- package/src/lib/en/translation.js +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,34 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.61.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.1...v4.61.0) (2026-02-10)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add unlockWallet and getWalletRecoveryState to WaaS ([#10407](https://github.com/dynamic-labs/dynamic-auth/issues/10407)) ([e0d1a28](https://github.com/dynamic-labs/dynamic-auth/commit/e0d1a2830f36eee6c6e84737011e8cf59966122d))
|
|
8
|
+
* add useWalletPassword hook for waas wallet password management ([#10399](https://github.com/dynamic-labs/dynamic-auth/issues/10399)) ([508835f](https://github.com/dynamic-labs/dynamic-auth/commit/508835fb0f4f17b7353a4378f4c254e02f0a46ff))
|
|
9
|
+
* add WaaS unlock and recovery UI to mobile demo ([#10408](https://github.com/dynamic-labs/dynamic-auth/issues/10408)) ([94cdb88](https://github.com/dynamic-labs/dynamic-auth/commit/94cdb882fca3c34d157b42d5208f56812008c43b))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* bump axios to fix high vulnerability ([#10406](https://github.com/dynamic-labs/dynamic-auth/issues/10406)) ([303e2dc](https://github.com/dynamic-labs/dynamic-auth/commit/303e2dcf1e7e8ecad4caf2d74e805ee427c1d00e))
|
|
15
|
+
* patch node-forge CVE-2025-12816 in global-wallet ([#10401](https://github.com/dynamic-labs/dynamic-auth/issues/10401)) ([46e6eb2](https://github.com/dynamic-labs/dynamic-auth/commit/46e6eb28a0add0052299eaa4ac2dcbe8b1faa98c))
|
|
16
|
+
|
|
17
|
+
### [4.60.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.60.0...v4.60.1) (2026-02-09)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add WAAS password handlers to DynamicContextProvider settings ([#10360](https://github.com/dynamic-labs/dynamic-auth/issues/10360)) ([5fc3fa7](https://github.com/dynamic-labs/dynamic-auth/commit/5fc3fa7148c53b64d36672be2d1ae629cb9cdaf8))
|
|
23
|
+
* improve password handling and UI for wallet protection ([#10386](https://github.com/dynamic-labs/dynamic-auth/issues/10386)) ([d27936e](https://github.com/dynamic-labs/dynamic-auth/commit/d27936e5bea37facceefccc0f2507d25a775ad33))
|
|
24
|
+
* pass authToken to wallet recovery operations ([#10379](https://github.com/dynamic-labs/dynamic-auth/issues/10379)) ([294efc7](https://github.com/dynamic-labs/dynamic-auth/commit/294efc7ab5816f63b7e5cc49a150cf9d34d300af))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* override fast-xml-parser to 5.3.4 for CVE-2026-25128 ([#10381](https://github.com/dynamic-labs/dynamic-auth/issues/10381)) ([7fb4c22](https://github.com/dynamic-labs/dynamic-auth/commit/7fb4c221252b84bf38bbdab0b37b8f9a981ebe1a))
|
|
30
|
+
* unlock wallet view error handling and password error UI ([#10388](https://github.com/dynamic-labs/dynamic-auth/issues/10388)) ([5ffc8e1](https://github.com/dynamic-labs/dynamic-auth/commit/5ffc8e1e6dd0d7f32bb94c37ce3674be949f010b))
|
|
31
|
+
|
|
2
32
|
## [4.60.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.2...v4.60.0) (2026-02-05)
|
|
3
33
|
|
|
4
34
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/locale",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.61.0",
|
|
4
4
|
"description": "Locale for Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"i18next": "23.4.6",
|
|
22
22
|
"react-i18next": "13.5.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.61.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -683,6 +683,7 @@ const translation = {
|
|
|
683
683
|
},
|
|
684
684
|
error: {
|
|
685
685
|
required: 'Password is required',
|
|
686
|
+
invalid_password: 'Incorrect Password',
|
|
686
687
|
failed: 'Failed to unlock wallet',
|
|
687
688
|
},
|
|
688
689
|
},
|
|
@@ -2061,7 +2062,7 @@ const translation = {
|
|
|
2061
2062
|
},
|
|
2062
2063
|
enter: {
|
|
2063
2064
|
title: 'Create password',
|
|
2064
|
-
description: '
|
|
2065
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2065
2066
|
label: 'Password',
|
|
2066
2067
|
placeholder: 'Enter password',
|
|
2067
2068
|
requirement_length: '8-70 characters',
|
|
@@ -2102,12 +2103,12 @@ const translation = {
|
|
|
2102
2103
|
title: 'Set up password',
|
|
2103
2104
|
description: 'Before setting up a password, please acknowledge the following:',
|
|
2104
2105
|
checkbox_1: 'I understand that if I lose my password, I will permanently lose access to my wallet and all assets.',
|
|
2105
|
-
checkbox_2: 'I understand that
|
|
2106
|
+
checkbox_2: 'I understand that {{appName}} support cannot recover my password or access my wallet.',
|
|
2106
2107
|
checkbox_3: 'I understand that this password is only for this application and cannot be used elsewhere.',
|
|
2107
2108
|
},
|
|
2108
2109
|
enter: {
|
|
2109
2110
|
title: 'Create password',
|
|
2110
|
-
description: '
|
|
2111
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2111
2112
|
label: 'Password',
|
|
2112
2113
|
placeholder: 'Enter password',
|
|
2113
2114
|
requirement_length: '8-70 characters',
|
|
@@ -2126,12 +2127,12 @@ const translation = {
|
|
|
2126
2127
|
},
|
|
2127
2128
|
knowledge_check: {
|
|
2128
2129
|
title: 'Knowledge check',
|
|
2129
|
-
description: '
|
|
2130
|
-
question: 'What happens if you lose
|
|
2131
|
-
option_a: 'I can reset it
|
|
2132
|
-
option_b: 'Support can
|
|
2133
|
-
option_c: 'I
|
|
2134
|
-
error: 'Incorrect
|
|
2130
|
+
description: 'Answer the question to confirm you understand.',
|
|
2131
|
+
question: 'What happens if you lose your password?',
|
|
2132
|
+
option_a: 'I can reset it via email',
|
|
2133
|
+
option_b: 'Support can recover my access',
|
|
2134
|
+
option_c: 'I permanently lose access to my wallet',
|
|
2135
|
+
error: 'Incorrect. No password recovery — you’ll lose access permanently. Choose the correct answer and try again.',
|
|
2135
2136
|
review_terms: 'Review terms again',
|
|
2136
2137
|
},
|
|
2137
2138
|
success: {
|
|
@@ -677,6 +677,7 @@ export declare const translation: {
|
|
|
677
677
|
};
|
|
678
678
|
error: {
|
|
679
679
|
required: string;
|
|
680
|
+
invalid_password: string;
|
|
680
681
|
failed: string;
|
|
681
682
|
};
|
|
682
683
|
};
|
|
@@ -2057,7 +2058,7 @@ export declare const translation: {
|
|
|
2057
2058
|
},
|
|
2058
2059
|
enter: {
|
|
2059
2060
|
title: 'Create password',
|
|
2060
|
-
description: '
|
|
2061
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2061
2062
|
label: 'Password',
|
|
2062
2063
|
placeholder: 'Enter password',
|
|
2063
2064
|
requirement_length: '8-70 characters',
|
|
@@ -679,6 +679,7 @@ const translation = {
|
|
|
679
679
|
},
|
|
680
680
|
error: {
|
|
681
681
|
required: 'Password is required',
|
|
682
|
+
invalid_password: 'Incorrect Password',
|
|
682
683
|
failed: 'Failed to unlock wallet',
|
|
683
684
|
},
|
|
684
685
|
},
|
|
@@ -2057,7 +2058,7 @@ const translation = {
|
|
|
2057
2058
|
},
|
|
2058
2059
|
enter: {
|
|
2059
2060
|
title: 'Create password',
|
|
2060
|
-
description: '
|
|
2061
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2061
2062
|
label: 'Password',
|
|
2062
2063
|
placeholder: 'Enter password',
|
|
2063
2064
|
requirement_length: '8-70 characters',
|
|
@@ -2098,12 +2099,12 @@ const translation = {
|
|
|
2098
2099
|
title: 'Set up password',
|
|
2099
2100
|
description: 'Before setting up a password, please acknowledge the following:',
|
|
2100
2101
|
checkbox_1: 'I understand that if I lose my password, I will permanently lose access to my wallet and all assets.',
|
|
2101
|
-
checkbox_2: 'I understand that
|
|
2102
|
+
checkbox_2: 'I understand that {{appName}} support cannot recover my password or access my wallet.',
|
|
2102
2103
|
checkbox_3: 'I understand that this password is only for this application and cannot be used elsewhere.',
|
|
2103
2104
|
},
|
|
2104
2105
|
enter: {
|
|
2105
2106
|
title: 'Create password',
|
|
2106
|
-
description: '
|
|
2107
|
+
description: 'Set a strong password to protect your wallet.',
|
|
2107
2108
|
label: 'Password',
|
|
2108
2109
|
placeholder: 'Enter password',
|
|
2109
2110
|
requirement_length: '8-70 characters',
|
|
@@ -2122,12 +2123,12 @@ const translation = {
|
|
|
2122
2123
|
},
|
|
2123
2124
|
knowledge_check: {
|
|
2124
2125
|
title: 'Knowledge check',
|
|
2125
|
-
description: '
|
|
2126
|
-
question: 'What happens if you lose
|
|
2127
|
-
option_a: 'I can reset it
|
|
2128
|
-
option_b: 'Support can
|
|
2129
|
-
option_c: 'I
|
|
2130
|
-
error: 'Incorrect
|
|
2126
|
+
description: 'Answer the question to confirm you understand.',
|
|
2127
|
+
question: 'What happens if you lose your password?',
|
|
2128
|
+
option_a: 'I can reset it via email',
|
|
2129
|
+
option_b: 'Support can recover my access',
|
|
2130
|
+
option_c: 'I permanently lose access to my wallet',
|
|
2131
|
+
error: 'Incorrect. No password recovery — you’ll lose access permanently. Choose the correct answer and try again.',
|
|
2131
2132
|
review_terms: 'Review terms again',
|
|
2132
2133
|
},
|
|
2133
2134
|
success: {
|