Skip to content

Commit

Permalink
Merge branch 'develop' into 17191-onboarding-unit-tests-privacy-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tmashuang authored Mar 30, 2023
2 parents 81f4621 + 06fba70 commit 1e6d9f8
Show file tree
Hide file tree
Showing 47 changed files with 1,452 additions and 390 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.27.0]
### Added
- feat: add the ConsenSys zkEVM (Linea) as a default network ([#17875](https://github.com/MetaMask/metamask-extension/pull/17875))

## [10.26.2]
### Changed
- Sign in with Ethereum: re-enable warning UI for mismatched domains / disable domain binding ([#18200](https://github.com/MetaMask/metamask-extension/pull/18200))
Expand Down Expand Up @@ -3536,7 +3540,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.26.2...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v10.27.0...HEAD
[10.27.0]: https://github.com/MetaMask/metamask-extension/compare/v10.26.2...v10.27.0
[10.26.2]: https://github.com/MetaMask/metamask-extension/compare/v10.26.1...v10.26.2
[10.26.1]: https://github.com/MetaMask/metamask-extension/compare/v10.26.0...v10.26.1
[10.26.0]: https://github.com/MetaMask/metamask-extension/compare/v10.25.0...v10.26.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ Whenever you change dependencies (adding, removing, or updating, either in `pack
- [How to use the TREZOR emulator](./docs/trezor-emulator.md)
- [Developing on MetaMask](./development/README.md)
- [How to generate a visualization of this repository's development](./development/gource-viz.sh)
- [How to add new confirmations](./docs/confirmations.md)

## Dapp Developer Resources

Expand Down
46 changes: 45 additions & 1 deletion app/_locales/en/messages.json

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

14 changes: 14 additions & 0 deletions app/manifest/v2/_base.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,19 @@
},
"manifest_version": 2,
"name": "__MSG_appName__",
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://*.codefi.network/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"activeTab",
"webRequest",
"*://*.eth/",
"notifications"
],
"short_name": "__MSG_appName__"
}
16 changes: 1 addition & 15 deletions app/manifest/v2/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "80",
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://*.codefi.network/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"activeTab",
"webRequest",
"*://*.eth/",
"notifications"
]
"minimum_chrome_version": "80"
}
17 changes: 1 addition & 16 deletions app/manifest/v2/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,5 @@
"id": "[email protected]",
"strict_min_version": "78.0"
}
},
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://*.codefi.network/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"activeTab",
"tabs",
"webRequest",
"*://*.eth/",
"notifications"
]
}
}
10 changes: 10 additions & 0 deletions app/manifest/v3/_base.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,15 @@
},
"manifest_version": 3,
"name": "__MSG_appName__",
"permissions": [
"activeTab",
"alarms",
"clipboardWrite",
"notifications",
"scripting",
"storage",
"unlimitedStorage",
"webRequest"
],
"short_name": "__MSG_appName__"
}
16 changes: 1 addition & 15 deletions app/manifest/v3/chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,5 @@
"matches": ["https://metamask.io/*"],
"ids": ["*"]
},
"minimum_chrome_version": "80",
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://*.codefi.network/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"activeTab",
"webRequest",
"*://*.eth/",
"notifications"
]
"minimum_chrome_version": "80"
}
17 changes: 1 addition & 16 deletions app/manifest/v3/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,5 @@
"default_title": "MetaMask",
"default_popup": "popup.html"
},
"manifest_version": 2,
"permissions": [
"storage",
"unlimitedStorage",
"clipboardWrite",
"http://localhost:8545/",
"https://*.infura.io/",
"https://*.codefi.network/",
"https://chainid.network/chains.json",
"https://lattice.gridplus.io/*",
"tabs",
"activeTab",
"webRequest",
"*://*.eth/",
"notifications"
]
"manifest_version": 2
}
Loading

0 comments on commit 1e6d9f8

Please sign in to comment.