@metamask/ens-controller 1.0.0 → 1.0.2

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
@@ -6,14 +6,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [1.0.2]
10
+ ### Changed
11
+ - Rename this repository to `core` ([#1031](https://github.com/MetaMask/controllers/pull/1031))
12
+ - Update `@metamask/controller-utils` package ([#1041](https://github.com/MetaMask/controllers/pull/1041))
13
+
14
+ ## [1.0.1]
15
+ ### Changed
16
+ - Relax dependencies on `@metamask/base-controller` and `@metamask/controller-utils` (use `^` instead of `~`) ([#998](https://github.com/MetaMask/core/pull/998))
17
+
9
18
  ## [1.0.0]
10
19
  ### Added
11
20
  - Initial release
12
- - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
21
+ - As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/core/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/core/tree/v33.0.0), namely:
13
22
  - `src/third-party/EnsController.ts`
14
23
  - `src/third-party/EnsController.test.ts`
15
24
 
16
25
  All changes listed after this point were applied to this package following the monorepo conversion.
17
26
 
18
- [Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/ens-controller@1.0.0...HEAD
19
- [1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/ens-controller@1.0.0
27
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@1.0.2...HEAD
28
+ [1.0.2]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@1.0.1...@metamask/ens-controller@1.0.2
29
+ [1.0.1]: https://github.com/MetaMask/core/compare/@metamask/ens-controller@1.0.0...@metamask/ens-controller@1.0.1
30
+ [1.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/ens-controller@1.0.0
package/README.md CHANGED
@@ -12,4 +12,4 @@ or
12
12
 
13
13
  ## Contributing
14
14
 
15
- This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/controllers#readme).
15
+ This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/core#readme).
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@metamask/ens-controller",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Maps ENS names to their resolved addresses by chain id",
5
5
  "keywords": [
6
6
  "MetaMask",
7
7
  "Ethereum"
8
8
  ],
9
- "homepage": "https://github.com/MetaMask/controllers/tree/main/packages/ens-controller#readme",
9
+ "homepage": "https://github.com/MetaMask/core/tree/main/packages/ens-controller#readme",
10
10
  "bugs": {
11
- "url": "https://github.com/MetaMask/controllers/issues"
11
+ "url": "https://github.com/MetaMask/core/issues"
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/MetaMask/controllers.git"
15
+ "url": "https://github.com/MetaMask/core.git"
16
16
  },
17
17
  "license": "MIT",
18
18
  "main": "./dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "dependencies": {
32
- "@metamask/base-controller": "~1.0.0",
33
- "@metamask/controller-utils": "~1.0.0"
32
+ "@metamask/base-controller": "^1.1.2",
33
+ "@metamask/controller-utils": "^2.0.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@metamask/auto-changelog": "^3.1.0",