@metamask-previews/base-controller 3.2.1-preview.f71e42f → 3.2.3-preview.0c0cc64

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/package.json +6 -5
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
+ ## [3.2.3]
10
+ ### Changed
11
+ - Bump dependency on `@metamask/utils` to ^8.1.0 ([#1639](https://github.com/MetaMask/core/pull/1639))
12
+
13
+ ## [3.2.2]
14
+ ### Changed
15
+ - Update TypeScript to v4.8.x ([#1718](https://github.com/MetaMask/core/pull/1718))
16
+
9
17
  ## [3.2.1]
10
18
  ### Changed
11
19
  - There are no consumer-facing changes to this package. This version is a part of a synchronized release across all packages in our monorepo.
@@ -65,7 +73,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
65
73
 
66
74
  All changes listed after this point were applied to this package following the monorepo conversion.
67
75
 
68
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.2.1...HEAD
76
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.2.3...HEAD
77
+ [3.2.3]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.2.2...@metamask/base-controller@3.2.3
78
+ [3.2.2]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.2.1...@metamask/base-controller@3.2.2
69
79
  [3.2.1]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.2.0...@metamask/base-controller@3.2.1
70
80
  [3.2.0]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.1.0...@metamask/base-controller@3.2.0
71
81
  [3.1.0]: https://github.com/MetaMask/core/compare/@metamask/base-controller@3.0.0...@metamask/base-controller@3.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/base-controller",
3
- "version": "3.2.1-preview.f71e42f",
3
+ "version": "3.2.3-preview.0c0cc64",
4
4
  "description": "Provides scaffolding for controllers as well a communication system for all controllers",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -25,10 +25,11 @@
25
25
  "changelog:validate": "../../scripts/validate-changelog.sh @metamask/base-controller",
26
26
  "publish:preview": "yarn npm publish --tag preview",
27
27
  "test": "jest",
28
+ "test:clean": "jest --clearCache",
28
29
  "test:watch": "jest --watch"
29
30
  },
30
31
  "dependencies": {
31
- "@metamask/utils": "^6.2.0",
32
+ "@metamask/utils": "^8.1.0",
32
33
  "immer": "^9.0.6"
33
34
  },
34
35
  "devDependencies": {
@@ -39,9 +40,9 @@
39
40
  "jest": "^27.5.1",
40
41
  "sinon": "^9.2.4",
41
42
  "ts-jest": "^27.1.4",
42
- "typedoc": "^0.22.15",
43
- "typedoc-plugin-missing-exports": "^0.22.6",
44
- "typescript": "~4.6.3"
43
+ "typedoc": "^0.24.8",
44
+ "typedoc-plugin-missing-exports": "^2.0.0",
45
+ "typescript": "~4.8.4"
45
46
  },
46
47
  "engines": {
47
48
  "node": ">=16.0.0"