Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version v11.0.0 #20539

Merged
merged 34 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
32fdf08
Version v11.0.0
danjm Aug 19, 2023
d40306f
[FLASK] `[email protected]` (#20069)
FrederikBolding Jul 19, 2023
b0ac8f1
[FLASK] Unblock `personal_sign` for snaps (#19998)
FrederikBolding Jul 21, 2023
04d14e2
Fix snaps E2Es to be compatible with new monorepo-based test-snaps (#…
bowensanders Jul 21, 2023
388e194
Filter out snaps source code and state from UI state (#20136)
FrederikBolding Jul 24, 2023
8e24c21
Remove Snaps execution environment override (#20173)
Mrtenz Jul 25, 2023
7447fe1
[FLASK] Bump Snaps packages (#20230)
Mrtenz Jul 28, 2023
c8f2e8e
Check for blocked snaps on extension startup (#20336)
GuillaumeRx Aug 2, 2023
829901a
UX: Snaps: Make Notifications Font Consistent with Other Global Items…
darkwing Aug 3, 2023
d71ead3
[FLASK] `[email protected]` (#20420)
FrederikBolding Aug 7, 2023
86987d1
`[email protected]` (#20450)
FrederikBolding Aug 15, 2023
5505bc1
[FLASK] Create new E2E test for snaps lifecycle-hooks (#20352)
bowensanders Aug 16, 2023
e9c641d
Enable snaps in stable (#19134)
FrederikBolding Aug 17, 2023
832e0b1
Track usage of snap exports (#20503)
FrederikBolding Aug 17, 2023
c43c29b
Run yarn on Version-v11.0.0 after rebase
danjm Aug 19, 2023
8a05475
Run yarn lavamoat:auto on v11.0.0
danjm Aug 19, 2023
f104fac
Fix v11 RC build issues (#20540)
FrederikBolding Aug 21, 2023
01a4b69
[FLASK] Fix regression in transaction confirmation tabs (#20267)
Mrtenz Aug 21, 2023
67ee8aa
Update v11 changelog (#20553)
FrederikBolding Aug 22, 2023
2db86c8
Update derivation paths used by snaps (#20558)
FrederikBolding Aug 23, 2023
ad6f7aa
Merge branch 'master' into Version-v11.0.0
FrederikBolding Aug 23, 2023
1e0edaa
Update snaps URLs (#20582)
FrederikBolding Aug 24, 2023
8d63fab
Update snaps-related copy (#20601)
Mrtenz Aug 25, 2023
a292158
Always show connected accounts permissions if they exist (#20600)
Mrtenz Aug 25, 2023
a1ae305
Track snap uninstalls (#20624)
FrederikBolding Aug 28, 2023
ebae98d
Bump snaps packages to `1.0.2` (#20643)
FrederikBolding Aug 29, 2023
01786ad
Fix missing property on snap export metric (#20685)
FrederikBolding Sep 1, 2023
7cb69ce
Merge branch 'master' into Version-v11.0.0
FrederikBolding Sep 1, 2023
10ccbfc
Fix v11 RC issues following merge (#20690)
FrederikBolding Sep 1, 2023
da13810
Reduce logging in production builds (#20694)
Gudahtt Sep 4, 2023
6ac82ce
Add what's new popup for snaps (#20686)
FrederikBolding Sep 4, 2023
6c7da3e
Add missing derivation path names (#20735)
Mrtenz Sep 5, 2023
2af52bb
Use versioned URL for `manageAccounts` test (#20739)
FrederikBolding Sep 5, 2023
b72df43
Update Snap privacy warning content (#20741)
david0xd Sep 5, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 82 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,14 @@ workflows:
- prep-build-test
- test-e2e-chrome-snaps:
requires:
- prep-build-test-flask
- prep-build-test
- test-e2e-firefox-snaps:
requires:
- prep-build-test
- test-e2e-chrome-snaps-flask:
requires:
- prep-build-test-flask
- test-e2e-firefox-snaps-flask:
requires:
- prep-build-test-flask
- test-e2e-chrome-mv3:
Expand Down Expand Up @@ -770,6 +776,80 @@ jobs:
destination: test-artifacts

test-e2e-firefox-snaps:
executor: node-browsers
parallelism: 4
steps:
- run: *shallow-git-clone
- run:
name: Install Firefox
command: ./.circleci/scripts/firefox-install.sh
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test ./dist
- run:
name: Move test zips to builds
command: mv ./builds-test ./builds
- run:
name: test:e2e:firefox:snaps
command: |
if .circleci/scripts/test-run-e2e.sh
then
yarn test:e2e:firefox:snaps --retries 2 --debug --build-type=main
fi
no_output_timeout: 20m
- run:
name: Merge JUnit report
command: |
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
- store_test_results:
path: test/test-results/e2e.xml

test-e2e-chrome-snaps:
executor: node-browsers
parallelism: 4
steps:
- run: *shallow-git-clone
- run:
name: Re-Install Chrome
command: ./.circleci/scripts/chrome-install.sh
- attach_workspace:
at: .
- run:
name: Move test build to dist
command: mv ./dist-test ./dist
- run:
name: Move test zips to builds
command: mv ./builds-test ./builds
- run:
name: test:e2e:chrome:snaps
command: |
if .circleci/scripts/test-run-e2e.sh
then
yarn test:e2e:chrome:snaps --retries 2 --debug --build-type=main
fi
no_output_timeout: 20m
- run:
name: Merge JUnit report
command: |
if [ "$(ls -A test/test-results/e2e)" ]; then
yarn test:e2e:report
fi
when: always
- store_artifacts:
path: test-artifacts
destination: test-artifacts
- store_test_results:
path: test/test-results/e2e.xml

test-e2e-firefox-snaps-flask:
executor: node-browsers
parallelism: 4
steps:
Expand Down Expand Up @@ -806,7 +886,7 @@ jobs:
- store_test_results:
path: test/test-results/e2e.xml

test-e2e-chrome-snaps:
test-e2e-chrome-snaps-flask:
executor: node-browsers
parallelism: 4
steps:
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.0.0]
### Added
- [FLASK] Added snaps lifecycle hooks ([#20230](https://github.com/MetaMask/metamask-extension/pull/20230))

### Changed
- [FLASK] Unblock `personal_sign` for snaps ([#19998](https://github.com/MetaMask/metamask-extension/pull/19998))
- [FLASK] Allow disabling markdown in snaps UI ([#20069](https://github.com/MetaMask/metamask-extension/pull/20069))

### Fixed
- [FLASK] Fix regression in transaction confirmation tabs ([#20267](https://github.com/MetaMask/metamask-extension/pull/20267))

## [10.35.1]
### Changed
- Store default gas settings by network ([#20576](https://github.com/MetaMask/metamask-extension/pull/20576), [#20632](https://github.com/MetaMask/metamask-extension/pull/20632))
Expand Down Expand Up @@ -3960,7 +3971,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.35.1...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.0.0...HEAD
[11.0.0]: https://github.com/MetaMask/metamask-extension/compare/v10.35.1...v11.0.0
[10.35.1]: https://github.com/MetaMask/metamask-extension/compare/v10.35.0...v10.35.1
[10.35.0]: https://github.com/MetaMask/metamask-extension/compare/v10.34.5...v10.35.0
[10.34.5]: https://github.com/MetaMask/metamask-extension/compare/v10.34.4...v10.34.5
Expand Down
31 changes: 27 additions & 4 deletions app/_locales/en/messages.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading