Skip to content

Commit 6b26699

Browse files
Release 24.0.0 (#2016)
See the changelogs for details. This release is mainly maintenance changes and performance improvements. --------- Co-authored-by: Maarten Zuidhoorn <[email protected]>
1 parent 8fa7123 commit 6b26699

File tree

13 files changed

+53
-13
lines changed

13 files changed

+53
-13
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "23.0.0",
3+
"version": "24.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/snaps-controllers/CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.5.0]
10+
### Changed
11+
- Reduce memory usage by removing source code and state from runtime ([#2009](https://github.com/MetaMask/snaps/pull/2009))
12+
- Improve base64 encoding/decoding speeds ([#1985](https://github.com/MetaMask/snaps/pull/1985))
13+
- Use `DecompressionStream` for NPM fetching when available ([#1971](https://github.com/MetaMask/snaps/pull/1971))
14+
- Bump several MetaMask dependencies ([#1989](https://github.com/MetaMask/snaps/pull/1989), [#1993](https://github.com/MetaMask/snaps/pull/1993), [#1987](https://github.com/MetaMask/snaps/pull/1987), [#1983](https://github.com/MetaMask/snaps/pull/1983))
15+
16+
### Fixed
17+
- Fix idle snap timeout for unused snap ([#2010](https://github.com/MetaMask/snaps/pull/2010))
18+
919
## [3.4.1]
1020
### Changed
1121
- Bump several MetaMask dependencies ([#1964](https://github.com/MetaMask/snaps/pull/1964), [#1961](https://github.com/MetaMask/snaps/pull/1961))
@@ -126,7 +136,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
126136
- The version of the package no longer needs to match the version of all other
127137
MetaMask Snaps packages.
128138

129-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
139+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
140+
[3.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
130141
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
131142
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
132143
[3.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-controllers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-controllers",
3-
"version": "3.4.1",
3+
"version": "3.5.0",
44
"description": "Controllers for MetaMask Snaps.",
55
"repository": {
66
"type": "git",

packages/snaps-execution-environments/CHANGELOG.md

+6-1
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+
## [3.4.2]
10+
### Changed
11+
- Bump `@metamask/providers` from `14.0.1` to `14.0.2` ([#1992](https://github.com/MetaMask/snaps/pull/1992))
12+
913
## [3.4.1]
1014
### Changed
1115
- Block `wallet_revokePermissions` ([#1978](https://github.com/MetaMask/snaps/pull/1978))
@@ -111,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111115
- The version of the package no longer needs to match the version of all other
112116
MetaMask Snaps packages.
113117

114-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
118+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
119+
[3.4.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
115120
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
116121
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
117122
[3.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-execution-environments/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-execution-environments",
3-
"version": "3.4.1",
3+
"version": "3.4.2",
44
"description": "Snap sandbox environments for executing SES javascript",
55
"repository": {
66
"type": "git",

packages/snaps-rpc-methods/CHANGELOG.md

+6-1
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+
## [4.0.2]
10+
### Changed
11+
- Bump several MetaMask dependencies ([#1989](https://github.com/MetaMask/snaps/pull/1989))
12+
913
## [4.0.1]
1014
### Changed
1115
- Bump several MetaMask dependencies ([#1964](https://github.com/MetaMask/snaps/pull/1964), [#1968](https://github.com/MetaMask/snaps/pull/1968))
@@ -76,7 +80,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7680
- The version of the package no longer needs to match the version of all other
7781
MetaMask Snaps packages.
7882

79-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
83+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
84+
[4.0.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8085
[4.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8186
[4.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8287
[3.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-rpc-methods/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-rpc-methods",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "MetaMask Snaps JSON-RPC method implementations.",
55
"repository": {
66
"type": "git",

packages/snaps-sdk/CHANGELOG.md

+9-1
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+
## [1.3.0]
10+
### Added
11+
- Add image fetching utility functions ([#1995](https://github.com/MetaMask/snaps/pull/1995))
12+
- This adds two functions:
13+
- `getImageComponent` to get an `image` component from a PNG or JPEG URL.
14+
- `getImageData` to get a base64 data string, which can be embedded in an SVG image.
15+
916
## [1.2.0]
1017
### Added
1118
- Add `row` and `address` component ([#1968](https://github.com/MetaMask/snaps/pull/1968))
@@ -22,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2229
### Added
2330
- Initial release of this package.
2431

25-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
32+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
33+
[1.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
2634
[1.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
2735
[1.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
2836
[1.0.0]: https://github.com/MetaMask/snaps/releases/tag/@metamask/[email protected]

packages/snaps-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-sdk",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps.git"

packages/snaps-simulator/CHANGELOG.md

+6-1
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.4.2]
10+
### Changed
11+
- Bump several MetaMask dependencies ([#1989](https://github.com/MetaMask/snaps/pull/1989))
12+
913
## [2.4.1]
1014
### Changed
1115
- Bump several MetaMask dependencies ([#1964](https://github.com/MetaMask/snaps/pull/1964))
@@ -76,7 +80,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7680
- The version of the package no longer needs to match the version of all other
7781
MetaMask Snaps packages.
7882

79-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
83+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
84+
[2.4.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8085
[2.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8186
[2.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
8287
[2.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-simulator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-simulator",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"description": "A simulator for MetaMask Snaps, to be used for testing and development",
55
"homepage": "https://github.com/MetaMask/snaps#readme",
66
"bugs": {

packages/snaps-utils/CHANGELOG.md

+7-1
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+
## [5.0.1]
10+
### Changed
11+
- Improve base64 encoding/decoding speeds ([#1985](https://github.com/MetaMask/snaps/pull/1985))
12+
- Bump several MetaMask dependencies ([#1989](https://github.com/MetaMask/snaps/pull/1989), [#1993](https://github.com/MetaMask/snaps/pull/1993))
13+
914
## [5.0.0]
1015
### Changed
1116
- Bump several MetaMask dependencies ([#1964](https://github.com/MetaMask/snaps/pull/1964))
@@ -117,7 +122,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
117122
- The version of the package no longer needs to match the version of all other
118123
MetaMask Snaps packages.
119124

120-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
125+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
126+
[5.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
121127
[5.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
122128
[4.0.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
123129
[4.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/snaps-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-utils",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps.git"

0 commit comments

Comments
 (0)