Skip to content

Commit

Permalink
Merge pull request #23381 from MetaMask/Version-v11.11.4
Browse files Browse the repository at this point in the history
v11.11.4
  • Loading branch information
danjm authored Mar 8, 2024
2 parents e260197 + 2602a3b commit a70a36f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.11.4]
### Changed
- Enable Snaps home pages ([#23383](https://github.com/MetaMask/metamask-extension/pull/23383))

### Fixed
- Fix intermittent Snaps installation issues due to faulty validation ([#23380](https://github.com/MetaMask/metamask-extension/pull/23380))

## [11.11.3]

## [11.11.2]
Expand Down Expand Up @@ -4440,7 +4447,8 @@ Update styles and spacing on the critical error page ([#20350](https://github.c
### Uncategorized
- Added the ability to restore accounts from seed words.

[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.11.3...HEAD
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.11.4...HEAD
[11.11.4]: https://github.com/MetaMask/metamask-extension/compare/v11.11.3...v11.11.4
[11.11.3]: https://github.com/MetaMask/metamask-extension/compare/v11.11.2...v11.11.3
[11.11.2]: https://github.com/MetaMask/metamask-extension/compare/v11.11.1...v11.11.2
[11.11.1]: https://github.com/MetaMask/metamask-extension/compare/v11.11.0...v11.11.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamask-crx",
"version": "11.11.3",
"version": "11.11.4",
"private": true,
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion shared/constants/permissions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ describe('EndowmentPermissions', () => {
expect(Object.keys(EndowmentPermissions).sort()).toStrictEqual(
[
'endowment:name-lookup',
'endowment:page-home',
...Object.keys(endowmentPermissionBuilders).filter(
(targetName) =>
!Object.keys(ExcludedSnapEndowments).includes(targetName),
Expand Down
4 changes: 1 addition & 3 deletions shared/constants/snaps/permissions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const EndowmentPermissions = Object.freeze({
'endowment:rpc': 'endowment:rpc',
'endowment:webassembly': 'endowment:webassembly',
'endowment:lifecycle-hooks': 'endowment:lifecycle-hooks',
///: BEGIN:ONLY_INCLUDE_IF(build-flask)
'endowment:page-home': 'endowment:page-home',
///: BEGIN:ONLY_INCLUDE_IF(build-flask)
'endowment:name-lookup': 'endowment:name-lookup',
///: END:ONLY_INCLUDE_IF
///: BEGIN:ONLY_INCLUDE_IF(keyring-snaps)
Expand All @@ -25,8 +25,6 @@ export const ExcludedSnapEndowments = Object.freeze({
'endowment:signature-insight':
'This endowment is in development and therefore not available.',
///: BEGIN:ONLY_INCLUDE_IF(build-main)
'endowment:page-home':
'This endowment is experimental and therefore not available.',
'endowment:name-lookup':
'This endowment is experimental and therefore not available.',
///: END:ONLY_INCLUDE_IF
Expand Down
1 change: 0 additions & 1 deletion test/e2e/run-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const { loadBuildTypesConfig } = require('../../development/lib/build-type');
const FLASK_ONLY_TESTS = [
'test-snap-txinsights-v2.spec.js',
'test-snap-namelookup.spec.js',
'test-snap-homepage.spec.js',
];

const getTestPathsForTestDir = async (testDir) => {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4835,14 +4835,14 @@ __metadata:
linkType: hard

"@metamask/snaps-registry@npm:^3.0.0":
version: 3.0.0
resolution: "@metamask/snaps-registry@npm:3.0.0"
version: 3.0.1
resolution: "@metamask/snaps-registry@npm:3.0.1"
dependencies:
"@metamask/utils": "npm:^8.1.0"
"@metamask/utils": "npm:^8.3.0"
"@noble/curves": "npm:^1.2.0"
"@noble/hashes": "npm:^1.3.2"
superstruct: "npm:^1.0.3"
checksum: 3c6066807f214cf2cad1dc084b928dcd5b2c98cb09e3e38111ef56ed199f643abb2f035d1a57b7452de197643f6d0b4749541d05764723eb0c6a6f27ae314b06
checksum: fa981560e13b4ecb077123d7123d7afe9327c06a7f29b71ca760a5e87138738b9e8075f3b9a983231ba5f5df70537eea08e3d2496b7275d649f9337f5a263154
languageName: node
linkType: hard

Expand Down

0 comments on commit a70a36f

Please sign in to comment.