Skip to content

Commit 7a18e53

Browse files
github-actions[bot]github-actionsshanejonasrekmarks
authored
0.3.0 (#121)
* 0.3.0 * Update changelogs Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Shane <jonas.shane@gmail.com> Co-authored-by: Erik Marks <25517051+rekmarks@users.noreply.github.com>
1 parent 4bc5154 commit 7a18e53

15 files changed

Lines changed: 80 additions & 24 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": "0.2.2",
3+
"version": "0.3.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/controllers/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.3.0]
10+
### Added
11+
- Allow disabling and enabling Snaps ([#116](https://github.com/MetaMask/snaps-skunkworks/pull/116))
12+
- Only enabled Snaps can be started.
13+
- Start stopped Snaps that receive an RPC message ([#114](https://github.com/MetaMask/snaps-skunkworks/pull/114))
14+
- Add Snap max idle time ([#105](https://github.com/MetaMask/snaps-skunkworks/pull/105))
15+
- A Snap that is idle for more than the max idle time will be stopped.
16+
- Poll Snaps for their status ([#104](https://github.com/MetaMask/snaps-skunkworks/pull/104))
17+
- If a Snap stops responding, it will be forced to stop.
18+
19+
### Changed
20+
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
21+
- Use the `ControllerMessenger` to communicate between the `SnapController` and its execution environment service ([#100](https://github.com/MetaMask/snaps-skunkworks/pull/100))
22+
923
## [0.2.2]
1024
### Added
11-
- Added snap error state ([#96](https://github.com/MetaMask/snaps-skunkworks/pull/96))
25+
- Add Snap error state ([#96](https://github.com/MetaMask/snaps-skunkworks/pull/96))
1226

1327
### Fixed
1428
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
@@ -68,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6882
### Added
6983
- First semi-stable release.
7084

71-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...HEAD
85+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...HEAD
86+
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
7287
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2
7388
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.2...v0.2.0
7489
[0.1.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.1.2

packages/controllers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snap-controllers",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"description": "Controllers for MetaMask Snaps.",
55
"repository": {
66
"type": "git",
@@ -31,7 +31,7 @@
3131
"@metamask/obs-store": "^6.0.2",
3232
"@metamask/post-message-stream": "4.0.0",
3333
"@metamask/safe-event-emitter": "^2.0.0",
34-
"@metamask/snap-workers": "^0.2.0",
34+
"@metamask/snap-workers": "^0.3.0",
3535
"eth-rpc-errors": "^4.0.2",
3636
"immer": "^9.0.6",
3737
"json-rpc-engine": "^6.1.0",
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"@jest-runner/electron": "^3.0.1",
44-
"@metamask/snap-types": "^0.2.0",
44+
"@metamask/snap-types": "^0.3.0",
4545
"@types/jest": "^26.0.23",
4646
"@types/pump": "^1.1.0",
4747
"@types/readable-stream": "^2.3.9",

packages/iframe-execution-environment-service/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.3.0]
10+
### Added
11+
- Poll Snaps for their status ([#104](https://github.com/MetaMask/snaps-skunkworks/pull/104))
12+
- If a Snap stops responding, it will be forced to stop.
13+
14+
### Changed
15+
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
16+
- Use the `ControllerMessenger` to communicate between the `SnapController` and its execution environment service ([#100](https://github.com/MetaMask/snaps-skunkworks/pull/100))
17+
918
## [0.2.2]
1019
### Added
1120
- Snap error state ([#96](https://github.com/MetaMask/snaps-skunkworks/pull/96))
@@ -40,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4049
### Added
4150
- Initial release
4251

43-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...HEAD
52+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...HEAD
53+
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
4454
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2
4555
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.2...v0.2.0
4656
[0.1.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.1.2

packages/iframe-execution-environment-service/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/iframe-execution-environment-service",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
@@ -31,9 +31,9 @@
3131
"@metamask/object-multiplex": "^1.2.0",
3232
"@metamask/obs-store": "^7.0.0",
3333
"@metamask/post-message-stream": "^4.0.0",
34-
"@metamask/snap-controllers": "^0.2.0",
35-
"@metamask/snap-types": "^0.2.0",
36-
"@metamask/snap-workers": "^0.2.0",
34+
"@metamask/snap-controllers": "^0.3.0",
35+
"@metamask/snap-types": "^0.3.0",
36+
"@metamask/snap-workers": "^0.3.0",
3737
"eth-rpc-errors": "^4.0.3",
3838
"json-rpc-engine": "^6.1.0",
3939
"json-rpc-middleware-stream": "^3.0.0",

packages/rpc-methods/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.3.0]
10+
### Changed
11+
- **BREAKING:** Make `wallet_getBip44Entropy_*` implementation safer ([#115](https://github.com/MetaMask/snaps-skunkworks/pull/115))
12+
- Implemented by means of using [`@metamask/key-tree@^3.0.0](https://github.com/MetaMask/key-tree/releases/tag/v3.0.0)
13+
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
14+
915
## [0.2.2]
1016
### Fixed
1117
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
@@ -30,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3036
### Added
3137
- First semi-stable release.
3238

33-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...HEAD
39+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...HEAD
40+
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
3441
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2
3542
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.0...v0.2.0
3643
[0.1.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.0.6...v0.1.0

packages/rpc-methods/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/rpc-methods",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"description": "MetaMask Snap RPC method implementations.",
55
"repository": {
66
"type": "git",
@@ -27,7 +27,7 @@
2727
},
2828
"dependencies": {
2929
"@metamask/key-tree": "^3.0.1",
30-
"@metamask/snap-controllers": "^0.2.0",
30+
"@metamask/snap-controllers": "^0.3.0",
3131
"eth-rpc-errors": "^4.0.2"
3232
},
3333
"devDependencies": {

packages/snap-examples/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+
## [0.3.0]
10+
### Changed
11+
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
12+
913
## [0.2.2]
1014
### Fixed
1115
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
@@ -28,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2832
- This package was previously a subset of [`snaps-cli`](https://github.com/MetaMask/snaps-cli/tree/main/examples), which has been renamed to [`@metamask/snaps-cli`](https://npmjs.com/package/@metamask/snaps-cli).
2933
- Some examples have been deleted because they were outdated.
3034

31-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...HEAD
35+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...HEAD
36+
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
3237
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2
3338
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.2.0
3439
[0.1.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.0...v0.1.1

packages/snap-examples/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snap-examples",
3-
"version": "0.2.2",
3+
"version": "0.3.0",
44
"description": "Example MetaMask Snaps.",
55
"repository": {
66
"type": "git",
@@ -32,7 +32,7 @@
3232
"@metamask/eslint-config-jest": "^8.0.0",
3333
"@metamask/eslint-config-nodejs": "^8.0.0",
3434
"@metamask/eslint-config-typescript": "^8.0.0",
35-
"@metamask/snaps-cli": "^0.2.1",
35+
"@metamask/snaps-cli": "^0.3.0",
3636
"@types/jest": "^26.0.13",
3737
"@typescript-eslint/eslint-plugin": "^4.21.0",
3838
"@typescript-eslint/parser": "^4.21.0",

packages/snaps-cli/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+
## [0.3.0]
10+
### Changed
11+
- **BREAKING:** Enforce consistent naming for Snaps-related functionality ([#119](https://github.com/MetaMask/snaps-skunkworks/pull/119))
12+
913
## [0.2.2]
1014
### Fixed
1115
- Package script issues ([#97](https://github.com/MetaMask/snaps-skunkworks/pull/97), [#98](https://github.com/MetaMask/snaps-skunkworks/pull/98))
@@ -33,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3337
- Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
3438
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
3539

36-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...HEAD
40+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...HEAD
41+
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
3742
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.1...v0.2.2
3843
[0.2.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.1
3944
[0.2.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.1.1...v0.2.0

0 commit comments

Comments
 (0)