Skip to content

Commit c85d1da

Browse files
Release 83.0.0 (#3018)
This is the release candidate for version 83.0.0. This is a follow-up to 82.0.0, which had some minor problems with the example Snaps. --------- Co-authored-by: Maarten Zuidhoorn <[email protected]>
1 parent 7ac333a commit c85d1da

File tree

13 files changed

+55
-15
lines changed

13 files changed

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

packages/examples/packages/cronjobs/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+
## [3.0.0]
11+
12+
### Added
13+
14+
- **BREAKING:** Add new method to cronjob example snap to test durations ([#3016](https://github.com/MetaMask/snaps/pull/3016))
15+
- The `scheduleNotification` RPC method was renamed to `scheduleNotificationWithDate`.
16+
1017
## [2.2.0]
1118

1219
### Added
@@ -88,7 +95,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8895
- The version of the package no longer needs to match the version of all other
8996
MetaMask Snaps packages.
9097

91-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
98+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
99+
[3.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
92100
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
93101
[2.1.4]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
94102
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/cronjobs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/cronjob-example-snap",
3-
"version": "2.2.0",
3+
"version": "3.0.0",
44
"description": "MetaMask example snap demonstrating the use of cronjobs in snaps",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/cronjobs/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.2.0",
2+
"version": "3.0.0",
33
"description": "MetaMask example snap demonstrating the use of cronjobs in snaps.",
44
"proposedName": "Cronjob Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "UAyTtrfMx+qx9gS5oJzs9xHSUWHbftqIc0KbKq4JpQ0=",
10+
"shasum": "p0EjILZJvCZE2KZSlJ8e5q96ODsV/heJHp2nmUx7DG8=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/examples/packages/ethereum-provider/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.2.1]
11+
12+
### Fixed
13+
14+
- Use proper chain ID for `signTypedData` call ([#3013](https://github.com/MetaMask/snaps/pull/3013))
15+
1016
## [2.2.0]
1117

1218
### Added
@@ -86,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8692
- The version of the package no longer needs to match the version of all other
8793
MetaMask Snaps packages.
8894

89-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
95+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
96+
[2.2.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
9097
[2.2.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
9198
[2.1.3]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
9299
[2.1.2]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

packages/examples/packages/ethereum-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/ethereum-provider-example-snap",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "MetaMask example snap demonstrating the use of the Ethereum Provider API and `endowment:ethereum-provider` permission",
55
"keywords": [
66
"MetaMask",

packages/examples/packages/ethereum-provider/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.2.0",
2+
"version": "2.2.1",
33
"description": "MetaMask example snap demonstrating the use of the Ethereum Provider API and `endowment:ethereum-provider` permission.",
44
"proposedName": "Ethereum Provider Example Snap",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/MetaMask/snaps.git"
88
},
99
"source": {
10-
"shasum": "1QLc9RhVgpwxBu8FjPo5kZY61mpNoNAfkiAatq99Nc4=",
10+
"shasum": "8f7Fo6y40+L0x+KHkDCq2wjEMrkTL+L6e2NSNBZYVLA=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",

packages/snaps-jest/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [8.11.0]
11+
12+
### Added
13+
14+
- Mock `eth_chainId` and `net_version` calls automatically ([#3017](https://github.com/MetaMask/snaps/pull/3017))
15+
1016
## [8.10.0]
1117

1218
### Added
@@ -324,7 +330,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
324330
- The version of the package no longer needs to match the version of all other
325331
MetaMask Snaps packages.
326332

327-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
333+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
334+
[8.11.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
328335
[8.10.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
329336
[8.9.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
330337
[8.8.1]: 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.10.0",
3+
"version": "8.11.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-simulation/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [2.1.0]
11+
12+
### Added
13+
14+
- Mock `eth_chainId` and `net_version` calls automatically ([#3017](https://github.com/MetaMask/snaps/pull/3017))
15+
1016
## [2.0.0]
1117

1218
### Added
@@ -95,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
95101

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

98-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
104+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]
105+
[2.1.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
99106
[2.0.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
100107
[1.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]
101108
[1.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/[email protected]...@metamask/[email protected]

0 commit comments

Comments
 (0)