From fd86ae9ff35f0985bb5b3f3d2a5a08f23b6d0cbd Mon Sep 17 00:00:00 2001 From: MetaMask Bot Date: Thu, 25 Nov 2021 12:34:07 +0000 Subject: [PATCH 1/4] Version v10.6.4 --- CHANGELOG.md | 15 ++++++++++++++- package.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f6eaabe0..837d8a3e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [10.6.4] +### Uncategorized +- Version v10.6.3 RC ([#12830](https://github.com/MetaMask/metamask-extension/pull/12830)) +- Ensure that handleChange in token-input.component handles empty values ([#12835](https://github.com/MetaMask/metamask-extension/pull/12835)) +- Update changelog +- Convert token input to BigNumber to handle decimals. ([#12773](https://github.com/MetaMask/metamask-extension/pull/12773)) +- We shouldn't be changing decimal places as user type, we should do that on blur. ([#12631](https://github.com/MetaMask/metamask-extension/pull/12631)) +- Update changelog for v10.6.3 +- Bump @metmamask/logo to v3.1.1 ([#12822](https://github.com/MetaMask/metamask-extension/pull/12822)) +- Fix "BigNumber Error: times() number type has more than 15 significant digits:" ([#12802](https://github.com/MetaMask/metamask-extension/pull/12802)) +- Version v10.6.3 + ## [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 +2621,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 diff --git a/package.json b/package.json index 3db83b990..80af3249a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "metamask-crx", - "version": "10.6.3", + "version": "10.6.4", "private": true, "repository": { "type": "git", From e0d497031db6f91b7725caa43dbd8c5017efd5ca Mon Sep 17 00:00:00 2001 From: Mingliang Liu Date: Thu, 25 Nov 2021 02:48:01 +0800 Subject: [PATCH 2/4] update scams and network security risks link (#12752) --- ui/pages/confirmation/templates/add-ethereum-chain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pages/confirmation/templates/add-ethereum-chain.js b/ui/pages/confirmation/templates/add-ethereum-chain.js index a9c85c53d..a56565692 100644 --- a/ui/pages/confirmation/templates/add-ethereum-chain.js +++ b/ui/pages/confirmation/templates/add-ethereum-chain.js @@ -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', }, }, From b6470bfab9c773d4737b85c41fe9c63fc28b369c Mon Sep 17 00:00:00 2001 From: Thomas Huang Date: Thu, 25 Nov 2021 05:47:33 -0600 Subject: [PATCH 3/4] Ignore sentry server errors in e2e tests (#12843) * Ignore sentry server errors in e2e tests * Update test/e2e/webdriver/driver.js Co-authored-by: Mark Stacey Co-authored-by: Dan J Miller Co-authored-by: Mark Stacey --- test/e2e/webdriver/driver.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/webdriver/driver.js b/test/e2e/webdriver/driver.js index 501feeaef..0b6cfef4d 100644 --- a/test/e2e/webdriver/driver.js +++ b/test/e2e/webdriver/driver.js @@ -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( From 3210340a9728cb29fb47c680ae3ccc65a6fc559d Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Thu, 25 Nov 2021 09:42:08 -0330 Subject: [PATCH 4/4] Update changelog for v10.6.4 --- CHANGELOG.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 837d8a3e0..95c6dbee3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,16 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [10.6.4] -### Uncategorized -- Version v10.6.3 RC ([#12830](https://github.com/MetaMask/metamask-extension/pull/12830)) -- Ensure that handleChange in token-input.component handles empty values ([#12835](https://github.com/MetaMask/metamask-extension/pull/12835)) -- Update changelog -- Convert token input to BigNumber to handle decimals. ([#12773](https://github.com/MetaMask/metamask-extension/pull/12773)) -- We shouldn't be changing decimal places as user type, we should do that on blur. ([#12631](https://github.com/MetaMask/metamask-extension/pull/12631)) -- Update changelog for v10.6.3 -- Bump @metmamask/logo to v3.1.1 ([#12822](https://github.com/MetaMask/metamask-extension/pull/12822)) -- Fix "BigNumber Error: times() number type has more than 15 significant digits:" ([#12802](https://github.com/MetaMask/metamask-extension/pull/12802)) -- Version v10.6.3 +### 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