Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This repository contains the following packages [^fn1]:
- [`@metamask/snaps-simulation`](packages/snaps-simulation)
- [`@metamask/snaps-utils`](packages/snaps-utils)
- [`@metamask/snaps-webpack-plugin`](packages/snaps-webpack-plugin)
- [`@metamask/test-snaps`](packages/test-snaps)

<!-- end package list -->

Expand All @@ -44,6 +45,7 @@ linkStyle default opacity:0.5
snaps_simulation(["@metamask/snaps-simulation"]);
snaps_utils(["@metamask/snaps-utils"]);
snaps_webpack_plugin(["@metamask/snaps-webpack-plugin"]);
test_snaps(["@metamask/test-snaps"]);
create_snap --> snaps_utils;
snaps_cli --> snaps_rpc_methods;
snaps_cli --> snaps_sandbox;
Expand Down Expand Up @@ -71,6 +73,39 @@ linkStyle default opacity:0.5
snaps_webpack_plugin --> snaps_rpc_methods;
snaps_webpack_plugin --> snaps_sdk;
snaps_webpack_plugin --> snaps_utils;
test_snaps --> examples/packages/background_events;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want this part of the diagram?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just the result of the pre commit hook, I didn't add anything manually. 🤷

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know, I'm just asking if we want to omit this part of the diagram

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't seem like an important part and takes up a bunch of space 😅

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't have a strong opinion on it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reverted the changes in this PR, seems out of scope anyway.

test_snaps --> examples/packages/bip32;
test_snaps --> examples/packages/bip44;
test_snaps --> examples/packages/client_status;
test_snaps --> examples/packages/cronjob_duration;
test_snaps --> examples/packages/cronjobs;
test_snaps --> examples/packages/dialogs;
test_snaps --> examples/packages/errors;
test_snaps --> examples/packages/ethereum_provider;
test_snaps --> examples/packages/ethers_js;
test_snaps --> examples/packages/file_upload;
test_snaps --> examples/packages/get_entropy;
test_snaps --> examples/packages/get_file;
test_snaps --> examples/packages/home_page;
test_snaps --> examples/packages/images;
test_snaps --> examples/packages/transaction_insights;
test_snaps --> examples/packages/interactive_ui;
test_snaps --> examples/packages/json_rpc;
test_snaps --> examples/packages/jsx;
test_snaps --> examples/packages/lifecycle_hooks;
test_snaps --> examples/packages/localization;
test_snaps --> examples/packages/manage_state;
test_snaps --> examples/packages/name_lookup;
test_snaps --> examples/packages/network_access;
test_snaps --> examples/packages/notifications;
test_snaps --> examples/packages/preferences;
test_snaps --> examples/packages/preinstalled;
test_snaps --> examples/packages/protocol;
test_snaps --> examples/packages/send_flow;
test_snaps --> examples/packages/signature_insights;
test_snaps --> snaps_sdk;
test_snaps --> snaps_utils;
test_snaps --> examples/packages/wasm;
```

<!-- end dependency graph -->
Expand Down
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": "127.0.0",
"version": "128.0.0",
"private": true,
"repository": {
"type": "git",
Expand Down
9 changes: 8 additions & 1 deletion packages/snaps-jest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.5.0]

### Added

- Allow mocking JSON-RPC implementations ([#3667](https://github.com/MetaMask/snaps/pull/3667))

## [9.4.1]

### Changed
Expand Down Expand Up @@ -417,7 +423,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.4.1...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.5.0...HEAD
[9.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.4.1...@metamask/snaps-jest@9.5.0
[9.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.4.0...@metamask/snaps-jest@9.4.1
[9.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.3.0...@metamask/snaps-jest@9.4.0
[9.3.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-jest@9.2.0...@metamask/snaps-jest@9.3.0
Expand Down
2 changes: 1 addition & 1 deletion packages/snaps-jest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snaps-jest",
"version": "9.4.1",
"version": "9.5.0",
"description": "A Jest preset for end-to-end testing MetaMask Snaps, including a Jest environment, and a set of Jest matchers",
"keywords": [
"MetaMask",
Expand Down
10 changes: 9 additions & 1 deletion packages/snaps-rpc-methods/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [13.5.3]

### Fixed

- Wait for unlock before handling `manageAccounts` requests ([#3686](https://github.com/MetaMask/snaps/pull/3686))
- Throw if Snap not installed ([#3666](https://github.com/MetaMask/snaps/pull/3666))

## [13.5.2]

### Changed
Expand Down Expand Up @@ -509,7 +516,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The version of the package no longer needs to match the version of all other
MetaMask Snaps packages.

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.5.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.5.3...HEAD
[13.5.3]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.5.2...@metamask/snaps-rpc-methods@13.5.3
[13.5.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.5.1...@metamask/snaps-rpc-methods@13.5.2
[13.5.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.5.0...@metamask/snaps-rpc-methods@13.5.1
[13.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-rpc-methods@13.4.0...@metamask/snaps-rpc-methods@13.5.0
Expand Down
2 changes: 1 addition & 1 deletion packages/snaps-rpc-methods/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snaps-rpc-methods",
"version": "13.5.2",
"version": "13.5.3",
"description": "MetaMask Snaps JSON-RPC method implementations",
"keywords": [
"MetaMask",
Expand Down
9 changes: 8 additions & 1 deletion packages/snaps-simulation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.5.0]

### Added

- Allow mocking JSON-RPC implementations ([#3667](https://github.com/MetaMask/snaps/pull/3667))

## [3.4.2]

### Changed
Expand Down Expand Up @@ -217,7 +223,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release of `@metamask/snaps-simulation` package ([#2727](https://github.com/MetaMask/snaps/pull/2727))

[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.4.2...HEAD
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.5.0...HEAD
[3.5.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.4.2...@metamask/snaps-simulation@3.5.0
[3.4.2]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.4.1...@metamask/snaps-simulation@3.4.2
[3.4.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.4.0...@metamask/snaps-simulation@3.4.1
[3.4.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-simulation@3.3.0...@metamask/snaps-simulation@3.4.0
Expand Down
2 changes: 1 addition & 1 deletion packages/snaps-simulation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/snaps-simulation",
"version": "3.4.2",
"version": "3.5.0",
"description": "A simulation framework for MetaMask Snaps, enabling headless testing of Snaps in a controlled environment",
"keywords": [
"MetaMask",
Expand Down
Loading