Skip to content

Commit 59194e1

Browse files
Release 973.0.0 (MetaMask#8753)
## Explanation Feature release for `json-rpc-engine` introducing `assertExpectedHooks`. ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Primarily version bumps and changelog updates; no functional code changes in this diff beyond updating dependency resolution. > > **Overview** > Bumps the monorepo release to `973.0.0` and publishes `@metamask/json-rpc-engine@10.5.0`, documenting the new `assertExpectedHooks` export in the engine changelog. > > Updates all in-repo consumers to depend on `@metamask/json-rpc-engine@^10.5.0`, refreshes related package changelogs, and updates `yarn.lock` accordingly. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 7a7ce4c. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 3e626d1 commit 59194e1

25 files changed

Lines changed: 45 additions & 38 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/core-monorepo",
3-
"version": "972.0.0",
3+
"version": "973.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -54,7 +54,7 @@
5454
"@metamask/eslint-config-typescript": "^15.0.0",
5555
"@metamask/eth-block-tracker": "^15.0.1",
5656
"@metamask/eth-json-rpc-provider": "^6.0.1",
57-
"@metamask/json-rpc-engine": "^10.4.0",
57+
"@metamask/json-rpc-engine": "^10.5.0",
5858
"@metamask/network-controller": "^30.1.0",
5959
"@metamask/utils": "^11.9.0",
6060
"@ts-bridge/cli": "^0.6.4",

packages/base-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
},
5757
"devDependencies": {
5858
"@metamask/auto-changelog": "^6.1.0",
59-
"@metamask/json-rpc-engine": "^10.4.0",
59+
"@metamask/json-rpc-engine": "^10.5.0",
6060
"@ts-bridge/cli": "^0.6.4",
6161
"@types/jest": "^29.5.14",
6262
"deepmerge": "^4.2.2",

packages/composable-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
},
5757
"devDependencies": {
5858
"@metamask/auto-changelog": "^6.1.0",
59-
"@metamask/json-rpc-engine": "^10.4.0",
59+
"@metamask/json-rpc-engine": "^10.5.0",
6060
"@ts-bridge/cli": "^0.6.4",
6161
"@types/jest": "^29.5.14",
6262
"deepmerge": "^4.2.2",

packages/eip1193-permission-middleware/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Bump `@metamask/chain-agnostic-permission` from `^1.5.0` to `^1.6.0` ([#8749](https://github.com/MetaMask/core/pull/8749))
1313
- Bump `@metamask/permission-controller` from `^13.0.0` to `^13.1.0` ([#8722](https://github.com/MetaMask/core/pull/8722))
14-
- Bump `@metamask/json-rpc-engine` from `^10.3.0` to `^10.4.0` ([#8746](https://github.com/MetaMask/core/pull/8746))
14+
- Bump `@metamask/json-rpc-engine` from `^10.3.0` to `^10.5.0` ([#8746](https://github.com/MetaMask/core/pull/8746), [#8753](https://github.com/MetaMask/core/pull/8753))
1515

1616
## [2.0.0]
1717

packages/eip1193-permission-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"dependencies": {
5454
"@metamask/chain-agnostic-permission": "^1.6.0",
5555
"@metamask/controller-utils": "^11.20.0",
56-
"@metamask/json-rpc-engine": "^10.4.0",
56+
"@metamask/json-rpc-engine": "^10.5.0",
5757
"@metamask/permission-controller": "^13.1.0",
5858
"@metamask/utils": "^11.9.0",
5959
"lodash": "^4.17.21"

packages/eth-block-tracker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
},
6666
"devDependencies": {
6767
"@metamask/auto-changelog": "^6.1.0",
68-
"@metamask/json-rpc-engine": "^10.4.0",
68+
"@metamask/json-rpc-engine": "^10.5.0",
6969
"@ts-bridge/cli": "^0.6.4",
7070
"@types/jest": "^29.5.14",
7171
"@types/json-rpc-random-id": "^1.0.1",

packages/eth-json-rpc-middleware/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12-
- Bump `@metamask/json-rpc-engine` from `^10.2.4` to `^10.4.0` ([#8661](https://github.com/MetaMask/core/pull/8661), [#8746](https://github.com/MetaMask/core/pull/8746))
12+
- Bump `@metamask/json-rpc-engine` from `^10.2.4` to `^10.5.0` ([#8661](https://github.com/MetaMask/core/pull/8661), [#8746](https://github.com/MetaMask/core/pull/8746), [#8753](https://github.com/MetaMask/core/pull/8753))
1313

1414
## [23.1.3]
1515

packages/eth-json-rpc-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@metamask/eth-block-tracker": "^15.0.1",
6161
"@metamask/eth-json-rpc-provider": "^6.0.1",
6262
"@metamask/eth-sig-util": "^8.2.0",
63-
"@metamask/json-rpc-engine": "^10.4.0",
63+
"@metamask/json-rpc-engine": "^10.5.0",
6464
"@metamask/message-manager": "^14.1.1",
6565
"@metamask/rpc-errors": "^7.0.2",
6666
"@metamask/superstruct": "^3.1.0",

packages/eth-json-rpc-provider/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12-
- Bump `@metamask/json-rpc-engine` from `^10.2.4` to `^10.4.0` ([#8661](https://github.com/MetaMask/core/pull/8661), [#8746](https://github.com/MetaMask/core/pull/8746))
12+
- Bump `@metamask/json-rpc-engine` from `^10.2.4` to `^10.5.0` ([#8661](https://github.com/MetaMask/core/pull/8661), [#8746](https://github.com/MetaMask/core/pull/8746), [#8753](https://github.com/MetaMask/core/pull/8753))
1313

1414
## [6.0.1]
1515

packages/eth-json-rpc-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
5757
},
5858
"dependencies": {
59-
"@metamask/json-rpc-engine": "^10.4.0",
59+
"@metamask/json-rpc-engine": "^10.5.0",
6060
"@metamask/rpc-errors": "^7.0.2",
6161
"@metamask/utils": "^11.9.0",
6262
"nanoid": "^3.3.8"

0 commit comments

Comments
 (0)