Skip to content

Commit c48651b

Browse files
committed
chore: Fix changelogs, lint
1 parent 66f24c8 commit c48651b

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

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

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

88
## [Unreleased]
99

10-
## [5.0.1]
11-
1210
### Changed
1311

1412
- **BREAKING:** Replace `SafeEventEmitterProvider` with `InternalProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
1513
- The new class is behaviorally equivalent to the previous version except it does not extend `SafeEventEmitter`.
1614
- `SafeEventEmitterProvider` is for now still exported as a deprecated alias of `InternalProvider` for backwards compatibility.
15+
16+
## [5.0.1]
17+
18+
### Changed
19+
1720
- Bump `@metamask/utils` from `^11.8.0` to `^11.8.1` ([#6708](https://github.com/MetaMask/core/pull/6708))
1821
- Bump `@metamask/json-rpc-engine` from `^10.1.0` to `^10.1.1` ([#6807](https://github.com/MetaMask/core/pull/6807))
1922

packages/network-controller/src/NetworkController.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,12 +1232,9 @@ export class NetworkController extends BaseController<
12321232
this.state.networkConfigurationsByChainId,
12331233
);
12341234

1235-
this.messenger.registerActionHandler(
1236-
`${this.name}:getEthQuery`,
1237-
() => {
1238-
return this.#ethQuery;
1239-
},
1240-
);
1235+
this.messenger.registerActionHandler(`${this.name}:getEthQuery`, () => {
1236+
return this.#ethQuery;
1237+
});
12411238

12421239
this.messenger.registerActionHandler(
12431240
`${this.name}:getNetworkClientById`,

packages/selected-network-controller/CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Make compatible with `InternalProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
13+
1014
## [25.0.0]
1115

1216
### Changed
@@ -29,7 +33,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2933

3034
### Changed
3135

32-
- Make compatible with `InternalProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
3336
- Bump `@metamask/utils` from `^11.8.0` to `^11.8.1` ([#6708](https://github.com/MetaMask/core/pull/6708))
3437
- Bump `@metamask/base-controller` from `^8.3.0` to `^8.4.1` ([#6632](https://github.com/MetaMask/core/pull/6632), [#6807](https://github.com/MetaMask/core/pull/6807))
3538
- Bump `@metamask/json-rpc-engine` from `^10.0.3` to `^10.1.1` ([#6678](https://github.com/MetaMask/core/pull/6678), [#6807](https://github.com/MetaMask/core/pull/6807))

0 commit comments

Comments
 (0)