Skip to content

Commit aeb9c7d

Browse files
Release 94.0.0 (#3224)
This is the release candidate for version `94.0.0`.
1 parent 1f5ae17 commit aeb9c7d

File tree

9 files changed

+48
-9
lines changed

9 files changed

+48
-9
lines changed

package.json

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

packages/snaps-controllers/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [11.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Use mnemonic seed for state encryption key derivation ([#3217](https://github.com/MetaMask/snaps/pull/3217))
15+
- `SnapController` now expects a `getMnemonicSeed` hook that must return the BIP-39 seed for the user's primary mnemonic.
16+
1017
## [10.0.1]
1118

1219
### Changed
@@ -657,7 +664,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
657664
- The version of the package no longer needs to match the version of all other
658665
MetaMask Snaps packages.
659666

660-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
667+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
668+
[11.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
661669
[10.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
662670
[10.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
663671
[9.19.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-controllers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-controllers",
3-
"version": "10.0.1",
3+
"version": "11.0.0",
44
"description": "Controllers for MetaMask Snaps",
55
"keywords": [
66
"MetaMask",

packages/snaps-jest/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+
## [8.14.0]
11+
12+
### Added
13+
14+
- Add support for `getMnemonicSeed` hook required by latest RPC methods ([#3220](https://github.com/MetaMask/snaps/pull/3220))
15+
16+
### Changed
17+
18+
- Bump `express` to `^4.21.2` ([#3196](https://github.com/MetaMask/snaps/pull/3196))
19+
1020
## [8.13.0]
1121

1222
### Added
@@ -347,7 +357,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
347357
- The version of the package no longer needs to match the version of all other
348358
MetaMask Snaps packages.
349359

350-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
360+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
361+
[8.14.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
351362
[8.13.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
352363
[8.12.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
353364
[8.11.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-jest",
3-
"version": "8.13.0",
3+
"version": "8.14.0",
44
"description": "A Jest preset for end-to-end testing MetaMask Snaps, including a Jest environment, and a set of Jest matchers",
55
"keywords": [
66
"MetaMask",

packages/snaps-rpc-methods/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [12.0.0]
11+
12+
### Changed
13+
14+
- **BREAKING:** Use mnemonic seed for `snap_get*Entropy` RPC methods ([#3220](https://github.com/MetaMask/snaps/pull/3220))
15+
- A `getMnemonicSeed` hook is now required to support the RPC methods.
16+
- Use mnemonic seed for state encryption key derivation ([#3217](https://github.com/MetaMask/snaps/pull/3217))
17+
1018
## [11.13.1]
1119

1220
### Fixed
@@ -406,7 +414,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
406414
- The version of the package no longer needs to match the version of all other
407415
MetaMask Snaps packages.
408416

409-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
417+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
418+
[12.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
410419
[11.13.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
411420
[11.13.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
412421
[11.12.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-rpc-methods/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-rpc-methods",
3-
"version": "11.13.1",
3+
"version": "12.0.0",
44
"description": "MetaMask Snaps JSON-RPC method implementations",
55
"keywords": [
66
"MetaMask",

packages/snaps-simulation/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+
## [2.4.0]
11+
12+
### Added
13+
14+
- Add support for `getMnemonicSeed` hook required by latest RPC methods ([#3220](https://github.com/MetaMask/snaps/pull/3220))
15+
16+
### Changed
17+
18+
- Bump `express` to `^4.21.2` ([#3196](https://github.com/MetaMask/snaps/pull/3196))
19+
1020
## [2.3.0]
1121

1222
### Added
@@ -131,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
131141

132142
- Initial release of `@metamask/snaps-simulation` package ([#2727](https://github.com/MetaMask/snaps/pull/2727))
133143

134-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
144+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
145+
[2.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
135146
[2.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
136147
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
137148
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-simulation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-simulation",
3-
"version": "2.3.0",
3+
"version": "2.4.0",
44
"description": "A simulation framework for MetaMask Snaps, enabling headless testing of Snaps in a controlled environment",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)