Skip to content

Commit

Permalink
0.11.0 (#401)
Browse files Browse the repository at this point in the history
* 0.11.0

* Update changelog

Co-authored-by: github-actions <[email protected]>
Co-authored-by: Frederik Bolding <[email protected]>
Co-authored-by: Erik Marks <[email protected]>
  • Loading branch information
4 people authored Apr 25, 2022
1 parent c028e55 commit b7e9f17
Show file tree
Hide file tree
Showing 15 changed files with 90 additions and 24 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.10.7",
"version": "0.11.0",
"private": true,
"repository": {
"type": "git",
Expand Down
12 changes: 11 additions & 1 deletion packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0]
### Added
- Add self to mock endowments ([#341](https://github.com/MetaMask/snaps-skunkworks/pull/341))

### Changed
- Bump `ses` to `0.15.15` ([#396](https://github.com/MetaMask/snaps-skunkworks/pull/396))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))
- Update template files ([#350](https://github.com/MetaMask/snaps-skunkworks/pull/350))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
Expand Down Expand Up @@ -152,7 +161,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snaps-cli",
"version": "0.10.7",
"version": "0.11.0",
"description": "A CLI for developing MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -47,7 +47,7 @@
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@chainsafe/strip-comments": "^1.0.5",
"@metamask/snap-controllers": "^0.10.7",
"@metamask/snap-controllers": "^0.11.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"chokidar": "^3.0.2",
Expand Down
18 changes: 17 additions & 1 deletion packages/controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0]
### Added
- Add clearSnapState ([#346](https://github.com/MetaMask/snaps-skunkworks/pull/346))

### Changed
- Robustify snap startup procedure and iframe error handling ([#379](https://github.com/MetaMask/snaps-skunkworks/pull/379))
- Added ability to update snaps when installing them ([#322](https://github.com/MetaMask/snaps-skunkworks/pull/322))
- **BREAKING:** Use PermissionController:revokePermissionForAllSubjects ([#351](https://github.com/MetaMask/snaps-skunkworks/pull/351))
- Changed console.logs to console.info ([#361](https://github.com/MetaMask/snaps-skunkworks/pull/361))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))
- Remove cross-fetch ([#349](https://github.com/MetaMask/snaps-skunkworks/pull/349))

### Fixed
- Fix idle timeout implementation ([#385](https://github.com/MetaMask/snaps-skunkworks/pull/385))

## [0.10.7]
### Added
- Add version history information ([#317](https://github.com/MetaMask/snaps-skunkworks/pull/317))
Expand Down Expand Up @@ -225,7 +240,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
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.10.7",
"version": "0.11.0",
"description": "Controllers for MetaMask Snaps.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,7 +33,7 @@
},
"dependencies": {
"@metamask/controllers": "^28.0.0",
"@metamask/execution-environments": "^0.10.7",
"@metamask/execution-environments": "^0.11.0",
"@metamask/object-multiplex": "^1.1.0",
"@metamask/obs-store": "^7.0.0",
"@metamask/post-message-stream": "4.0.0",
Expand All @@ -58,7 +58,7 @@
"devDependencies": {
"@jest-runner/electron": "^3.0.1",
"@json-schema-tools/transpiler": "^1.10.2",
"@metamask/snap-types": "^0.10.7",
"@metamask/snap-types": "^0.11.0",
"@metamask/template-snap": "^0.7.0",
"@types/concat-stream": "^1.6.1",
"@types/gunzip-maybe": "^1.4.0",
Expand Down
10 changes: 9 additions & 1 deletion packages/examples/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0]
### Added
- Add WebAssembly example snap ([#242](https://github.com/MetaMask/snaps-skunkworks/pull/242), [#381](https://github.com/MetaMask/snaps-skunkworks/pull/381), [#371](https://github.com/MetaMask/snaps-skunkworks/pull/371))

### Changed
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
Expand Down Expand Up @@ -101,7 +108,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
Expand Down
4 changes: 2 additions & 2 deletions packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snap-examples",
"version": "0.10.7",
"version": "0.11.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.10.7",
"@metamask/snaps-cli": "^0.11.0",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
Expand Down
9 changes: 8 additions & 1 deletion packages/execution-environments/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.11.0]
### Changed
- Bump `ses` to `0.15.15` ([#396](https://github.com/MetaMask/snaps-skunkworks/pull/396))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))
- Remove cross-fetch ([#349](https://github.com/MetaMask/snaps-skunkworks/pull/349))

## [0.10.7]
### Added
- Add setInterval and clearInterval as default endowments ([#326](https://github.com/MetaMask/snaps-skunkworks/pull/326))
Expand Down Expand Up @@ -51,7 +57,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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.
- Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-skunkworks/pull/263))

[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.4...v0.10.5
Expand Down
4 changes: 2 additions & 2 deletions packages/execution-environments/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/execution-environments",
"version": "0.10.7",
"version": "0.11.0",
"description": "Snap sandbox environments for executing SES javascript",
"repository": {
"type": "git",
Expand Down Expand Up @@ -37,7 +37,7 @@
"@metamask/object-multiplex": "^1.2.0",
"@metamask/post-message-stream": "^4.0.0",
"@metamask/providers": "^8.1.1",
"@metamask/snap-types": "^0.10.7",
"@metamask/snap-types": "^0.11.0",
"eth-rpc-errors": "^4.0.3",
"pump": "^3.0.0",
"ses": "^0.15.15",
Expand Down
12 changes: 11 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,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0]
### Added
- Added ability to update snaps when installing them ([#322](https://github.com/MetaMask/snaps-skunkworks/pull/322))

### Changed
- Robustify snap startup procedure and iframe error handling ([#379](https://github.com/MetaMask/snaps-skunkworks/pull/379))
- **BREAKING:** Use PermissionController:revokePermissionForAllSubjects ([#351](https://github.com/MetaMask/snaps-skunkworks/pull/351))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
Expand Down Expand Up @@ -119,7 +128,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
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.10.7",
"version": "0.11.0",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps-skunkworks.git"
Expand Down Expand Up @@ -28,11 +28,11 @@
"publish": "../../scripts/publish-package.sh"
},
"dependencies": {
"@metamask/execution-environments": "^0.10.7",
"@metamask/execution-environments": "^0.11.0",
"@metamask/object-multiplex": "^1.2.0",
"@metamask/post-message-stream": "^4.0.0",
"@metamask/snap-controllers": "^0.10.7",
"@metamask/snap-types": "^0.10.7",
"@metamask/snap-controllers": "^0.11.0",
"@metamask/snap-types": "^0.11.0",
"eth-rpc-errors": "^4.0.3",
"json-rpc-engine": "^6.1.0",
"json-rpc-middleware-stream": "^3.0.0",
Expand Down
12 changes: 11 additions & 1 deletion packages/rpc-methods/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.0]
### Changed
- **BREAKING:** Wait for unlock on some RPC methods ([#356](https://github.com/MetaMask/snaps-skunkworks/pull/356))
- **BREAKING:** Use PermissionController:revokePermissionForAllSubjects ([#351](https://github.com/MetaMask/snaps-skunkworks/pull/351))
- Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-skunkworks/pull/360))

### Fixed
- **BREAKING:** Fix prompting for existing permissions ([#354](https://github.com/MetaMask/snaps-skunkworks/pull/354))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
Expand Down Expand Up @@ -121,7 +130,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
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.10.7",
"version": "0.11.0",
"description": "MetaMask Snap RPC method implementations.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,7 +29,7 @@
"dependencies": {
"@metamask/controllers": "^28.0.0",
"@metamask/key-tree": "^3.0.1",
"@metamask/snap-controllers": "^0.10.7",
"@metamask/snap-controllers": "^0.11.0",
"@metamask/types": "^1.1.0",
"eth-rpc-errors": "^4.0.2"
},
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.11.0]
### Changed
- **BREAKING:** Use PermissionController:revokePermissionForAllSubjects ([#351](https://github.com/MetaMask/snaps-skunkworks/pull/351))

## [0.10.7]
### Changed
- **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-skunkworks/pull/331))
Expand Down Expand Up @@ -105,7 +109,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.10.7...HEAD
[Unreleased]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.11.0...HEAD
[0.11.0]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.7...v0.11.0
[0.10.7]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.6...v0.10.7
[0.10.6]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.5...v0.10.6
[0.10.5]: https://github.com/MetaMask/snaps-skunkworks/compare/v0.10.3...v0.10.5
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.10.7",
"version": "0.11.0",
"description": "Shared types for MetaMask Snaps packages.",
"repository": {
"type": "git",
Expand Down

0 comments on commit b7e9f17

Please sign in to comment.