Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 91.0.0 #3185

Merged
merged 6 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "90.0.0",
"version": "91.0.0",
"private": true,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/example-snaps",
"version": "3.15.0",
"version": "3.16.0",
"private": true,
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
"keywords": [
Expand Down
13 changes: 12 additions & 1 deletion packages/examples/packages/bip32/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.3.0]

### Added

- Add support for SIP-30 ([#3165](https://github.com/MetaMask/snaps/pull/3165))
- The Snap now has a `getEntropySources` method that returns an array of
entropy sources.
- The existing methods now have an optional `source` parameter that can be
used to specify the entropy source to use.

## [2.2.1]

### Fixed
Expand Down Expand Up @@ -77,7 +87,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.1...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.3.0...HEAD
[2.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.1...@metamask/bip32-example-snap@2.3.0
[2.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.2.0...@metamask/bip32-example-snap@2.2.1
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.1.2...@metamask/bip32-example-snap@2.2.0
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/bip32-example-snap@2.1.1...@metamask/bip32-example-snap@2.1.2
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/bip32/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/bip32-example-snap",
"version": "2.2.1",
"version": "2.3.0",
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`",
"keywords": [
"MetaMask",
Expand Down
6 changes: 3 additions & 3 deletions packages/examples/packages/bip32/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.2.1",
"version": "2.3.0",
"description": "MetaMask example snap demonstrating the use of `snap_getBip32Entropy`.",
"proposedName": "BIP-32 Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "Yv3r9ZD/tEehqvSUa/EfcAKa61eYLNvhqtRXxYy++q4=",
"shasum": "EYj8a1CyBIrzcSGQ6EY9Ny6Q+azLzobzU7agR7CKisA=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down Expand Up @@ -43,6 +43,6 @@
}
]
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
13 changes: 12 additions & 1 deletion packages/examples/packages/bip44/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0]

### Added

- Add support for SIP-30 ([#3165](https://github.com/MetaMask/snaps/pull/3165))
- The Snap now has a `getEntropySources` method that returns an array of
entropy sources.
- The existing methods now have an optional `source` parameter that can be
used to specify the entropy source to use.

## [2.1.3]

### Fixed
Expand Down Expand Up @@ -78,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.2.0...HEAD
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.3...@metamask/bip44-example-snap@2.2.0
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.2...@metamask/bip44-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.1...@metamask/bip44-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/bip44-example-snap@2.1.0...@metamask/bip44-example-snap@2.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/bip44/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/bip44-example-snap",
"version": "2.1.3",
"version": "2.2.0",
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`",
"keywords": [
"MetaMask",
Expand Down
6 changes: 3 additions & 3 deletions packages/examples/packages/bip44/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.3",
"version": "2.2.0",
"description": "MetaMask example snap demonstrating the use of `snap_getBip44Entropy`.",
"proposedName": "BIP-44 Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "s8y7K5HyKWgxVflPhs/Tdt69c/L2QT/vixntD9dnu+o=",
"shasum": "7ITCfMBWovBJmXIqrHSIsO+DvhSI52fO07JRevLMIkw=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -31,6 +31,6 @@
}
]
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "F82zbRfEEnc1c86GZ4InV+zw8QWVrLUidEXAn9JEsQU=",
"shasum": "BkSVql1/bpU0SEcfVP+nOYRmMEUo6VOYgMPR6T0zGuk=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -21,6 +21,6 @@
"dapps": true
}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/browserify/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "1sJyCRTlEdkAIK1YhFlrKr10ANhP1JkHj6dO9TE2HNc=",
"shasum": "Vrto5s9k5vDfqRSpjkAyEciAWEJhQ1yMmNoiWhENrUk=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -21,6 +21,6 @@
"dapps": true
}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/client-status/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "tDnnS9elZTARovw9Fsbg+CaNYp6v4g8aBb7+uvdYQmQ=",
"shasum": "nc+JOgLxuqD7BhG03+OxfU2mYsfEjbMu8NJ6JYaEWv8=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -22,6 +22,6 @@
"snaps": false
}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/cronjobs/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "cN0208xWa/KFZC1yxBzxI5kX8ippChcAvh6EktyVZc8=",
"shasum": "oivOXNHqSitBIR4yEKEKThLd2LAHidgbAz82eUA8CuU=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -34,6 +34,6 @@
"snap_dialog": {},
"snap_notify": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/dialogs/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "IYw+FXMDWsuPR9+Di86/XAyYLNKhGRD0V+cxpVRmE/k=",
"shasum": "CpcCabMasgyas/okZfYhJNCe1wK0SoFs0EC/3F8dsBU=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -22,6 +22,6 @@
},
"snap_dialog": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/errors/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "jcWSXyJ0eKcN5BQhEPUe9qptmCij0R24goxSC/9cApQ=",
"shasum": "y7DX+kxBXoWQ4DVRcKMqpBSXmPbiz0Mi6GDWWTkflP0=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -21,6 +21,6 @@
"dapps": true
}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "3yNS8C8gVjvRlfTPRzm+pIx3RNk8zqFdvE1LzgvM5eQ=",
"shasum": "MHSuass1p7iHNVjKcsUmuPuwTzcRUSD1Cd1Wlv8kkDQ=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -22,6 +22,6 @@
},
"endowment:ethereum-provider": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/ethers-js/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "Jlze2D18cQUFtRPMu4IbpSa+54YvNYgr1Sa7Jqj2tX4=",
"shasum": "6fsBdxadF/YFFYsfFEiiyiN3aBjtg9POe0gtYjuv0Ow=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -23,6 +23,6 @@
"snap_dialog": {},
"snap_getEntropy": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/file-upload/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "qo0qoM0/DU0zKe66aVaWwNQV4mFKtUiqTTR7oXaXXS4=",
"shasum": "vUHKqC4T7pQFvQVukvzLCxxmt9UTINvDhe6eElkocSQ=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -24,6 +24,6 @@
"snap_dialog": {},
"snap_manageState": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
13 changes: 12 additions & 1 deletion packages/examples/packages/get-entropy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0]

### Added

- Add support for SIP-30 ([#3165](https://github.com/MetaMask/snaps/pull/3165))
- The Snap now has a `getEntropySources` method that returns an array of
entropy sources.
- The existing methods now have an optional `source` parameter that can be
used to specify the entropy source to use.

## [2.1.3]

### Fixed
Expand Down Expand Up @@ -78,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.1.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.2.0...HEAD
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.1.3...@metamask/get-entropy-example-snap@2.2.0
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.1.2...@metamask/get-entropy-example-snap@2.1.3
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.1.1...@metamask/get-entropy-example-snap@2.1.2
[2.1.1]: https://github.com/MetaMask/snaps/compare/@metamask/get-entropy-example-snap@2.1.0...@metamask/get-entropy-example-snap@2.1.1
Expand Down
2 changes: 1 addition & 1 deletion packages/examples/packages/get-entropy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/get-entropy-example-snap",
"version": "2.1.3",
"version": "2.2.0",
"description": "MetaMask example snap demonstrating the use of `snap_getEntropy`",
"keywords": [
"MetaMask",
Expand Down
6 changes: 3 additions & 3 deletions packages/examples/packages/get-entropy/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"version": "2.1.3",
"version": "2.2.0",
"description": "MetaMask example snap demonstrating the use of `snap_getEntropy`.",
"proposedName": "Get Entropy Example Snap",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "JHgX6Yu2QH0wnVJ67t+IUxNpOvGOhOwWip2b6rI3F4A=",
"shasum": "vUiybKJcdxY44IuamgNJQadSEl+o9n152JyZ84jGc7w=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -23,6 +23,6 @@
"snap_dialog": {},
"snap_getEntropy": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/get-file/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "1tHkAKMCelgdq+2vbYrgVifo/DjRzGU5h5MeJlAUbFo=",
"shasum": "/l6cK9mjCiwOWRcx7/j3rGnkeqSRwLzbRZI3a4XaFIE=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -22,6 +22,6 @@
"dapps": true
}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/home-page/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "FHDhOOgjgRBFcJ2JGv1C1kgVXduMCGLOfFRXo0XA2cg=",
"shasum": "zOHGdxFGbEikE/8emjcfVg7t3qkocvi77z/WxGhZbEA=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -19,6 +19,6 @@
"initialPermissions": {
"endowment:page-home": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
4 changes: 2 additions & 2 deletions packages/examples/packages/images/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/MetaMask/snaps.git"
},
"source": {
"shasum": "CfLAZ5yE8Fpk5YX6CDSTVNHO6E6QikompdWug6768Oo=",
"shasum": "qDSGnw6+RCCzacNV3QaY4oyEpz9sDLXIDcJ+oPiiWx0=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand All @@ -23,6 +23,6 @@
},
"snap_dialog": {}
},
"platformVersion": "6.18.0",
"platformVersion": "6.19.0",
"manifestVersion": "0.1"
}
Loading
Loading