@dynamic-labs/locale 4.75.0 → 4.77.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,34 @@
1
1
 
2
+ ## [4.77.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.76.0...v4.77.0) (2026-04-10)
3
+
4
+
5
+ ### Features
6
+
7
+ * **midnight:** add types and chain constants ([#10851](https://github.com/dynamic-labs/dynamic-auth/issues/10851)) ([91620d2](https://github.com/dynamic-labs/dynamic-auth/commit/91620d21596c525d8d51ddb0c0ba7df456e3eb64))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * issue when linking new wallet via qr code when there's no active session ([#10878](https://github.com/dynamic-labs/dynamic-auth/issues/10878)) ([53cbae0](https://github.com/dynamic-labs/dynamic-auth/commit/53cbae0806665371e9214663e72e2f1fb7e1ac3f))
13
+ * **lint-staged:** exclude Playwright specs from jest pre-commit hook [DYNT-496] ([#10880](https://github.com/dynamic-labs/dynamic-auth/issues/10880)) ([d3c8a9a](https://github.com/dynamic-labs/dynamic-auth/commit/d3c8a9a59c855bb834dcedf2e18a2bd0eabcb420))
14
+ * **react-core:** exclude password setup cancellations from wallet creation failure metrics ([#10868](https://github.com/dynamic-labs/dynamic-auth/issues/10868)) ([685de16](https://github.com/dynamic-labs/dynamic-auth/commit/685de16f004f282e1b24114c3a18d8c02b7e48aa))
15
+ * **react-native:** adds eip7702 authorization ([#10904](https://github.com/dynamic-labs/dynamic-auth/issues/10904)) ([fa3e41f](https://github.com/dynamic-labs/dynamic-auth/commit/fa3e41f18aeca309c199003781e569bb425dda5d))
16
+ * **react-native:** remove crypto dependency ([#10871](https://github.com/dynamic-labs/dynamic-auth/issues/10871)) ([de4faa5](https://github.com/dynamic-labs/dynamic-auth/commit/de4faa5bd8bbb8fc321ed65f8b6ccfbaff1d00d3))
17
+ * **react-native:** unify session storage ([#10870](https://github.com/dynamic-labs/dynamic-auth/issues/10870)) ([0536ea0](https://github.com/dynamic-labs/dynamic-auth/commit/0536ea0a78f69b9952b21eec38b4868276215b46))
18
+
19
+ ## [4.76.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.75.0...v4.76.0) (2026-04-06)
20
+
21
+
22
+ ### Features
23
+
24
+ * handle credential_not_enabled_for_sign_in error across all sign-in methods ([#10819](https://github.com/dynamic-labs/dynamic-auth/issues/10819)) ([f694b85](https://github.com/dynamic-labs/dynamic-auth/commit/f694b857eab9d377626078d290473ca369652331))
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * modal transition race condition (opacity stuck at 0) ([#10857](https://github.com/dynamic-labs/dynamic-auth/issues/10857)) ([6e9ec68](https://github.com/dynamic-labs/dynamic-auth/commit/6e9ec68040776cc5be333ad20ad0096374947b74))
30
+ * **react-native:** ensure session is correctly mapped ([#10860](https://github.com/dynamic-labs/dynamic-auth/issues/10860)) ([117b013](https://github.com/dynamic-labs/dynamic-auth/commit/117b013faf9a0d4bc6b8429a36d8e88dba546889))
31
+
2
32
  ## [4.75.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.74.1...v4.75.0) (2026-04-03)
3
33
 
4
34
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.75.0";
6
+ var version = "4.77.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.75.0";
2
+ var version = "4.77.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/locale",
3
- "version": "4.75.0",
3
+ "version": "4.77.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.75.0"
23
+ "@dynamic-labs/assert-package-version": "4.77.0"
24
24
  },
25
25
  "peerDependencies": {}
26
26
  }
@@ -3150,6 +3150,7 @@ const translation = {
3150
3150
  internal_error: 'There was an internal error. Please try again.',
3151
3151
  account_already_linked_to_different_profile: 'This social account is already linked to a different profile.',
3152
3152
  connection_rejected: 'Connection rejected. Please try again.',
3153
+ credential_not_enabled_for_sign_in: 'This credential cannot be used for sign-in. Please use your primary credential.',
3153
3154
  missing_public_address: 'Connection cancelled. Please try again',
3154
3155
  connection_proposal_expired: 'Connection proposal expired. Please try again.',
3155
3156
  sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',
@@ -3146,6 +3146,7 @@ export declare const translation: {
3146
3146
  internal_error: string;
3147
3147
  account_already_linked_to_different_profile: string;
3148
3148
  connection_rejected: string;
3149
+ credential_not_enabled_for_sign_in: string;
3149
3150
  missing_public_address: string;
3150
3151
  connection_proposal_expired: string;
3151
3152
  sei_not_enabled_in_keplr_wallet: string;
@@ -3146,6 +3146,7 @@ const translation = {
3146
3146
  internal_error: 'There was an internal error. Please try again.',
3147
3147
  account_already_linked_to_different_profile: 'This social account is already linked to a different profile.',
3148
3148
  connection_rejected: 'Connection rejected. Please try again.',
3149
+ credential_not_enabled_for_sign_in: 'This credential cannot be used for sign-in. Please use your primary credential.',
3149
3150
  missing_public_address: 'Connection cancelled. Please try again',
3150
3151
  connection_proposal_expired: 'Connection proposal expired. Please try again.',
3151
3152
  sei_not_enabled_in_keplr_wallet: 'Sei network is not enabled in Keplr. Please enable it and try again.',