Skip to content

Commit 26a1d8d

Browse files
github-actions[bot]github-actionsrekmarks
authored
0.4.0 (#142)
* 0.4.0 * Update changelogs Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Erik Marks <rekmarks@protonmail.com>
1 parent deb2b82 commit 26a1d8d

15 files changed

Lines changed: 69 additions & 23 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.3.1",
3+
"version": "0.4.0",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/controllers/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
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+
## [0.4.0]
10+
### Added
11+
- `SubjectMetadataController` ([#61](https://github.com/MetaMask/snaps-skunkworks/pull/61))
12+
- `PermissionController` ([#132](https://github.com/MetaMask/snaps-skunkworks/pull/132), [#141](https://github.com/MetaMask/snaps-skunkworks/pull/141))
13+
- **BREAKING:** `SnapController`: Add max request processing time ([#128](https://github.com/MetaMask/snaps-skunkworks/pull/128))
14+
15+
### Fixed
16+
- `SnapController`: Clean up timeouts after stopping a Snap ([#139](https://github.com/MetaMask/snaps-skunkworks/pull/139))
17+
- `WebWorkerExecutionEnvironmentService`: Clean up post-termination timeouts ([#128](https://github.com/MetaMask/snaps-skunkworks/pull/128))
18+
919
## [0.3.1]
1020
### Changed
1121
- **BREAKING:** Update Snap initial states ([#126](https://github.com/MetaMask/snaps-skunkworks/pull/126))
@@ -92,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
92102
### Added
93103
- First semi-stable release.
94104

95-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...HEAD
105+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...HEAD
106+
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
96107
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
97108
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
98109
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.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.3.1",
3+
"version": "0.4.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.3.1",
34+
"@metamask/snap-workers": "^0.4.0",
3535
"@types/deep-freeze-strict": "^1.1.0",
3636
"deep-freeze-strict": "^1.1.1",
3737
"eth-rpc-errors": "^4.0.2",
@@ -44,7 +44,7 @@
4444
},
4545
"devDependencies": {
4646
"@jest-runner/electron": "^3.0.1",
47-
"@metamask/snap-types": "^0.3.1",
47+
"@metamask/snap-types": "^0.4.0",
4848
"@types/jest": "^26.0.23",
4949
"@types/pump": "^1.1.0",
5050
"@types/readable-stream": "^2.3.9",

packages/iframe-execution-environment-service/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.4.0]
10+
### Fixed
11+
- Clean up post-termination timeouts ([#128](https://github.com/MetaMask/snaps-skunkworks/pull/128))
12+
913
## [0.3.1]
1014
### Fixed
1115
- Correctly identify breaking changes in [0.3.0] release ([#123](https://github.com/MetaMask/snaps-skunkworks/pull/123))
@@ -53,7 +57,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5357
### Added
5458
- Initial release
5559

56-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...HEAD
60+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...HEAD
61+
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
5762
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
5863
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
5964
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.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.3.1",
3+
"version": "0.4.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.3.1",
35-
"@metamask/snap-types": "^0.3.1",
36-
"@metamask/snap-workers": "^0.3.1",
34+
"@metamask/snap-controllers": "^0.4.0",
35+
"@metamask/snap-types": "^0.4.0",
36+
"@metamask/snap-workers": "^0.4.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: 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.4.0]
10+
### Changed
11+
- **BREAKING:** Consolidate Snap state management methods into single method ([#135](https://github.com/MetaMask/snaps-skunkworks/pull/135))
12+
- `snap_manageState`
13+
- **BREAKING:** Replace RPC method and permission description properties with docstrings ([#130](https://github.com/MetaMask/snaps-skunkworks/pull/130))
14+
15+
### Removed
16+
- **BREAKING:** Remove `snap_manageAssets` ([#134](https://github.com/MetaMask/snaps-skunkworks/pull/134))
17+
918
## [0.3.1]
1019
### Changed
1120
- No changes this release.
@@ -40,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4049
### Added
4150
- First semi-stable release.
4251

43-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...HEAD
52+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...HEAD
53+
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
4454
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
4555
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
4656
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2

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.3.1",
3+
"version": "0.4.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.3.1",
30+
"@metamask/snap-controllers": "^0.4.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.4.0]
10+
### Changed
11+
- No changes this release.
12+
913
## [0.3.1]
1014
### Changed
1115
- No changes this release.
@@ -36,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3640
- 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).
3741
- Some examples have been deleted because they were outdated.
3842

39-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...HEAD
43+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...HEAD
44+
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
4045
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
4146
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
4247
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.0...v0.2.2

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.3.1",
3+
"version": "0.4.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.3.1",
35+
"@metamask/snaps-cli": "^0.4.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.4.0]
10+
### Fixed
11+
- Make Windows-compatible ([#131](https://github.com/MetaMask/snaps-skunkworks/pull/131))
12+
913
## [0.3.1]
1014
### Changed
1115
- No changes this release.
@@ -41,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4145
- Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
4246
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
4347

44-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...HEAD
48+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.4.0...HEAD
49+
[0.4.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.1...v0.4.0
4550
[0.3.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.3.0...v0.3.1
4651
[0.3.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.2...v0.3.0
4752
[0.2.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.2.1...v0.2.2

0 commit comments

Comments
 (0)