Skip to content

Commit 0176346

Browse files
authored
Release/820.0.0 (#7979)
## Explanation Bump phishing-controller version. ## 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? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## 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 communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily version/changelog/lockfile updates; runtime impact is limited to pulling in the newer `@metamask/phishing-controller` behavior. > > **Overview** > Bumps the monorepo release version to `820.0.0`. > > Updates `@metamask/phishing-controller` to `16.3.0` and consumes it from `@metamask/assets-controllers`, with changelog entries and lockfile updates reflecting the new version. `16.3.0` adds `bulkScanTokens` support for non-EVM chain identifiers like `solana` and exposes additional token-scan types/values. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 07d315e. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 8a575e8 commit 0176346

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
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": "819.0.0",
3+
"version": "820.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {

packages/assets-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Bump `@metamask/phishing-controller` from `^16.2.0` to `^16.3.0` ([#7979](https://github.com/MetaMask/core/pull/7979))
13+
1014
## [99.4.0]
1115

1216
### Added

packages/assets-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@metamask/network-controller": "^29.0.0",
7272
"@metamask/network-enablement-controller": "^4.1.0",
7373
"@metamask/permission-controller": "^12.2.0",
74-
"@metamask/phishing-controller": "^16.2.0",
74+
"@metamask/phishing-controller": "^16.3.0",
7575
"@metamask/polling-controller": "^16.0.2",
7676
"@metamask/preferences-controller": "^22.1.0",
7777
"@metamask/profile-sync-controller": "^27.1.0",

packages/phishing-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [16.3.0]
11+
1012
### Added
1113

1214
- Add support for Solana (`solana`) as a chain identifier in `bulkScanTokens` ([#7923](https://github.com/MetaMask/core/pull/7923))
@@ -526,7 +528,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
526528

527529
All changes listed after this point were applied to this package following the monorepo conversion.
528530

529-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.2.0...HEAD
531+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.3.0...HEAD
532+
[16.3.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.2.0...@metamask/phishing-controller@16.3.0
530533
[16.2.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.1.0...@metamask/phishing-controller@16.2.0
531534
[16.1.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.0.0...@metamask/phishing-controller@16.1.0
532535
[16.0.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@15.0.1...@metamask/phishing-controller@16.0.0

packages/phishing-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/phishing-controller",
3-
"version": "16.2.0",
3+
"version": "16.3.0",
44
"description": "Maintains a periodically updated list of approved and unapproved website origins",
55
"keywords": [
66
"MetaMask",

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2580,7 +2580,7 @@ __metadata:
25802580
"@metamask/network-controller": "npm:^29.0.0"
25812581
"@metamask/network-enablement-controller": "npm:^4.1.0"
25822582
"@metamask/permission-controller": "npm:^12.2.0"
2583-
"@metamask/phishing-controller": "npm:^16.2.0"
2583+
"@metamask/phishing-controller": "npm:^16.3.0"
25842584
"@metamask/polling-controller": "npm:^16.0.2"
25852585
"@metamask/preferences-controller": "npm:^22.1.0"
25862586
"@metamask/profile-sync-controller": "npm:^27.1.0"
@@ -4361,7 +4361,7 @@ __metadata:
43614361
languageName: unknown
43624362
linkType: soft
43634363

4364-
"@metamask/phishing-controller@npm:^16.1.0, @metamask/phishing-controller@npm:^16.2.0, @metamask/phishing-controller@workspace:packages/phishing-controller":
4364+
"@metamask/phishing-controller@npm:^16.1.0, @metamask/phishing-controller@npm:^16.3.0, @metamask/phishing-controller@workspace:packages/phishing-controller":
43654365
version: 0.0.0-use.local
43664366
resolution: "@metamask/phishing-controller@workspace:packages/phishing-controller"
43674367
dependencies:

0 commit comments

Comments
 (0)