Skip to content

Commit a68021b

Browse files
MajorLiftmcmire
andauthored
Release/172.0.0 (#4517)
## Explanation Contains patch releases of the following commit for `base-controller`, `permission-controller`, and all of their upstream deps/peerDeps: - #4516 In the packages downstream of the release candidates, I'm using the `"intentionally-skip"` option, and only bumping the release candidates to their post-release versions in package.json. This way, our yarn constraints are satisfied in the main branch. The version bumps will stay as unreleased changes which we can deploy in a subsequent release PR. Since the package versions are unchanged, the updates to the dependencies should be treated the same as any unreleased version bump, not disrupting the `create-release-branch` script or `publish-release` action in this PR or the upcoming release PR. To prevent any issues with inconsistency, I plan to release all of these downstream packages simultaneously in the immediately subsequent release (173.0.0). ### Release order roadmap - [core release 172.0.0] `{base,permission}-controller` - [snaps release 56.0.0] `snaps-{sdk,utils,rpc-methods}` - [core release 173.0.0] all core controllers (except `snaps-controllers` consumers) - [snaps release 57.0.0] `snaps-controllers` - [core release 174.0.0] `{accounts,chain,profile-sync}-controller` ## References - See #3645 - See MetaMask/snaps#2445 ## Checklist - [x] I've updated the test suite for new or updated code as appropriate - [x] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [x] I've highlighted breaking changes using the "BREAKING" category above as appropriate --------- Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com>
1 parent 575e027 commit a68021b

File tree

40 files changed

+180
-136
lines changed

40 files changed

+180
-136
lines changed

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": "171.0.0",
3+
"version": "172.0.0",
44
"private": true,
55
"description": "Monorepo for packages shared between MetaMask clients",
66
"repository": {
@@ -57,7 +57,7 @@
5757
"@metamask/eslint-config-typescript": "^12.1.0",
5858
"@metamask/eth-block-tracker": "^9.0.3",
5959
"@metamask/eth-json-rpc-provider": "^4.1.0",
60-
"@metamask/json-rpc-engine": "^9.0.0",
60+
"@metamask/json-rpc-engine": "^9.0.1",
6161
"@metamask/utils": "^9.0.0",
6262
"@types/jest": "^27.4.1",
6363
"@types/node": "^16.18.54",

packages/accounts-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
},
4343
"dependencies": {
4444
"@ethereumjs/util": "^8.1.0",
45-
"@metamask/base-controller": "^6.0.0",
45+
"@metamask/base-controller": "^6.0.1",
4646
"@metamask/eth-snap-keyring": "^4.3.1",
4747
"@metamask/keyring-api": "^8.0.0",
4848
"@metamask/keyring-controller": "^17.1.0",

packages/address-book-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
4646
"@metamask/utils": "^9.0.0"
4747
},
4848
"devDependencies": {

packages/announcement-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0"
44+
"@metamask/base-controller": "^6.0.1"
4545
},
4646
"devDependencies": {
4747
"@metamask/auto-changelog": "^3.4.4",

packages/approval-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [7.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/rpc-errors` from `6.2.1` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
- Bump `@metamask/utils` from `^8.3.0` to `^9.0.0` ([#4516](https://github.com/MetaMask/core/pull/4516))
16+
- Bump `@metamask/base-controller` to `^6.0.1` ([#4517](https://github.com/MetaMask/core/pull/4517))
17+
1018
## [7.0.0]
1119

1220
### Changed
@@ -200,7 +208,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
200208

201209
All changes listed after this point were applied to this package following the monorepo conversion.
202210

203-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@7.0.0...HEAD
211+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@7.0.1...HEAD
212+
[7.0.1]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@7.0.0...@metamask/approval-controller@7.0.1
204213
[7.0.0]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@6.0.2...@metamask/approval-controller@7.0.0
205214
[6.0.2]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@6.0.1...@metamask/approval-controller@6.0.2
206215
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/approval-controller@6.0.0...@metamask/approval-controller@6.0.1

packages/approval-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/approval-controller",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Manages requests that require user approval",
55
"keywords": [
66
"MetaMask",
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
44+
"@metamask/base-controller": "^6.0.1",
4545
"@metamask/rpc-errors": "^6.3.1",
4646
"@metamask/utils": "^9.0.0",
4747
"nanoid": "^3.1.31"

packages/assets-controllers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
"@ethersproject/providers": "^5.7.0",
4949
"@metamask/abi-utils": "^2.0.2",
5050
"@metamask/accounts-controller": "^17.2.0",
51-
"@metamask/approval-controller": "^7.0.0",
52-
"@metamask/base-controller": "^6.0.0",
51+
"@metamask/approval-controller": "^7.0.1",
52+
"@metamask/base-controller": "^6.0.1",
5353
"@metamask/contract-metadata": "^2.4.0",
54-
"@metamask/controller-utils": "^11.0.0",
54+
"@metamask/controller-utils": "^11.0.1",
5555
"@metamask/eth-query": "^4.0.0",
5656
"@metamask/keyring-controller": "^17.1.0",
5757
"@metamask/metamask-eth-abis": "^3.1.1",

packages/base-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/rpc-errors` from `6.2.1` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
- Bump `@metamask/utils` from `^8.3.0` to `^9.0.0` ([#4516](https://github.com/MetaMask/core/pull/4516))
16+
1017
## [6.0.0]
1118

1219
### Changed
@@ -213,7 +220,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
213220

214221
All changes listed after this point were applied to this package following the monorepo conversion.
215222

216-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/base-controller@6.0.0...HEAD
223+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/base-controller@6.0.1...HEAD
224+
[6.0.1]: https://github.com/MetaMask/core/compare/@metamask/base-controller@6.0.0...@metamask/base-controller@6.0.1
217225
[6.0.0]: https://github.com/MetaMask/core/compare/@metamask/base-controller@5.0.2...@metamask/base-controller@6.0.0
218226
[5.0.2]: https://github.com/MetaMask/core/compare/@metamask/base-controller@5.0.1...@metamask/base-controller@5.0.2
219227
[5.0.1]: https://github.com/MetaMask/core/compare/@metamask/base-controller@5.0.0...@metamask/base-controller@5.0.1

packages/base-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/base-controller",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "Provides scaffolding for controllers as well a communication system for all controllers",
55
"keywords": [
66
"MetaMask",

packages/chain-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
44+
"@metamask/base-controller": "^6.0.1",
4545
"@metamask/chain-api": "^0.0.1",
4646
"@metamask/keyring-api": "^8.0.0",
4747
"@metamask/snaps-controllers": "^8.1.1",

packages/composable-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0"
44+
"@metamask/base-controller": "^6.0.1"
4545
},
4646
"devDependencies": {
4747
"@metamask/auto-changelog": "^3.4.4",
48-
"@metamask/json-rpc-engine": "^9.0.0",
48+
"@metamask/json-rpc-engine": "^9.0.1",
4949
"@types/jest": "^27.4.1",
5050
"deepmerge": "^4.2.2",
5151
"immer": "^9.0.6",

packages/controller-utils/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [11.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/rpc-errors` from `6.2.1` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
- Bump `@metamask/utils` from `^8.3.0` to `^9.0.0` ([#4516](https://github.com/MetaMask/core/pull/4516))
16+
1017
## [11.0.0]
1118

1219
### Added
@@ -348,7 +355,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
348355

349356
All changes listed after this point were applied to this package following the monorepo conversion.
350357

351-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.0.0...HEAD
358+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.0.1...HEAD
359+
[11.0.1]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@11.0.0...@metamask/controller-utils@11.0.1
352360
[11.0.0]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@10.0.0...@metamask/controller-utils@11.0.0
353361
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@9.1.0...@metamask/controller-utils@10.0.0
354362
[9.1.0]: https://github.com/MetaMask/core/compare/@metamask/controller-utils@9.0.2...@metamask/controller-utils@9.1.0

packages/controller-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/controller-utils",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Data and convenience functions shared by multiple packages",
55
"keywords": [
66
"MetaMask",

packages/ens-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
},
4343
"dependencies": {
4444
"@ethersproject/providers": "^5.7.0",
45-
"@metamask/base-controller": "^6.0.0",
46-
"@metamask/controller-utils": "^11.0.0",
45+
"@metamask/base-controller": "^6.0.1",
46+
"@metamask/controller-utils": "^11.0.1",
4747
"@metamask/utils": "^9.0.0",
4848
"punycode": "^2.1.1"
4949
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"test:watch": "jest --watch"
4747
},
4848
"dependencies": {
49-
"@metamask/json-rpc-engine": "^9.0.0",
49+
"@metamask/json-rpc-engine": "^9.0.1",
5050
"@metamask/rpc-errors": "^6.3.1",
5151
"@metamask/safe-event-emitter": "^3.0.0",
5252
"@metamask/utils": "^9.0.0",

packages/gas-fee-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
4646
"@metamask/eth-query": "^4.0.0",
4747
"@metamask/ethjs-unit": "^0.3.0",
4848
"@metamask/network-controller": "^20.0.0",

packages/json-rpc-engine/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [9.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/rpc-errors` from `6.2.1` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
- Bump `@metamask/utils` from `^8.3.0` to `^9.0.0` ([#4516](https://github.com/MetaMask/core/pull/4516))
16+
1017
## [9.0.0]
1118

1219
### Changed
@@ -162,7 +169,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
162169
This change may affect consumers that depend on the eager execution of middleware _during_ request processing, _outside of_ middleware functions and request handlers.
163170
- In general, it is a bad practice to work with state that depends on middleware execution, while the middleware are executing.
164171

165-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.0...HEAD
172+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.1...HEAD
173+
[9.0.1]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.0...@metamask/json-rpc-engine@9.0.1
166174
[9.0.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@8.0.2...@metamask/json-rpc-engine@9.0.0
167175
[8.0.2]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@8.0.1...@metamask/json-rpc-engine@8.0.2
168176
[8.0.1]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@8.0.0...@metamask/json-rpc-engine@8.0.1

packages/json-rpc-engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/json-rpc-engine",
3-
"version": "9.0.0",
3+
"version": "9.0.1",
44
"description": "A tool for processing JSON-RPC messages",
55
"keywords": [
66
"MetaMask",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/json-rpc-engine": "^9.0.0",
44+
"@metamask/json-rpc-engine": "^9.0.1",
4545
"@metamask/safe-event-emitter": "^3.0.0",
4646
"@metamask/utils": "^9.0.0",
4747
"readable-stream": "^3.6.2"

packages/keyring-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"dependencies": {
4444
"@ethereumjs/util": "^8.1.0",
4545
"@keystonehq/metamask-airgapped-keyring": "^0.14.1",
46-
"@metamask/base-controller": "^6.0.0",
46+
"@metamask/base-controller": "^6.0.1",
4747
"@metamask/browser-passworder": "^4.3.0",
4848
"@metamask/eth-hd-keyring": "^7.0.1",
4949
"@metamask/eth-sig-util": "^7.0.1",

packages/logging-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
4646
"uuid": "^8.3.2"
4747
},
4848
"devDependencies": {

packages/message-manager/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
4646
"@metamask/eth-sig-util": "^7.0.1",
4747
"@metamask/utils": "^9.0.0",
4848
"@types/uuid": "^8.3.0",

packages/name-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
"test:watch": "jest --watch"
4343
},
4444
"dependencies": {
45-
"@metamask/base-controller": "^6.0.0",
46-
"@metamask/controller-utils": "^11.0.0",
45+
"@metamask/base-controller": "^6.0.1",
46+
"@metamask/controller-utils": "^11.0.1",
4747
"@metamask/utils": "^9.0.0",
4848
"async-mutex": "^0.5.0"
4949
},

packages/network-controller/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
4646
"@metamask/eth-block-tracker": "^9.0.3",
4747
"@metamask/eth-json-rpc-infura": "^9.1.0",
4848
"@metamask/eth-json-rpc-middleware": "^12.1.1",
4949
"@metamask/eth-json-rpc-provider": "^4.1.0",
5050
"@metamask/eth-query": "^4.0.0",
51-
"@metamask/json-rpc-engine": "^9.0.0",
51+
"@metamask/json-rpc-engine": "^9.0.1",
5252
"@metamask/rpc-errors": "^6.3.1",
5353
"@metamask/swappable-obj-proxy": "^2.2.0",
5454
"@metamask/utils": "^9.0.0",

packages/notification-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
44+
"@metamask/base-controller": "^6.0.1",
4545
"@metamask/utils": "^9.0.0",
4646
"nanoid": "^3.1.31"
4747
},

packages/notification-services-controller/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
},
4343
"dependencies": {
4444
"@contentful/rich-text-html-renderer": "^16.5.2",
45-
"@metamask/base-controller": "^6.0.0",
46-
"@metamask/controller-utils": "^11.0.0",
45+
"@metamask/base-controller": "^6.0.1",
46+
"@metamask/controller-utils": "^11.0.1",
4747
"@metamask/keyring-controller": "^17.1.0",
4848
"@metamask/profile-sync-controller": "^0.1.2",
4949
"bignumber.js": "^4.1.0",

packages/permission-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [10.0.1]
11+
12+
### Changed
13+
14+
- Bump `@metamask/rpc-errors` from `6.2.1` to `^6.3.1` ([#4516](https://github.com/MetaMask/core/pull/4516))
15+
- Bump `@metamask/utils` from `^8.3.0` to `^9.0.0` ([#4516](https://github.com/MetaMask/core/pull/4516))
16+
- Bump `@metamask/base-controller` to `^9.0.1` ([#4517](https://github.com/MetaMask/core/pull/4517))
17+
- Bump `@metamask/controller-utils` to `^11.0.1` ([#4517](https://github.com/MetaMask/core/pull/4517))
18+
- Bump `@metamask/json-rpc-engine` to `^9.0.1` ([#4517](https://github.com/MetaMask/core/pull/4517))
19+
1020
## [10.0.0]
1121

1222
### Changed
@@ -242,7 +252,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
242252

243253
All changes listed after this point were applied to this package following the monorepo conversion.
244254

245-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@10.0.0...HEAD
255+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@10.0.1...HEAD
256+
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@10.0.0...@metamask/permission-controller@10.0.1
246257
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@9.1.1...@metamask/permission-controller@10.0.0
247258
[9.1.1]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@9.1.0...@metamask/permission-controller@9.1.1
248259
[9.1.0]: https://github.com/MetaMask/core/compare/@metamask/permission-controller@9.0.2...@metamask/permission-controller@9.1.0

packages/permission-controller/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/permission-controller",
3-
"version": "10.0.0",
3+
"version": "10.0.1",
44
"description": "Mediates access to JSON-RPC methods, used to interact with pieces of the MetaMask stack, via middleware for json-rpc-engine",
55
"keywords": [
66
"MetaMask",
@@ -41,9 +41,9 @@
4141
"test:watch": "jest --watch"
4242
},
4343
"dependencies": {
44-
"@metamask/base-controller": "^6.0.0",
45-
"@metamask/controller-utils": "^11.0.0",
46-
"@metamask/json-rpc-engine": "^9.0.0",
44+
"@metamask/base-controller": "^6.0.1",
45+
"@metamask/controller-utils": "^11.0.1",
46+
"@metamask/json-rpc-engine": "^9.0.1",
4747
"@metamask/rpc-errors": "^6.3.1",
4848
"@metamask/utils": "^9.0.0",
4949
"@types/deep-freeze-strict": "^1.1.0",
@@ -52,7 +52,7 @@
5252
"nanoid": "^3.1.31"
5353
},
5454
"devDependencies": {
55-
"@metamask/approval-controller": "^7.0.0",
55+
"@metamask/approval-controller": "^7.0.1",
5656
"@metamask/auto-changelog": "^3.4.4",
5757
"@types/jest": "^27.4.1",
5858
"deepmerge": "^4.2.2",

0 commit comments

Comments
 (0)