Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [18.0.0]

### Changed

- **BREAKING:** `createFetchMiddleware` no longer takes `fetch`, `btoa`, `rpcUrl`, and `originHttpHeaderKey` ([#402](https://github.com/MetaMask/eth-json-rpc-middleware/pull/402))
Expand All @@ -18,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

- **BREAKING:** Remove support for `wallet_getCapabilities`, `wallet_sendCalls`, and `wallet_getCallsStatus` from wallet middleware ([#401](https://github.com/MetaMask/eth-json-rpc-middleware/pull/401))
- These handlers have been moved to the `@metamask/eip-5792-middleware` package.
- **BREAKING:** Remove `PayloadWithOrigin` type ([#402](https://github.com/MetaMask/eth-json-rpc-middleware/pull/402))
- There is no equivalent.
- **BREAKING:** Remove `createFetchConfigFromReq` function ([#402](https://github.com/MetaMask/eth-json-rpc-middleware/pull/402))
Expand Down Expand Up @@ -436,7 +440,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `json-rpc-engine@5.3.0` ([#53](https://github.com/MetaMask/eth-json-rpc-middleware/pull/53))
- `eth-rpc-errors@3.0.0` ([#55](https://github.com/MetaMask/eth-json-rpc-middleware/pull/55))

[Unreleased]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v17.1.0...HEAD
[Unreleased]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v18.0.0...HEAD
[18.0.0]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v17.1.0...v18.0.0
[17.1.0]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v17.0.1...v17.1.0
[17.0.1]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v17.0.0...v17.0.1
[17.0.0]: https://github.com/MetaMask/eth-json-rpc-middleware/compare/v16.0.1...v17.0.0
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": "@metamask/eth-json-rpc-middleware",
"version": "17.1.0",
"version": "18.0.0",
"description": "Ethereum-related json-rpc-engine middleware.",
"repository": {
"type": "git",
Expand Down
22 changes: 21 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,27 @@ __metadata:
languageName: node
linkType: hard

"@metamask/eth-json-rpc-middleware@^17.0.1, @metamask/eth-json-rpc-middleware@workspace:.":
"@metamask/eth-json-rpc-middleware@npm:^17.0.1":
version: 17.1.0
resolution: "@metamask/eth-json-rpc-middleware@npm:17.1.0"
dependencies:
"@metamask/eth-block-tracker": ^12.0.0
"@metamask/eth-json-rpc-provider": ^4.1.7
"@metamask/eth-sig-util": ^8.1.2
"@metamask/json-rpc-engine": ^10.0.2
"@metamask/rpc-errors": ^7.0.2
"@metamask/superstruct": ^3.1.0
"@metamask/utils": ^11.1.0
"@types/bn.js": ^5.1.5
bn.js: ^5.2.1
klona: ^2.0.6
pify: ^5.0.0
safe-stable-stringify: ^2.4.3
checksum: 01910143d037234f4a34c5d1ae6b670718a35f16281323a353040d4335b0e7e179c83318b8cfc94b0a9d28c53937c2ee4ad1db3f4cf588e9748c01515d76f8ef
languageName: node
linkType: hard

"@metamask/eth-json-rpc-middleware@workspace:.":
version: 0.0.0-use.local
resolution: "@metamask/eth-json-rpc-middleware@workspace:."
dependencies:
Expand Down
Loading