@metamask-previews/phishing-controller 17.0.0-preview-55f73f6ce → 17.1.0-preview-4f74a56
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 +12 -4
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [17.1.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Add `getApprovals` method and messenger action to fetch token approvals with security enrichments from the security alerts API ([#8074](https://github.com/MetaMask/core/pull/8074))
|
|
@@ -20,6 +22,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
22
|
|
|
21
23
|
### Changed
|
|
22
24
|
|
|
25
|
+
- `PhishingController` no longer advances `c2DomainBlocklistLastFetched` when the C2 domain blocklist fetch fails, allowing the blocklist to be retried on the next update cycle ([#8250](https://github.com/MetaMask/core/pull/8250))
|
|
26
|
+
- Reduce default cache TTL for `DEFAULT_URL_SCAN_CACHE_TTL`, `DEFAULT_TOKEN_SCAN_CACHE_TTL`, and `DEFAULT_ADDRESS_SCAN_CACHE_TTL` from 15 minutes to 1 minute ([#8254](https://github.com/MetaMask/core/pull/8254))
|
|
27
|
+
- Bump `@metamask/base-controller` from `^9.0.0` to `^9.0.1` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
28
|
+
- Bump `@metamask/messenger` from `^0.3.0` to `^1.0.0` ([#8317](https://github.com/MetaMask/core/pull/8317))
|
|
29
|
+
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.3.1` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301), [#8313](https://github.com/MetaMask/core/pull/8313), [#8317](https://github.com/MetaMask/core/pull/8317))
|
|
30
|
+
|
|
31
|
+
### Deprecated
|
|
32
|
+
|
|
23
33
|
- Deprecate `test` method in favor of `testOrigin` ([#8269](https://github.com/MetaMask/core/pull/8269))
|
|
24
34
|
- The `test` method is now renamed to `testOrigin` to better reflect its purpose of testing a domain origin for phishing.
|
|
25
35
|
- The old `test` method is still present but is now marked as deprecated and will be removed in a future release.
|
|
@@ -29,9 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
29
39
|
- `MaybeUpdateState` is now `PhishingControllerMaybeUpdateStateAction`.
|
|
30
40
|
- The old types are still exported but are now marked as deprecated and will
|
|
31
41
|
be removed in a future release.
|
|
32
|
-
- `PhishingController` no longer advances `c2DomainBlocklistLastFetched` when the C2 domain blocklist fetch fails, allowing the blocklist to be retried on the next update cycle ([#8250](https://github.com/MetaMask/core/pull/8250))
|
|
33
|
-
- Reduce default cache TTL for `DEFAULT_URL_SCAN_CACHE_TTL`, `DEFAULT_TOKEN_SCAN_CACHE_TTL`, and `DEFAULT_ADDRESS_SCAN_CACHE_TTL` from 15 minutes to 1 minute ([#8254](https://github.com/MetaMask/core/pull/8254))
|
|
34
|
-
- Bump `@metamask/transaction-controller` from `^63.0.0` to `^63.2.0` ([#8272](https://github.com/MetaMask/core/pull/8272), [#8301](https://github.com/MetaMask/core/pull/8301))
|
|
35
42
|
|
|
36
43
|
## [17.0.0]
|
|
37
44
|
|
|
@@ -565,7 +572,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
565
572
|
|
|
566
573
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
567
574
|
|
|
568
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@17.
|
|
575
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@17.1.0...HEAD
|
|
576
|
+
[17.1.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@17.0.0...@metamask/phishing-controller@17.1.0
|
|
569
577
|
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.3.0...@metamask/phishing-controller@17.0.0
|
|
570
578
|
[16.3.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.2.0...@metamask/phishing-controller@16.3.0
|
|
571
579
|
[16.2.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@16.1.0...@metamask/phishing-controller@16.2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/phishing-controller",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.1.0-preview-4f74a56",
|
|
4
4
|
"description": "Maintains a periodically updated list of approved and unapproved website origins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@metamask/base-controller": "^9.0.
|
|
51
|
+
"@metamask/base-controller": "^9.0.1",
|
|
52
52
|
"@metamask/controller-utils": "^11.19.0",
|
|
53
|
-
"@metamask/messenger": "^0.
|
|
54
|
-
"@metamask/transaction-controller": "^63.
|
|
53
|
+
"@metamask/messenger": "^1.0.0",
|
|
54
|
+
"@metamask/transaction-controller": "^63.3.1",
|
|
55
55
|
"@noble/hashes": "^1.8.0",
|
|
56
56
|
"@types/punycode": "^2.1.0",
|
|
57
57
|
"ethereum-cryptography": "^2.1.2",
|