Skip to content

Commit 7705930

Browse files
Release 25.0.0 (#2034)
See the changelogs for details.
1 parent 0f59a83 commit 7705930

13 files changed

Lines changed: 44 additions & 14 deletions

File tree

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": "24.0.0",
3+
"version": "25.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/examples/package.json

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

packages/examples/packages/wasm/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [2.1.1]
10+
### Changed
11+
- Use synchronously initialized WASM ([#2024](https://github.com/MetaMask/snaps/pull/2024))
12+
913
## [2.1.0]
1014
### Changed
1115
- Use `@metamask/snaps-sdk` package ([#1946](https://github.com/MetaMask/snaps/pull/1946), [#1954](https://github.com/MetaMask/snaps/pull/1954))
@@ -34,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3438
- The version of the package no longer needs to match the version of all other
3539
MetaMask Snaps packages.
3640

37-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@2.1.0...HEAD
41+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@2.1.1...HEAD
42+
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@2.1.0...@metamask/wasm-example-snap@2.1.1
3843
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@2.0.1...@metamask/wasm-example-snap@2.1.0
3944
[2.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@2.0.0...@metamask/wasm-example-snap@2.0.1
4045
[2.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/wasm-example-snap@1.0.0...@metamask/wasm-example-snap@2.0.0

packages/examples/packages/wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/wasm-example-snap",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "MetaMask example snap demonstrating the use of WebAssembly and the `endowment:webassembly` permission.",
55
"repository": {
66
"type": "git",

packages/examples/packages/wasm/snap.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"version": "2.1.0",
2+
"version": "2.1.1",
33
"description": "MetaMask example snap demonstrating the use of WebAssembly and the `endowment:webassembly` permission.",
44
"proposedName": "WebAssembly Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "169i75gNQVsT6z0PTUI5t+KxBhr0fB6APA8J9ZMMm0o=",
10+
"shasum": "xvDOsWHm2VMzBoLlKkabI0CAr4vh7JJU0ErsfcxKTBo=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/snaps-cli/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [4.0.0]
10+
### Changed
11+
- **BREAKING:** Synchronously initialize WASM modules ([#2024](https://github.com/MetaMask/snaps/pull/2024))
12+
- When the `experimental.wasm` flag in the Snaps CLI is enabled, the WASM module will now be synchronously initialized, rather than being inlined as a Uint8Array.
13+
914
## [3.0.5]
1015
### Fixed
1116
- Include Snap icon in allowed server paths ([#2003](https://github.com/MetaMask/snaps/pull/2003))
@@ -86,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8691
- The version of the package no longer needs to match the version of all other
8792
MetaMask Snaps packages.
8893

89-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.5...HEAD
94+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@4.0.0...HEAD
95+
[4.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.5...@metamask/snaps-cli@4.0.0
9096
[3.0.5]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.4...@metamask/snaps-cli@3.0.5
9197
[3.0.4]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.3...@metamask/snaps-cli@3.0.4
9298
[3.0.3]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-cli@3.0.2...@metamask/snaps-cli@3.0.3

packages/snaps-cli/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-cli",
3-
"version": "3.0.5",
3+
"version": "4.0.0",
44
"description": "A CLI for developing MetaMask Snaps.",
55
"repository": {
66
"type": "git",

packages/snaps-controllers/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [3.5.1]
10+
### Changed
11+
- Improve `SnapController` constructor types ([#2023](https://github.com/MetaMask/snaps/pull/2023))
12+
- Bump `snaps-registry` ([#2020](https://github.com/MetaMask/snaps/pull/2020))
13+
914
## [3.5.0]
1015
### Changed
1116
- Reduce memory usage by removing source code and state from runtime ([#2009](https://github.com/MetaMask/snaps/pull/2009))
@@ -136,7 +141,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136141
- The version of the package no longer needs to match the version of all other
137142
MetaMask Snaps packages.
138143

139-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.5.0...HEAD
144+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.5.1...HEAD
145+
[3.5.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.5.0...@metamask/snaps-controllers@3.5.1
140146
[3.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.4.1...@metamask/snaps-controllers@3.5.0
141147
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.4.0...@metamask/snaps-controllers@3.4.1
142148
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-controllers@3.3.0...@metamask/snaps-controllers@3.4.0

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": "3.5.0",
3+
"version": "3.5.1",
44
"description": "Controllers for MetaMask Snaps.",
55
"repository": {
66
"type": "git",

packages/snaps-utils/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+
## [5.1.0]
10+
### Added
11+
- Add `getSnapDerivationPathName` and `getSlip44ProtocolName` to be shared across clients ([#2033](https://github.com/MetaMask/snaps/pull/2033))
12+
13+
### Changed
14+
- Bump `snaps-registry` ([#2020](https://hub.com/MetaMask/snaps/pull/2020))
15+
916
## [5.0.1]
1017
### Changed
1118
- Improve base64 encoding/decoding speeds ([#1985](https://github.com/MetaMask/snaps/pull/1985))
@@ -122,7 +129,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
122129
- The version of the package no longer needs to match the version of all other
123130
MetaMask Snaps packages.
124131

125-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@5.0.1...HEAD
132+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@5.1.0...HEAD
133+
[5.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@5.0.1...@metamask/snaps-utils@5.1.0
126134
[5.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@5.0.0...@metamask/snaps-utils@5.0.1
127135
[5.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@4.0.1...@metamask/snaps-utils@5.0.0
128136
[4.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-utils@4.0.0...@metamask/snaps-utils@4.0.1

0 commit comments

Comments
 (0)