@metamask-previews/profile-sync-controller 26.0.0-preview-21a5ddac → 27.0.0-preview-4ed214fa
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 +6 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [27.0.0]
|
|
11
|
+
|
|
10
12
|
### Changed
|
|
11
13
|
|
|
14
|
+
- **BREAKING:** Bump `@metamask/keyring-controller` from `^24.0.0` to `^25.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
15
|
+
- Bump `@metamask/address-book-controller` from `^7.0.0` to `^7.0.1` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
12
16
|
- Add rate limit (429) handling with automatic retry in authentication flow ([#6993](https://github.com/MetaMask/core/pull/6993))
|
|
13
17
|
- Update authentication services to throw `RateLimitedError` when encountering 429 responses.
|
|
14
18
|
- Improve Authentication errors by adding the HTTP code in error messages.
|
|
@@ -770,7 +774,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
770
774
|
|
|
771
775
|
- Initial release
|
|
772
776
|
|
|
773
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@
|
|
777
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@27.0.0...HEAD
|
|
778
|
+
[27.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@26.0.0...@metamask/profile-sync-controller@27.0.0
|
|
774
779
|
[26.0.0]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@25.1.2...@metamask/profile-sync-controller@26.0.0
|
|
775
780
|
[25.1.2]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@25.1.1...@metamask/profile-sync-controller@25.1.2
|
|
776
781
|
[25.1.1]: https://github.com/MetaMask/core/compare/@metamask/profile-sync-controller@25.1.0...@metamask/profile-sync-controller@25.1.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/profile-sync-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "27.0.0-preview-4ed214fa",
|
|
4
4
|
"description": "The profile sync helps developers synchronize data across multiple clients and devices in a privacy-preserving way. All data saved in the user storage database is encrypted client-side to preserve privacy. The user storage provides a modular design, giving developers the flexibility to construct and manage their storage spaces in a way that best suits their needs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -115,10 +115,10 @@
|
|
|
115
115
|
"devDependencies": {
|
|
116
116
|
"@lavamoat/allow-scripts": "^3.0.4",
|
|
117
117
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
118
|
-
"@metamask/address-book-controller": "^7.0.
|
|
118
|
+
"@metamask/address-book-controller": "^7.0.1",
|
|
119
119
|
"@metamask/auto-changelog": "^3.4.4",
|
|
120
120
|
"@metamask/keyring-api": "^21.0.0",
|
|
121
|
-
"@metamask/keyring-controller": "^
|
|
121
|
+
"@metamask/keyring-controller": "^25.0.0",
|
|
122
122
|
"@metamask/keyring-internal-api": "^9.0.0",
|
|
123
123
|
"@metamask/providers": "^22.1.0",
|
|
124
124
|
"@metamask/snaps-controllers": "^14.0.1",
|
|
@@ -136,8 +136,8 @@
|
|
|
136
136
|
"webextension-polyfill": "^0.12.0"
|
|
137
137
|
},
|
|
138
138
|
"peerDependencies": {
|
|
139
|
-
"@metamask/address-book-controller": "^7.0.
|
|
140
|
-
"@metamask/keyring-controller": "^
|
|
139
|
+
"@metamask/address-book-controller": "^7.0.1",
|
|
140
|
+
"@metamask/keyring-controller": "^25.0.0",
|
|
141
141
|
"@metamask/providers": "^22.0.0",
|
|
142
142
|
"@metamask/snaps-controllers": "^14.0.0",
|
|
143
143
|
"webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0"
|