Skip to content

Commit 109ebe0

Browse files
kantheshaGudahtt
andauthored
Release 146.0.0 (#4232)
## Explanation <!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? * Are there any changes whose purpose might not obvious to those unfamiliar with the domain? * If your primary goal was to update one package but you found you had to update another one along the way, why did you do so? * If you had to upgrade a dependency, why did you do so? --> ## This release includes ### Phishing Controller - Update to the pooling intervals - Bump controller-utils version to `~9.1.0` - Bump TypeScript version to `~4.9.5` ### Base Controller - Bump TypeScript version to `~4.9.5` - Fix misnamed parameter name ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? For example: * Fixes #12345 * Related to #67890 --> * Fixes #4231 ## Changelog <!-- If you're making any consumer-facing changes, list those changes here as if you were updating a changelog, using the template below as a guide. (CATEGORY is one of BREAKING, ADDED, CHANGED, DEPRECATED, REMOVED, or FIXED. For security-related issues, follow the Security Advisory process.) Please take care to name the exact pieces of the API you've added or changed (e.g. types, interfaces, functions, or methods). If there are any breaking changes, make sure to offer a solution for consumers to follow once they upgrade to the changes. Finally, if you're only making changes to development scripts or tests, you may replace the template below with "None". --> ### `@metamask/phishing-controller` - **<Changed>**: Updated pooling intervals, stalelist to 30 days and hotlist to 5 mins - **<Changed>**: Bump TypeScript version to `~4.9.5` ### `@metamask/base-controller` - **<Changed>**: Bump TypeScript version to `~4.9.5` ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've highlighted breaking changes using the "BREAKING" category above as appropriate --------- Co-authored-by: Mark Stacey <[email protected]>
1 parent 8c80ba4 commit 109ebe0

File tree

30 files changed

+74
-56
lines changed

30 files changed

+74
-56
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "145.0.0",
3+
"version": "146.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"dependencies": {
4444
"@ethereumjs/util": "^8.1.0",
45-
"@metamask/base-controller": "^5.0.1",
45+
"@metamask/base-controller": "^5.0.2",
4646
"@metamask/eth-snap-keyring": "^4.0.0",
4747
"@metamask/keyring-api": "^6.0.0",
4848
"@metamask/snaps-sdk": "^4.0.1",

packages/address-book-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^5.0.1",
44+
"@metamask/base-controller": "^5.0.2",
4545
"@metamask/controller-utils": "^9.1.0",
4646
"@metamask/utils": "^8.3.0"
4747
},

packages/announcement-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^5.0.1"
44+
"@metamask/base-controller": "^5.0.2"
4545
},
4646
"devDependencies": {
4747
"@metamask/auto-changelog": "^3.4.4",

packages/approval-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^5.0.1",
44+
"@metamask/base-controller": "^5.0.2",
4545
"@metamask/rpc-errors": "^6.2.1",
4646
"@metamask/utils": "^8.3.0",
4747
"nanoid": "^3.1.31"

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"@metamask/abi-utils": "^2.0.2",
5050
"@metamask/accounts-controller": "^13.0.0",
5151
"@metamask/approval-controller": "^6.0.1",
52-
"@metamask/base-controller": "^5.0.1",
52+
"@metamask/base-controller": "^5.0.2",
5353
"@metamask/contract-metadata": "^2.4.0",
5454
"@metamask/controller-utils": "^9.1.0",
5555
"@metamask/eth-query": "^4.0.0",

packages/base-controller/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [5.0.2]
11+
12+
### Changed
13+
14+
- Bump TypeScript version to `~4.9.5` ([#4084](https://github.com/MetaMask/core/pull/4084))
15+
1016
## [5.0.1]
1117

1218
### Fixed
@@ -201,7 +207,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
201207

202208
All changes listed after this point were applied to this package following the monorepo conversion.
203209

204-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
210+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/[email protected]
211+
[5.0.2]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
205212
[5.0.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
206213
[5.0.0]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]
207214
[4.1.1]: https://github.com/MetaMask/core/compare/@metamask/[email protected]...@metamask/[email protected]

packages/base-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/base-controller",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "Provides scaffolding for controllers as well a communication system for all controllers",
55
"keywords": [
66
"MetaMask",

packages/composable-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^5.0.1"
44+
"@metamask/base-controller": "^5.0.2"
4545
},
4646
"devDependencies": {
4747
"@metamask/auto-changelog": "^3.4.4",

packages/ens-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"dependencies": {
4444
"@ethersproject/providers": "^5.7.0",
45-
"@metamask/base-controller": "^5.0.1",
45+
"@metamask/base-controller": "^5.0.2",
4646
"@metamask/controller-utils": "^9.1.0",
4747
"@metamask/utils": "^8.3.0",
4848
"punycode": "^2.1.1"

0 commit comments

Comments
 (0)