Skip to content

Commit cea02f8

Browse files
authored
Merge pull request MetaMask#15173 from MetaMask/Version-v10.18.0
Version v10.18.0 RC
2 parents 39e02fe + 74bdf04 commit cea02f8

File tree

121 files changed

+5880
-2519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+5880
-2519
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ version: 2.1
33
executors:
44
node-browsers:
55
docker:
6-
- image: circleci/node:14-browsers
6+
- image: circleci/node:16-browsers
77
node-browsers-medium-plus:
88
docker:
9-
- image: circleci/node:14-browsers
9+
- image: circleci/node:16-browsers
1010
resource_class: medium+
1111
environment:
1212
NODE_OPTIONS: --max_old_space_size=2048

.circleci/scripts/chrome-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ set -u
55
set -o pipefail
66

77
# To get the latest version, see <https://www.ubuntuupdates.org/ppa/google_chrome?dist=stable>
8-
CHROME_VERSION='102.0.5005.61-1'
8+
CHROME_VERSION='103.0.5060.53-1'
99
CHROME_BINARY="google-chrome-stable_${CHROME_VERSION}_amd64.deb"
1010
CHROME_BINARY_URL="https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/${CHROME_BINARY}"
1111

1212
# To retrieve this checksum, run the `wget` and `shasum` commands below
13-
CHROME_BINARY_SHA512SUM='dd701b99febf7d927657f38716d90f3a0b967ae75dac5f6e8fbf9df632c8a531ccb9f37ee09340ad730b4fe40d0564c1b64201121d2d3e4e503f3f167ca632cd'
13+
CHROME_BINARY_SHA512SUM='36f4e79f46cb71c1431dccf1489f5f8e89d35204a717a4618c7f6f638123ddc2b37bd5cbd00498be8f84c7713149f2faa447cb6da3518be1cb9703e99d110e1a'
1414

1515
wget -O "${CHROME_BINARY}" -t 5 "${CHROME_BINARY_URL}"
1616

.circleci/scripts/firefox-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
set -u
55
set -o pipefail
66

7-
FIREFOX_VERSION='83.0'
7+
FIREFOX_VERSION='102.0'
88
FIREFOX_BINARY="firefox-${FIREFOX_VERSION}.tar.bz2"
99
FIREFOX_BINARY_URL="https://ftp.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/linux-x86_64/en-US/${FIREFOX_BINARY}"
1010
FIREFOX_PATH='/opt/firefox'

.metamaskrc.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ONBOARDING_V2=
66
SWAPS_USE_DEV_APIS=
77
COLLECTIBLES_V1=
88
TOKEN_DETECTION_V2=
9+
ADD_POPULAR_NETWORKS=
910

1011
; Set this to test changes to the phishing warning page.
1112
PHISHING_WARNING_PAGE_URL=

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v14
1+
v16

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [10.18.0]
10+
### Added
11+
- Add setApprovalForAll confirmation view so granted permissions are displayed in a digested manner, instead of a simple contract interaction([#15010](https://github.com/MetaMask/metamask-extension/pull/15010))
12+
- Add warning when performing a Send directly to a token contract([#13588](https://github.com/MetaMask/metamask-extension/pull/13588))
13+
14+
### Changed
15+
- Update Optimism ChainID from Kovan to Goerli ([#15119](https://github.com/MetaMask/metamask-extension/pull/15119))
16+
17+
### Fixed
18+
- Fix one of the possible causes for "Sending to a random cached address", by removing the global transaction state from the Send flow ([#14777](https://github.com/MetaMask/metamask-extension/pull/14777))
19+
- Fix Chinese translation for the message of Importing repeated tokens ([#14994](https://github.com/MetaMask/metamask-extension/pull/14994))
20+
- Fix Japanese translation for the word Sign ([#15078](https://github.com/MetaMask/metamask-extension/pull/15078))
21+
- Fix partially the error "Seedphrase is invalid" by disabling Seedphrase Import button after switching the Seedphrase length ([#15139](https://github.com/MetaMask/metamask-extension/pull/15139))
22+
- Fix Edit Transaction flow by ensuring that changing a tx from a Transfer to a Send resets data and updates tx type ([#15248](https://github.com/MetaMask/metamask-extension/pull/15248))
23+
- Fix UI on Import Seedphrase page by disabling Import button, if any of the characters of the Seedphrase is in uppercase ([#15186](https://github.com/MetaMask/metamask-extension/pull/15186))
24+
925
## [10.17.0]
1026
### Added
1127
- Add cost estimation for canceling a Smart Transaction on Awaiting Swap page ([#15011](https://github.com/MetaMask/metamask-extension/pull/15011))
@@ -3068,7 +3084,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30683084
### Uncategorized
30693085
- Added the ability to restore accounts from seed words.
30703086

3071-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.17.0...HEAD
3087+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.18.0...HEAD
3088+
[10.18.0]: https://github.com/MetaMask/metamask-extension/compare/v10.17.0...v10.18.0
30723089
[10.17.0]: https://github.com/MetaMask/metamask-extension/compare/v10.16.2...v10.17.0
30733090
[10.16.2]: https://github.com/MetaMask/metamask-extension/compare/v10.16.1...v10.16.2
30743091
[10.16.1]: https://github.com/MetaMask/metamask-extension/compare/v10.16.0...v10.16.1

app/_locales/en/messages.json

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/ja/messages.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/zh/messages.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/zh_CN/messages.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)