Skip to content

Commit 990cb87

Browse files
committed
Merge remote-tracking branch 'origin/main' into refactor/5566-v6
2 parents 0b7c9c4 + 85115d6 commit 990cb87

File tree

67 files changed

+2427
-576
lines changed

Some content is hidden

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

67 files changed

+2427
-576
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -587,12 +587,12 @@ jobs:
587587
588588
# Check E2E jobs only if they should have run
589589
if [[ "${{ needs.needs-e2e.outputs.needs-e2e }}" == "true" ]]; then
590-
if [[ "${{ needs.e2e-chrome.result }}" == "failure" ]]; then
591-
echo "E2E Chrome tests failed"
590+
if [[ "${{ needs.e2e-chrome.result }}" != "success" ]]; then
591+
echo "E2E Chrome tests did not succeed (result: ${{ needs.e2e-chrome.result }})"
592592
exit 1
593593
fi
594-
if [[ "${{ needs.e2e-firefox.result }}" == "failure" ]]; then
595-
echo "E2E Firefox tests failed"
594+
if [[ "${{ needs.e2e-firefox.result }}" != "success" ]]; then
595+
echo "E2E Firefox tests did not succeed (result: ${{ needs.e2e-firefox.result }})"
596596
exit 1
597597
fi
598598
fi

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [13.10.4]
11+
12+
### Fixed
13+
14+
- Signed deep links with empty `sig_params` with extra params as valid (#38142)
15+
- Adds mon as currency to fetch prices (#38261)
16+
- Removes sidepanel from chrome manifest files (#38242)
17+
1018
## [13.10.3]
1119

1220
### Fixed
@@ -1239,7 +1247,8 @@ authorized by the user.` error until the user fully revoked dapp
12391247
- This changelog was split off with 12.22.0
12401248
- All older changes can be found in [docs/CHANGELOG_older.md](https://github.com/MetaMask/metamask-extension/blob/main/docs/CHANGELOG_older.md)
12411249

1242-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.3...HEAD
1250+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.4...HEAD
1251+
[13.10.4]: https://github.com/MetaMask/metamask-extension/compare/v13.10.3...v13.10.4
12431252
[13.10.3]: https://github.com/MetaMask/metamask-extension/compare/v13.10.2...v13.10.3
12441253
[13.10.2]: https://github.com/MetaMask/metamask-extension/compare/v13.10.1...v13.10.2
12451254
[13.10.1]: https://github.com/MetaMask/metamask-extension/compare/v13.10.0...v13.10.1

app/_locales/de/messages.json

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

app/_locales/el/messages.json

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

app/_locales/en/messages.json

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

app/_locales/en_GB/messages.json

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

app/_locales/es/messages.json

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

app/_locales/fr/messages.json

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

app/_locales/ga/messages.json

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

app/_locales/hi/messages.json

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

0 commit comments

Comments
 (0)