@dynamic-labs/locale 5.1.0 → 5.3.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 +2 -2
- package/src/lib/en/translation.cjs +3 -0
- package/src/lib/en/translation.d.ts +3 -0
- package/src/lib/en/translation.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,30 @@
|
|
|
1
1
|
|
|
2
|
+
## [5.3.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.2.0...v5.3.0) (2026-08-12)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **screening:** add transaction-screening service, types, and connector wiring (DYNT-1663) ([#12160](https://github.com/dynamic-labs/dynamic-auth/issues/12160)) ([d8df6a1](https://github.com/dynamic-labs/dynamic-auth/commit/d8df6a1fccbb6370c140454d9297eabd97699e35)), closes [#12172](https://github.com/dynamic-labs/dynamic-auth/issues/12172) [#12167](https://github.com/dynamic-labs/dynamic-auth/issues/12167) [#12168](https://github.com/dynamic-labs/dynamic-auth/issues/12168) [#12169](https://github.com/dynamic-labs/dynamic-auth/issues/12169)
|
|
8
|
+
* **screening:** screen Bitcoin connected-wallet transactions (DYNT-1663) ([#12169](https://github.com/dynamic-labs/dynamic-auth/issues/12169)) ([f34d1c3](https://github.com/dynamic-labs/dynamic-auth/commit/f34d1c31fe10d0cb02b4f7462dd4900d0256604a))
|
|
9
|
+
* **screening:** screen EVM connected-wallet sends (DYNT-1663) ([#12167](https://github.com/dynamic-labs/dynamic-auth/issues/12167)) ([1b72b24](https://github.com/dynamic-labs/dynamic-auth/commit/1b72b24393a49153d74ce715a44d262e8e48ddc7))
|
|
10
|
+
* **screening:** screen Solana connected-wallet transactions (DYNT-1663) ([#12168](https://github.com/dynamic-labs/dynamic-auth/issues/12168)) ([000eb18](https://github.com/dynamic-labs/dynamic-auth/commit/000eb180aca8349804953ff7738c0ba984a2fa21))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add PhoneNumberAlreadyLinkedError and map duplicate-phone backend code ([#12145](https://github.com/dynamic-labs/dynamic-auth/issues/12145)) ([9d13b5f](https://github.com/dynamic-labs/dynamic-auth/commit/9d13b5f8b22716b4c9ce206ee870aab5bd745b8b))
|
|
16
|
+
* **react-native-extension:** throw clear error when react-native-keychain native module is missing ([#12197](https://github.com/dynamic-labs/dynamic-auth/issues/12197)) ([b9983e1](https://github.com/dynamic-labs/dynamic-auth/commit/b9983e1f1aefa9a9bbdc1435f706a05e64f34f1c))
|
|
17
|
+
* security updates ([#12187](https://github.com/dynamic-labs/dynamic-auth/issues/12187)) ([d3a31e2](https://github.com/dynamic-labs/dynamic-auth/commit/d3a31e23533b6b7739851a3b747d62ba13d318b2))
|
|
18
|
+
* security updates ([#12208](https://github.com/dynamic-labs/dynamic-auth/issues/12208)) ([9e9472a](https://github.com/dynamic-labs/dynamic-auth/commit/9e9472acfbe01f7ac9e160829cc10e53c65f91e7))
|
|
19
|
+
* **sdk-react-core:** avoid spurious WaaS client rebuild on transient user sessionId churn ([#12182](https://github.com/dynamic-labs/dynamic-auth/issues/12182)) ([480b2ec](https://github.com/dynamic-labs/dynamic-auth/commit/480b2ecc87486a852e75e8814a76fb59ffe40c5d))
|
|
20
|
+
|
|
21
|
+
## [5.2.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.1.0...v5.2.0) (2026-08-06)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* **webview-controller:** validate native SDK locale override before applying ([#12155](https://github.com/dynamic-labs/dynamic-auth/issues/12155)) ([4a9e1da](https://github.com/dynamic-labs/dynamic-auth/commit/4a9e1dafb59099c47d3678cc24f8475164c3db59))
|
|
27
|
+
|
|
2
28
|
## [5.1.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.0.0...v5.1.0) (2026-08-04)
|
|
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/locale",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.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": "5.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "5.3.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {}
|
|
26
26
|
}
|
|
@@ -3118,6 +3118,8 @@ const translation = {
|
|
|
3118
3118
|
sei_not_enabled_in_keplr_wallet:
|
|
3119
3119
|
'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
3120
3120
|
rate_limit_error: 'Too many requests. Please try again later.',
|
|
3121
|
+
transaction_screening_blocked:
|
|
3122
|
+
'This transaction was blocked because the destination address is not approved.',
|
|
3121
3123
|
}
|
|
3122
3124
|
*/
|
|
3123
3125
|
dyn_error: {
|
|
@@ -3134,6 +3136,7 @@ const translation = {
|
|
|
3134
3136
|
connection_proposal_expired: 'Connection proposal expired. Please try again.',
|
|
3135
3137
|
sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
3136
3138
|
rate_limit_error: 'Too many requests. Please try again later.',
|
|
3139
|
+
transaction_screening_blocked: 'This transaction was blocked because the destination address is not approved.',
|
|
3137
3140
|
},
|
|
3138
3141
|
/**
|
|
3139
3142
|
* @description copy keys for search component
|
|
@@ -3114,6 +3114,8 @@ export declare const translation: {
|
|
|
3114
3114
|
sei_not_enabled_in_keplr_wallet:
|
|
3115
3115
|
'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
3116
3116
|
rate_limit_error: 'Too many requests. Please try again later.',
|
|
3117
|
+
transaction_screening_blocked:
|
|
3118
|
+
'This transaction was blocked because the destination address is not approved.',
|
|
3117
3119
|
}
|
|
3118
3120
|
*/
|
|
3119
3121
|
dyn_error: {
|
|
@@ -3130,6 +3132,7 @@ export declare const translation: {
|
|
|
3130
3132
|
connection_proposal_expired: string;
|
|
3131
3133
|
sei_not_enabled_in_keplr_wallet: string;
|
|
3132
3134
|
rate_limit_error: string;
|
|
3135
|
+
transaction_screening_blocked: string;
|
|
3133
3136
|
};
|
|
3134
3137
|
/**
|
|
3135
3138
|
* @description copy keys for search component
|
|
@@ -3114,6 +3114,8 @@ const translation = {
|
|
|
3114
3114
|
sei_not_enabled_in_keplr_wallet:
|
|
3115
3115
|
'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
3116
3116
|
rate_limit_error: 'Too many requests. Please try again later.',
|
|
3117
|
+
transaction_screening_blocked:
|
|
3118
|
+
'This transaction was blocked because the destination address is not approved.',
|
|
3117
3119
|
}
|
|
3118
3120
|
*/
|
|
3119
3121
|
dyn_error: {
|
|
@@ -3130,6 +3132,7 @@ const translation = {
|
|
|
3130
3132
|
connection_proposal_expired: 'Connection proposal expired. Please try again.',
|
|
3131
3133
|
sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',
|
|
3132
3134
|
rate_limit_error: 'Too many requests. Please try again later.',
|
|
3135
|
+
transaction_screening_blocked: 'This transaction was blocked because the destination address is not approved.',
|
|
3133
3136
|
},
|
|
3134
3137
|
/**
|
|
3135
3138
|
* @description copy keys for search component
|