@metamask-previews/rate-limit-controller 6.0.3-preview-6c94ae59 → 6.1.0-preview-e8868d87
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 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,15 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.1.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Add two new controller state metadata properties: `includeInStateLogs` and `usedInUi` ([#6525](https://github.com/MetaMask/core/pull/6525))
|
|
13
15
|
|
|
14
16
|
### Changed
|
|
15
17
|
|
|
16
|
-
- Bump `@metamask/utils` from `^11.2.0` to `^11.
|
|
17
|
-
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.
|
|
18
|
-
- Bump `@metamask/utils` from `^11.4.2` to `^11.8.0` ([#6588](https://github.com/MetaMask/core/pull/6588))
|
|
18
|
+
- Bump `@metamask/utils` from `^11.2.0` to `^11.8.1` ([#6054](https://github.com/MetaMask/core/pull/6054), [#6588](https://github.com/MetaMask/core/pull/6588), [#6708](https://github.com/MetaMask/core/pull/6708))
|
|
19
|
+
- Bump `@metamask/base-controller` from `^8.0.0` to `^8.4.1` ([#5722](https://github.com/MetaMask/core/pull/5722), [#6284](https://github.com/MetaMask/core/pull/6284), [#6355](https://github.com/MetaMask/core/pull/6355), [#6465](https://github.com/MetaMask/core/pull/6465), [#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
|
|
19
20
|
|
|
20
21
|
## [6.0.3]
|
|
21
22
|
|
|
@@ -187,7 +188,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
187
188
|
|
|
188
189
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
189
190
|
|
|
190
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.0
|
|
191
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.1.0...HEAD
|
|
192
|
+
[6.1.0]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.0.3...@metamask/rate-limit-controller@6.1.0
|
|
191
193
|
[6.0.3]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.0.2...@metamask/rate-limit-controller@6.0.3
|
|
192
194
|
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.0.1...@metamask/rate-limit-controller@6.0.2
|
|
193
195
|
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/rate-limit-controller@6.0.0...@metamask/rate-limit-controller@6.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/rate-limit-controller",
|
|
3
|
-
"version": "6.0
|
|
3
|
+
"version": "6.1.0-preview-e8868d87",
|
|
4
4
|
"description": "Contains logic for rate-limiting API endpoints by requesting origin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@metamask/base-controller": "^8.4.
|
|
50
|
+
"@metamask/base-controller": "^8.4.1",
|
|
51
51
|
"@metamask/rpc-errors": "^7.0.2",
|
|
52
|
-
"@metamask/utils": "^11.8.
|
|
52
|
+
"@metamask/utils": "^11.8.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@metamask/auto-changelog": "^3.4.4",
|