Merge pull request #12852 from MetaMask/Version-v10.6.4

Version v10.6.4 RC
feature/default_network_editable
Dan J Miller 3 years ago committed by GitHub
commit 0bff79254e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      CHANGELOG.md
  2. 2
      package.json
  3. 2
      test/e2e/webdriver/driver.js
  4. 2
      ui/pages/confirmation/templates/add-ethereum-chain.js

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [10.6.4]
### Changed
- [#12752](https://github.com/MetaMask/metamask-extension/pull/12752): Update link, in the add network flow, to the article with information about network security risks
## [10.6.3]
### Fixed
- [##12822](https://github.com/MetaMask/metamask-extension/pull/#12822): Fix `replaceChildren` and `function.prototype.apply` errors that could make the app unusable on older browsers due to a bug in our logo component.
@ -2609,7 +2613,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Uncategorized
- Added the ability to restore accounts from seed words.
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.6.4...HEAD
[10.6.4]: https://github.com/MetaMask/metamask-extension/compare/v10.6.3...v10.6.4
[10.6.3]: https://github.com/MetaMask/metamask-extension/compare/v10.6.2...v10.6.3
[10.6.2]: https://github.com/MetaMask/metamask-extension/compare/v10.6.1...v10.6.2
[10.6.1]: https://github.com/MetaMask/metamask-extension/compare/v10.6.0...v10.6.1

@ -1,6 +1,6 @@
{
"name": "metamask-crx",
"version": "10.6.3",
"version": "10.6.4",
"private": true,
"repository": {
"type": "git",

@ -351,6 +351,8 @@ class Driver {
const ignoredErrorMessages = [
// Third-party Favicon 404s show up as errors
'favicon.ico - Failed to load resource: the server responded with a status of 404 (Not Found)',
// Sentry rate limiting
'Failed to load resource: the server responded with a status of 429',
];
const browserLogs = await this.driver.manage().logs().get('browser');
const errorEntries = browserLogs.filter(

@ -153,7 +153,7 @@ function getValues(pendingApproval, t, actions) {
key: 'addEthereumChainConfirmationRisksLearnMoreLink',
props: {
href:
'https://metamask.zendesk.com/hc/en-us/articles/360056196151',
'https://metamask.zendesk.com/hc/en-us/articles/4404424659995',
target: '__blank',
},
},

Loading…
Cancel
Save