Skip to content

Commit 872adb4

Browse files
github-actions[bot]github-actionsrekmarks
authored
0.10.6 (#312)
* 0.10.6 * Update changelogs Co-authored-by: github-actions <[email protected]> Co-authored-by: Erik Marks <[email protected]>
1 parent 3247ddc commit 872adb4

File tree

15 files changed

+59
-24
lines changed

15 files changed

+59
-24
lines changed

package.json

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

packages/cli/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+
## [0.10.6]
10+
### Fixed
11+
- Fix endowment mocking during `mm-snap eval` ([#311](https://github.com/MetaMask/snaps-skunkworks/pull/311))
12+
913
## [0.10.5]
1014
### Changed
1115
- No changes this release.
@@ -140,7 +144,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
140144
- Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
141145
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).
142146

143-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
147+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
148+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
144149
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
145150
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.2...v0.10.3
146151
[0.10.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.1...v0.10.2

packages/cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snaps-cli",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "A CLI for developing MetaMask Snaps.",
55
"repository": {
66
"type": "git",
@@ -45,7 +45,7 @@
4545
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
4646
"@babel/plugin-transform-runtime": "^7.16.7",
4747
"@babel/preset-env": "^7.16.7",
48-
"@metamask/snap-controllers": "^0.10.5",
48+
"@metamask/snap-controllers": "^0.10.6",
4949
"@nodefactory/strip-comments": "^1.0.4",
5050
"babelify": "^10.0.0",
5151
"browserify": "^17.0.0",

packages/controllers/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+
## [0.10.6]
10+
### Fixed
11+
- Fix ID validation during Snap installation ([#308](https://github.com/MetaMask/snaps-skunkworks/pull/308))
12+
913
## [0.10.5]
1014
### Added
1115
- Add updateSnap function to SnapController ([#259](https://github.com/MetaMask/snaps-skunkworks/pull/259))
@@ -211,7 +215,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
211215
### Added
212216
- First semi-stable release.
213217

214-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
218+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
219+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
215220
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
216221
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.2...v0.10.3
217222
[0.10.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.1...v0.10.2

packages/controllers/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snap-controllers",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "Controllers for MetaMask Snaps.",
55
"repository": {
66
"type": "git",
@@ -32,7 +32,7 @@
3232
},
3333
"dependencies": {
3434
"@metamask/controllers": "^26.0.0",
35-
"@metamask/execution-environments": "^0.10.5",
35+
"@metamask/execution-environments": "^0.10.6",
3636
"@metamask/object-multiplex": "^1.1.0",
3737
"@metamask/obs-store": "^7.0.0",
3838
"@metamask/post-message-stream": "4.0.0",
@@ -58,7 +58,7 @@
5858
"devDependencies": {
5959
"@jest-runner/electron": "^3.0.1",
6060
"@json-schema-tools/transpiler": "^1.10.2",
61-
"@metamask/snap-types": "^0.10.5",
61+
"@metamask/snap-types": "^0.10.6",
6262
"@metamask/template-snap": "^0.7.0",
6363
"@types/concat-stream": "^1.6.1",
6464
"@types/gunzip-maybe": "^1.4.0",

packages/examples/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+
## [0.10.6]
10+
### Changed
11+
- No changes this release.
12+
913
## [0.10.5]
1014
### Changed
1115
- No changes this release.
@@ -93,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9397
- 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).
9498
- Some examples have been deleted because they were outdated.
9599

96-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
100+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
101+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
97102
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
98103
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.3
99104
[0.10.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.9.0...v0.10.0

packages/examples/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snap-examples",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "Example MetaMask Snaps.",
55
"repository": {
66
"type": "git",
@@ -33,7 +33,7 @@
3333
"@metamask/eslint-config-jest": "^8.0.0",
3434
"@metamask/eslint-config-nodejs": "^8.0.0",
3535
"@metamask/eslint-config-typescript": "^8.0.0",
36-
"@metamask/snaps-cli": "^0.10.5",
36+
"@metamask/snaps-cli": "^0.10.6",
3737
"@types/jest": "^26.0.13",
3838
"@typescript-eslint/eslint-plugin": "^4.21.0",
3939
"@typescript-eslint/parser": "^4.21.0",

packages/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+
## [0.10.6]
10+
### Fixed
11+
- Fix function endowment bindings ([#311](https://github.com/MetaMask/snaps-skunkworks/pull/311))
12+
913
## [0.10.5]
1014
### Fixed
1115
- Fix missing index.js ([#303](https://github.com/MetaMask/snaps-skunkworks/pull/303))
@@ -37,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3741
- Previously, default endowments were specified in the execution environment itself. Now, all endowments must be specified in the `executeSnap` RPC parameters, except for the `wallet` API object.
3842
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-skunkworks/pull/263))
3943

40-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
44+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
45+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
4146
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.4...v0.10.5
4247
[0.10.4]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.4
4348
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.2...v0.10.3

packages/execution-environments/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/execution-environments",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "Snap sandbox environments for executing SES javascript",
55
"repository": {
66
"type": "git",
@@ -36,7 +36,7 @@
3636
"@metamask/object-multiplex": "^1.2.0",
3737
"@metamask/post-message-stream": "^4.0.0",
3838
"@metamask/providers": "^8.1.1",
39-
"@metamask/snap-types": "^0.10.5",
39+
"@metamask/snap-types": "^0.10.6",
4040
"cross-fetch": "^3.1.5",
4141
"eth-rpc-errors": "^4.0.3",
4242
"pump": "^3.0.0",

packages/iframe-execution-environment-service/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+
## [0.10.6]
10+
### Changed
11+
- No changes this release.
12+
913
## [0.10.5]
1014
### Fixed
1115
- Fix snap crash handling ([#298](https://github.com/MetaMask/snaps-skunkworks/pull/298))
@@ -111,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111115
### Added
112116
- Initial release
113117

114-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
118+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
119+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
115120
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
116121
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.2...v0.10.3
117122
[0.10.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.2

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/iframe-execution-environment-service",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
@@ -28,11 +28,11 @@
2828
},
2929
"dependencies": {
3030
"@metamask/controllers": "^26.0.0",
31-
"@metamask/execution-environments": "^0.10.5",
31+
"@metamask/execution-environments": "^0.10.6",
3232
"@metamask/object-multiplex": "^1.2.0",
3333
"@metamask/post-message-stream": "^4.0.0",
34-
"@metamask/snap-controllers": "^0.10.5",
35-
"@metamask/snap-types": "^0.10.5",
34+
"@metamask/snap-controllers": "^0.10.6",
35+
"@metamask/snap-types": "^0.10.6",
3636
"eth-rpc-errors": "^4.0.3",
3737
"json-rpc-engine": "^6.1.0",
3838
"json-rpc-middleware-stream": "^3.0.0",

packages/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+
## [0.10.6]
10+
### Changed
11+
- No changes this release.
12+
913
## [0.10.5]
1014
### Changed
1115
- No changes this release.
@@ -113,7 +117,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
113117
### Added
114118
- First semi-stable release.
115119

116-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
120+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
121+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
117122
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
118123
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.3
119124
[0.10.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.9.0...v0.10.0

packages/rpc-methods/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/rpc-methods",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "MetaMask Snap RPC method implementations.",
55
"repository": {
66
"type": "git",
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@metamask/controllers": "^26.0.0",
3131
"@metamask/key-tree": "^3.0.1",
32-
"@metamask/snap-controllers": "^0.10.5",
32+
"@metamask/snap-controllers": "^0.10.6",
3333
"@metamask/types": "^1.1.0",
3434
"eth-rpc-errors": "^4.0.2"
3535
},

packages/types/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+
## [0.10.6]
10+
### Changed
11+
- No changes this release.
12+
913
## [0.10.5]
1014
### Changed
1115
- No changes this release.
@@ -97,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
97101
### Added
98102
- Initial release
99103

100-
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...HEAD
104+
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...HEAD
105+
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
101106
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
102107
[0.10.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.1...v0.10.3
103108
[0.10.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.0...v0.10.1

packages/types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/snap-types",
3-
"version": "0.10.5",
3+
"version": "0.10.6",
44
"description": "Shared types for MetaMask Snaps packages.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)