From 2bb4e73c2fc17ec86fd3039b8aff79ed8035db4d Mon Sep 17 00:00:00 2001 From: AugmentedMode <31675118+AugmentedMode@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:07:10 -0400 Subject: [PATCH] Release/230.0.0 (#4851) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Explanation The current C2 domain blocklist fetch interval is set to 15 minutes. After discussing with Samczsun, we decided it’s best to lower this interval, as drainers have started switching C2s more quickly since the C2 detection feature was rolled out. By lowering the fetch interval to 5 minutes, we aim to ensure that malicious domains are detected and blocked more promptly. This change only impacts the fetch interval for the C2 blocklist, without altering any other functionality or configurations. ## References ## Changelog ### `@metamask/phishing-controller` - **CHANGED**: Lowered the C2_DOMAIN_BLOCKLIST_REFRESH_INTERVAL from 15 minutes to 5 minutes. ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate - [x] I've prepared draft pull requests for clients and consumer packages to resolve any breaking changes --- package.json | 2 +- packages/phishing-controller/CHANGELOG.md | 9 ++++++++- packages/phishing-controller/package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9102d20778..131d4208ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/core-monorepo", - "version": "229.0.0", + "version": "230.0.0", "private": true, "description": "Monorepo for packages shared between MetaMask clients", "repository": { diff --git a/packages/phishing-controller/CHANGELOG.md b/packages/phishing-controller/CHANGELOG.md index ff9eefd95e..0e3469b535 100644 --- a/packages/phishing-controller/CHANGELOG.md +++ b/packages/phishing-controller/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [12.2.0] + +### Changed + +- Changed the c2 blocklist fetch interval from 15 minutes to 5 minutes ([#4850](https://github.com/MetaMask/core/pull/4850)) + ## [12.1.0] ### Fixed @@ -293,7 +299,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 All changes listed after this point were applied to this package following the monorepo conversion. -[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.1.0...HEAD +[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.2.0...HEAD +[12.2.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.1.0...@metamask/phishing-controller@12.2.0 [12.1.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.0.3...@metamask/phishing-controller@12.1.0 [12.0.3]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.0.2...@metamask/phishing-controller@12.0.3 [12.0.2]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.0.1...@metamask/phishing-controller@12.0.2 diff --git a/packages/phishing-controller/package.json b/packages/phishing-controller/package.json index f171ceccaf..428439e82d 100644 --- a/packages/phishing-controller/package.json +++ b/packages/phishing-controller/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/phishing-controller", - "version": "12.1.0", + "version": "12.2.0", "description": "Maintains a periodically updated list of approved and unapproved website origins", "keywords": [ "MetaMask",