Skip to content

Commit a70a36f

Browse files
authored
Merge pull request #23381 from MetaMask/Version-v11.11.4
v11.11.4
2 parents e260197 + 2602a3b commit a70a36f

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [11.11.4]
10+
### Changed
11+
- Enable Snaps home pages ([#23383](https://github.com/MetaMask/metamask-extension/pull/23383))
12+
13+
### Fixed
14+
- Fix intermittent Snaps installation issues due to faulty validation ([#23380](https://github.com/MetaMask/metamask-extension/pull/23380))
15+
916
## [11.11.3]
1017

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

4443-
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.11.3...HEAD
4450+
[Unreleased]: https://github.com/MetaMask/metamask-extension/compare/v11.11.4...HEAD
4451+
[11.11.4]: https://github.com/MetaMask/metamask-extension/compare/v11.11.3...v11.11.4
44444452
[11.11.3]: https://github.com/MetaMask/metamask-extension/compare/v11.11.2...v11.11.3
44454453
[11.11.2]: https://github.com/MetaMask/metamask-extension/compare/v11.11.1...v11.11.2
44464454
[11.11.1]: https://github.com/MetaMask/metamask-extension/compare/v11.11.0...v11.11.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-crx",
3-
"version": "11.11.3",
3+
"version": "11.11.4",
44
"private": true,
55
"repository": {
66
"type": "git",

shared/constants/permissions.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ describe('EndowmentPermissions', () => {
1313
expect(Object.keys(EndowmentPermissions).sort()).toStrictEqual(
1414
[
1515
'endowment:name-lookup',
16-
'endowment:page-home',
1716
...Object.keys(endowmentPermissionBuilders).filter(
1817
(targetName) =>
1918
!Object.keys(ExcludedSnapEndowments).includes(targetName),

shared/constants/snaps/permissions.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export const EndowmentPermissions = Object.freeze({
66
'endowment:rpc': 'endowment:rpc',
77
'endowment:webassembly': 'endowment:webassembly',
88
'endowment:lifecycle-hooks': 'endowment:lifecycle-hooks',
9-
///: BEGIN:ONLY_INCLUDE_IF(build-flask)
109
'endowment:page-home': 'endowment:page-home',
10+
///: BEGIN:ONLY_INCLUDE_IF(build-flask)
1111
'endowment:name-lookup': 'endowment:name-lookup',
1212
///: END:ONLY_INCLUDE_IF
1313
///: BEGIN:ONLY_INCLUDE_IF(keyring-snaps)
@@ -25,8 +25,6 @@ export const ExcludedSnapEndowments = Object.freeze({
2525
'endowment:signature-insight':
2626
'This endowment is in development and therefore not available.',
2727
///: BEGIN:ONLY_INCLUDE_IF(build-main)
28-
'endowment:page-home':
29-
'This endowment is experimental and therefore not available.',
3028
'endowment:name-lookup':
3129
'This endowment is experimental and therefore not available.',
3230
///: END:ONLY_INCLUDE_IF

test/e2e/run-all.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const { loadBuildTypesConfig } = require('../../development/lib/build-type');
1111
const FLASK_ONLY_TESTS = [
1212
'test-snap-txinsights-v2.spec.js',
1313
'test-snap-namelookup.spec.js',
14-
'test-snap-homepage.spec.js',
1514
];
1615

1716
const getTestPathsForTestDir = async (testDir) => {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4835,14 +4835,14 @@ __metadata:
48354835
linkType: hard
48364836

48374837
"@metamask/snaps-registry@npm:^3.0.0":
4838-
version: 3.0.0
4839-
resolution: "@metamask/snaps-registry@npm:3.0.0"
4838+
version: 3.0.1
4839+
resolution: "@metamask/snaps-registry@npm:3.0.1"
48404840
dependencies:
4841-
"@metamask/utils": "npm:^8.1.0"
4841+
"@metamask/utils": "npm:^8.3.0"
48424842
"@noble/curves": "npm:^1.2.0"
48434843
"@noble/hashes": "npm:^1.3.2"
48444844
superstruct: "npm:^1.0.3"
4845-
checksum: 3c6066807f214cf2cad1dc084b928dcd5b2c98cb09e3e38111ef56ed199f643abb2f035d1a57b7452de197643f6d0b4749541d05764723eb0c6a6f27ae314b06
4845+
checksum: fa981560e13b4ecb077123d7123d7afe9327c06a7f29b71ca760a5e87138738b9e8075f3b9a983231ba5f5df70537eea08e3d2496b7275d649f9337f5a263154
48464846
languageName: node
48474847
linkType: hard
48484848

0 commit comments

Comments
 (0)