Skip to content

Commit 99d80da

Browse files
committed
update
2 parents c0543d6 + 3b325d7 commit 99d80da

File tree

179 files changed

+15330
-5105
lines changed

Some content is hidden

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

179 files changed

+15330
-5105
lines changed

.github/workflows/check-pr-max-lines.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ permissions:
1717

1818
jobs:
1919
check-pr-max-lines:
20-
uses: metamask/github-tools/.github/workflows/pr-line-check.yml@main
21-
with:
22-
max_lines: 1000
23-
ignore_patterns: '(\.lock|\.snap|lavamoat\/.*policy\.json)$'
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Check PR lines changed
23+
uses: MetaMask/github-tools/.github/actions/pr-line-check@v1
24+
with:
25+
max-lines: '1000'
26+
ignore-patterns: '(\.lock|\.snap|lavamoat\/.*policy\.json)$'

.github/workflows/flaky-test-report.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@ on:
44
schedule:
55
# Once every day from Monday-Friday at 08:00 UTC
66
- cron: 0 8 * * 1-5
7+
workflow_dispatch:
78

89
permissions:
910
contents: read
1011
actions: read
1112

1213
jobs:
1314
flaky-test-report:
14-
uses: MetaMask/github-tools/.github/workflows/flaky-test-report.yml@main
15-
with:
16-
repository: ${{ github.event.repository.name }}
17-
workflow_id: main.yml
18-
secrets:
19-
github-token: ${{ secrets.GITHUB_TOKEN }}
20-
slack-webhook-flaky-tests: ${{ secrets.SLACK_WEBHOOK_FLAKY_TESTS }}
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Generate flaky test report
18+
uses: MetaMask/github-tools/.github/actions/flaky-test-report@v1
19+
with:
20+
repository: ${{ github.event.repository.name }}
21+
workflow-id: main.yml
22+
github-token: ${{ secrets.GITHUB_TOKEN }}
23+
slack-webhook-flaky-tests: ${{ secrets.SLACK_WEBHOOK_FLAKY_TESTS }}

.github/workflows/post-merge-validation.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ name: Post Merge Validation
33
on:
44
schedule:
55
- cron: '0 7 * * *'
6+
workflow_dispatch:
67

78
jobs:
89
post-merge-validation-tracker:
9-
uses: MetaMask/github-tools/.github/workflows/post-merge-validation.yml@main
10-
with:
11-
repo: ${{ github.repository }}
12-
start_hour_utc: 7
13-
secrets:
14-
github-token: ${{ secrets.GITHUB_TOKEN }}
15-
google-application-creds-base64: ${{ secrets.GCP_RLS_SHEET_ACCOUNT_BASE64 }}
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Run post-merge validation
13+
uses: MetaMask/github-tools/.github/actions/post-merge-validation@v1
14+
with:
15+
repo: ${{ github.repository }}
16+
start-hour-utc: '7'
17+
github-token: ${{ secrets.GITHUB_TOKEN }}
18+
google-application-creds-base64: ${{ secrets.GCP_RLS_SHEET_ACCOUNT_BASE64 }}

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [13.10.1]
11+
12+
### Fixed
13+
14+
- Prevents token list from fetching balances for all accounts (#38065)
15+
- Fixes dapp-swap comparison fiat rate fetching for native tokens (#37980)
16+
- Fixes dapp-swap fix conversion rate for pol native token (#38102)
17+
- Removes unnecessary extension permission (#38075)
18+
- Fixes missing native token balances in wallet balance (#38126)
19+
1020
## [13.10.0]
1121

1222
### Added
@@ -1217,7 +1227,8 @@ authorized by the user.` error until the user fully revoked dapp
12171227
- This changelog was split off with 12.22.0
12181228
- All older changes can be found in [docs/CHANGELOG_older.md](https://github.com/MetaMask/metamask-extension/blob/main/docs/CHANGELOG_older.md)
12191229

1220-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.0...HEAD
1230+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v13.10.1...HEAD
1231+
[13.10.1]: https://github.com/MetaMask/metamask-extension/compare/v13.10.0...v13.10.1
12211232
[13.10.0]: https://github.com/MetaMask/metamask-extension/compare/v13.9.0...v13.10.0
12221233
[13.9.0]: https://github.com/MetaMask/metamask-extension/compare/v13.8.0...v13.9.0
12231234
[13.8.0]: https://github.com/MetaMask/metamask-extension/compare/v13.7.0...v13.8.0

0 commit comments

Comments
 (0)