@metamask/ens-controller 8.0.0 → 9.0.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 +10 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [9.0.0]
|
|
10
|
+
### Changed
|
|
11
|
+
- **BREAKING:** Bump `@metamask/network-controller` peer dependency to `^17.2.0` ([#3821](https://github.com/MetaMask/core/pull/3821))
|
|
12
|
+
- Bump `@metamask/utils` to `^8.3.0` ([#3769](https://github.com/MetaMask/core/pull/3769))
|
|
13
|
+
- Bump `@metamask/base-controller` to `^4.1.1` ([#3760](https://github.com/MetaMask/core/pull/3760), [#3821](https://github.com/MetaMask/core/pull/3821))
|
|
14
|
+
- Bump `@metamask/controller-utils` to `^8.0.2` ([#3821](https://github.com/MetaMask/core/pull/3821))
|
|
15
|
+
|
|
16
|
+
|
|
9
17
|
## [8.0.0]
|
|
10
18
|
### Changed
|
|
11
19
|
- **BREAKING:** Replace constructor parameter `onNetworkStateChange` with `onNetworkDidChange` ([#3610](https://github.com/MetaMask/core/pull/3610))
|
|
@@ -103,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
103
111
|
|
|
104
112
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
105
113
|
|
|
106
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@
|
|
114
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@9.0.0...HEAD
|
|
115
|
+
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@8.0.0...@metamask/ens-controller@9.0.0
|
|
107
116
|
[8.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@7.0.0...@metamask/ens-controller@8.0.0
|
|
108
117
|
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@6.0.1...@metamask/ens-controller@7.0.0
|
|
109
118
|
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@6.0.0...@metamask/ens-controller@6.0.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/ens-controller",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Maps ENS names to their resolved addresses by chain id",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@ethersproject/providers": "^5.7.0",
|
|
35
|
-
"@metamask/base-controller": "^4.
|
|
36
|
-
"@metamask/controller-utils": "^8.0.
|
|
37
|
-
"@metamask/utils": "^8.
|
|
35
|
+
"@metamask/base-controller": "^4.1.1",
|
|
36
|
+
"@metamask/controller-utils": "^8.0.2",
|
|
37
|
+
"@metamask/utils": "^8.3.0",
|
|
38
38
|
"ethereum-ens-network-map": "^1.0.2",
|
|
39
39
|
"punycode": "^2.1.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@metamask/auto-changelog": "^3.4.4",
|
|
43
|
-
"@metamask/network-controller": "^17.
|
|
43
|
+
"@metamask/network-controller": "^17.2.0",
|
|
44
44
|
"@types/jest": "^27.4.1",
|
|
45
45
|
"deepmerge": "^4.2.2",
|
|
46
46
|
"jest": "^27.5.1",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"typescript": "~4.8.4"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@metamask/network-controller": "^17.
|
|
53
|
+
"@metamask/network-controller": "^17.2.0"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=16.0.0"
|