@metamask-previews/phishing-controller 12.3.2-preview-5b37150f → 12.4.0-preview-edbe12d8
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 +15 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [12.4.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add `scanURL` to `PhishingController` ([#5319](https://github.com/MetaMask/core/pull/5319))
|
|
15
|
+
- Add `PhishingDetectionScanResult` ([#5319](https://github.com/MetaMask/core/pull/5319))
|
|
16
|
+
- Add `RecommendedAction` to `PhishingDetectionScanResult` ([#5319](https://github.com/MetaMask/core/pull/5319))
|
|
17
|
+
- Add `getHostnameFromWebUrl` to only get hostnames on web URLs. ([#5319](https://github.com/MetaMask/core/pull/5319))
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Fixed `getHostnameFromUrl` to return null when the URL's hostname only contains '.' ([#5319](https://github.com/MetaMask/core/pull/5319))
|
|
22
|
+
|
|
10
23
|
## [12.3.2]
|
|
11
24
|
|
|
12
25
|
### Changed
|
|
@@ -324,7 +337,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
324
337
|
|
|
325
338
|
All changes listed after this point were applied to this package following the monorepo conversion.
|
|
326
339
|
|
|
327
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.
|
|
340
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.4.0...HEAD
|
|
341
|
+
[12.4.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.3.2...@metamask/phishing-controller@12.4.0
|
|
328
342
|
[12.3.2]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.3.1...@metamask/phishing-controller@12.3.2
|
|
329
343
|
[12.3.1]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.3.0...@metamask/phishing-controller@12.3.1
|
|
330
344
|
[12.3.0]: https://github.com/MetaMask/core/compare/@metamask/phishing-controller@12.2.0...@metamask/phishing-controller@12.3.0
|
package/package.json
CHANGED