@metamask/ens-controller 16.0.0 → 17.0.1
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 +19 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [17.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/controller-utils` from `^11.10.0` to `^11.11.0` ([#6069](https://github.com/MetaMask/core/pull/6069))
|
|
15
|
+
- This upgrade includes performance improvements to checksum hex address normalization
|
|
16
|
+
- Bump `@metamask/utils` from `^11.2.0` to `^11.4.2` ([#6054](https://github.com/MetaMask/core/pull/6054))
|
|
17
|
+
|
|
18
|
+
## [17.0.0]
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **BREAKING:** Bump peer dependency `@metamask/network-controller` to `^24.0.0` ([#5999](https://github.com/MetaMask/core/pull/5999))
|
|
23
|
+
- Bump `@metamask/base-controller` to `^8.0.1` ([#5722](https://github.com/MetaMask/core/pull/5722))
|
|
24
|
+
- Bump `@metamask/controller-utils` to `^11.10.0` ([#5935](https://github.com/MetaMask/core/pull/5935), [#5583](https://github.com/MetaMask/core/pull/5583), [#5765](https://github.com/MetaMask/core/pull/5765), [#5812](https://github.com/MetaMask/core/pull/5812))
|
|
25
|
+
|
|
10
26
|
## [16.0.0]
|
|
11
27
|
|
|
12
28
|
### Changed
|
|
@@ -283,7 +299,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
283
299
|
|
|
284
300
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
285
301
|
|
|
286
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@
|
|
302
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@17.0.1...HEAD
|
|
303
|
+
[17.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@17.0.0...@metamask/ens-controller@17.0.1
|
|
304
|
+
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@16.0.0...@metamask/ens-controller@17.0.0
|
|
287
305
|
[16.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.2...@metamask/ens-controller@16.0.0
|
|
288
306
|
[15.0.2]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.1...@metamask/ens-controller@15.0.2
|
|
289
307
|
[15.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@15.0.0...@metamask/ens-controller@15.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/ens-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.1",
|
|
4
4
|
"description": "Maps ENS names to their resolved addresses by chain id",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@ethersproject/providers": "^5.7.0",
|
|
51
|
-
"@metamask/base-controller": "^8.0.
|
|
52
|
-
"@metamask/controller-utils": "^11.
|
|
53
|
-
"@metamask/utils": "^11.2
|
|
51
|
+
"@metamask/base-controller": "^8.0.1",
|
|
52
|
+
"@metamask/controller-utils": "^11.11.0",
|
|
53
|
+
"@metamask/utils": "^11.4.2",
|
|
54
54
|
"punycode": "^2.1.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@metamask/auto-changelog": "^3.4.4",
|
|
58
|
-
"@metamask/network-controller": "^
|
|
58
|
+
"@metamask/network-controller": "^24.0.0",
|
|
59
59
|
"@types/jest": "^27.4.1",
|
|
60
60
|
"deepmerge": "^4.2.2",
|
|
61
61
|
"jest": "^27.5.1",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"typescript": "~5.2.2"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@metamask/network-controller": "^
|
|
68
|
+
"@metamask/network-controller": "^24.0.0"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
71
|
"node": "^18.18 || >=20"
|