Skip to content

Commit

Permalink
0.7.0 (#193)
Browse files Browse the repository at this point in the history
* 0.7.0

* Update changelogs

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Erik Marks <rekmarks@protonmail.com>
  • Loading branch information
3 people authored Jan 13, 2022
1 parent f7426ab commit 92e5dae
Show file tree
Hide file tree
Showing 18 changed files with 79 additions and 28 deletions.
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": "0.6.3",
"version": "0.7.0",
"private": true,
"repository": {
"type": "git",
Expand Down
9 changes: 8 additions & 1 deletion packages/controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- **BREAKING:** Rename execution environment service class and events ([#188](https://github.com/MetaMask/snaps-skunkworks/pull/188))
- `ServiceMessenger` events are now named `ExecutionService`.
- `WebWorkerExecutionEnvironmentService` is now named `WebWorkerExecutionService`.

## [0.6.3]
### Fixed
- Prevent `disableSnap` from throwing if the specified Snap is stopped ([#175](https://github.com/MetaMask/snaps-skunkworks/pull/175))
Expand Down Expand Up @@ -141,7 +147,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First semi-stable release.

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
6 changes: 3 additions & 3 deletions packages/controllers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-controllers",
"version": "0.6.3",
"version": "0.7.0",
"description": "Controllers for MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@metamask/obs-store": "^7.0.0",
"@metamask/post-message-stream": "4.0.0",
"@metamask/safe-event-emitter": "^2.0.0",
"@metamask/snap-workers": "^0.6.3",
"@metamask/snap-workers": "^0.7.0",
"@types/deep-freeze-strict": "^1.1.0",
"ajv": "^8.8.2",
"concat-stream": "^2.0.0",
Expand All @@ -56,7 +56,7 @@
"devDependencies": {
"@jest-runner/electron": "^3.0.1",
"@json-schema-tools/transpiler": "^1.10.2",
"@metamask/snap-types": "^0.6.3",
"@metamask/snap-types": "^0.7.0",
"@types/concat-stream": "^1.6.1",
"@types/gunzip-maybe": "^1.4.0",
"@types/jest": "^26.0.23",
Expand Down
7 changes: 6 additions & 1 deletion packages/example-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- No changes this release.

## [0.6.3]
### Changed
- No changes this release.
Expand All @@ -32,7 +36,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release.

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions packages/example-snap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/example-snap",
"version": "0.6.3",
"version": "0.7.0",
"description": "An example MetaMask Snap.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,7 +30,7 @@
},
"devDependencies": {
"@metamask/auto-changelog": "^2.5.0",
"@metamask/snaps-cli": "^0.6.3",
"@metamask/snaps-cli": "^0.7.0",
"rimraf": "^3.0.2"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/example-snap/snap.manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.6.3",
"version": "0.7.0",
"proposedName": "MetaMask Example Snap",
"description": "An example MetaMask Snap.",
"repository": {
Expand Down
9 changes: 8 additions & 1 deletion packages/iframe-execution-environment-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- **BREAKING:** Rename execution environment service class and events ([#188](https://github.com/MetaMask/snaps-skunkworks/pull/188))
- `ServiceMessenger` events are now named `ExecutionService`.
- `IframeExecutionEnvironmentService` is now named `IframeExecutionService`.

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -80,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
8 changes: 4 additions & 4 deletions packages/iframe-execution-environment-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/iframe-execution-environment-service",
"version": "0.6.3",
"version": "0.7.0",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
Expand Down Expand Up @@ -30,9 +30,9 @@
"@metamask/controllers": "^17.0.0",
"@metamask/object-multiplex": "^1.2.0",
"@metamask/post-message-stream": "^4.0.0",
"@metamask/snap-controllers": "^0.6.3",
"@metamask/snap-types": "^0.6.3",
"@metamask/snap-workers": "^0.6.3",
"@metamask/snap-controllers": "^0.7.0",
"@metamask/snap-types": "^0.7.0",
"@metamask/snap-workers": "^0.7.0",
"eth-rpc-errors": "^4.0.3",
"json-rpc-engine": "^6.1.0",
"json-rpc-middleware-stream": "^3.0.0",
Expand Down
7 changes: 6 additions & 1 deletion packages/rpc-methods/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- No changes this release.

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -85,7 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First semi-stable release.

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions packages/rpc-methods/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/rpc-methods",
"version": "0.6.3",
"version": "0.7.0",
"description": "MetaMask Snap RPC method implementations.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"dependencies": {
"@metamask/key-tree": "^3.0.1",
"@metamask/snap-controllers": "^0.6.3",
"@metamask/snap-controllers": "^0.7.0",
"eth-rpc-errors": "^4.0.2"
},
"devDependencies": {
Expand Down
7 changes: 6 additions & 1 deletion packages/snap-examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- No changes this release.

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -66,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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).
- Some examples have been deleted because they were outdated.

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions packages/snap-examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-examples",
"version": "0.6.3",
"version": "0.7.0",
"description": "Example MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@metamask/eslint-config-jest": "^8.0.0",
"@metamask/eslint-config-nodejs": "^8.0.0",
"@metamask/eslint-config-typescript": "^8.0.0",
"@metamask/snaps-cli": "^0.6.3",
"@metamask/snaps-cli": "^0.7.0",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
Expand Down
14 changes: 13 additions & 1 deletion packages/snaps-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Added
- ESM support for `mm-snap build` ([#185](https://github.com/MetaMask/snaps-skunkworks/pull/185))
- The `build` command can now handle snap source code that includes ESM import / export statements. They will be transpiled to their CommonJS equivalents via Babel.

### Fixed
- Fix `mm-snap init` `src` default value ([#186](https://github.com/MetaMask/snaps-skunkworks/pull/186))
- It now correctly defaults to `src/index.js` instead of just `index.js`.
- Fix comment stripping ([#189](https://github.com/MetaMask/snaps-skunkworks/pull/189))
- Comments wouldn't be stripped under certain circumstances due to a RegEx error, details [here](https://github.com/jonschlinkert/strip-comments/pull/49).

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -73,7 +84,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Example snaps ([#72](https://github.com/MetaMask/snaps-skunkworks/pull/72))
- The examples now live in their own package, [`@metamask/snap-examples`](https://npmjs.com/package/@metamask/snap-examples).

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions packages/snaps-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snaps-cli",
"version": "0.6.3",
"version": "0.7.0",
"description": "A CLI for developing MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -43,7 +43,7 @@
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@metamask/snap-controllers": "^0.6.3",
"@metamask/snap-controllers": "^0.7.0",
"@nodefactory/strip-comments": "^1.0.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
Expand Down
7 changes: 6 additions & 1 deletion packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- **BREAKING:** Rename `ServiceMessenger` events to `ExecutionService` ([#188](https://github.com/MetaMask/snaps-skunkworks/pull/188))

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -67,7 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-types",
"version": "0.6.3",
"version": "0.7.0",
"description": "Shared types for MetaMask Snaps packages.",
"repository": {
"type": "git",
Expand Down
7 changes: 6 additions & 1 deletion packages/workers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0]
### Changed
- No changes this release.

## [0.6.3]
### Changed
- No changes this release.
Expand Down Expand Up @@ -71,7 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions packages/workers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-workers",
"version": "0.6.3",
"version": "0.7.0",
"description": "Snap Web Workers for the MetaMask extension.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,7 +31,7 @@
"@metamask/inpage-provider": "^8.0.3",
"@metamask/object-multiplex": "^1.1.0",
"@metamask/post-message-stream": "4.0.0",
"@metamask/snap-types": "^0.6.3",
"@metamask/snap-types": "^0.7.0",
"@types/pump": "^1.1.0",
"@types/readable-stream": "^2.3.9",
"browserify": "16.2.3",
Expand Down

0 comments on commit 92e5dae

Please sign in to comment.