Skip to content
This repository was archived by the owner on Nov 9, 2023. It is now read-only.

Commit 78edafb

Browse files
github-actions[bot]github-actionsFrederikBolding
authored
7.0.0 (#144)
* 7.0.0 * Update changelog --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
1 parent b32fe00 commit 78edafb

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [7.0.0]
810
### Added
9-
- `isJsonRpcSuccess` and `isJsonRpcFailure` type guard utilities ([#91](https://github.com/MetaMask/json-rpc-engine/pull/91))
10-
- JSON-RPC ID validation utility and type guard, via `getJsonRpcIdValidator` ([#91](https://github.com/MetaMask/json-rpc-engine/pull/91))
11+
- Added JSON-RPC notification handling ([#104](https://github.com/MetaMask/json-rpc-engine/pull/104))
12+
- Added `destroy` method ([#106](https://github.com/MetaMask/json-rpc-engine/pull/106))
1113

1214
### Changed
15+
- **BREAKING:** Require a minimum Node version of 16 ([#139](https://github.com/MetaMask/json-rpc-engine/pull/139))
16+
- **BREAKING:** Use `@metamask/utils` types ([#105](https://github.com/MetaMask/json-rpc-engine/pull/105))
17+
- The JSON-RPC engine and all middleware now use `@metamask/utils` JSON-RPC types
1318
- **(BREAKING)** Return a `null` instead of `undefined` response `id` for malformed request objects ([#91](https://github.com/MetaMask/json-rpc-engine/pull/91))
1419
- This is very unlikely to be breaking in practice, but the behavior could have been relied on.
20+
- Change package name to `@metamask/json-rpc-engine` ([#139](https://github.com/MetaMask/json-rpc-engine/pull/139))
21+
- Use `@metamask/rpc-errors` ([#138](https://github.com/MetaMask/json-rpc-engine/pull/138))
1522

1623
## [6.1.0] - 2020-11-20
1724
### Added
@@ -59,7 +66,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5966
This change may affect consumers that depend on the eager execution of middleware _during_ request processing, _outside of_ middleware functions and request handlers.
6067
- In general, it is a bad practice to work with state that depends on middleware execution, while the middleware are executing.
6168

62-
[Unreleased]: https://github.com/MetaMask/json-rpc-engine/compare/v6.1.0...HEAD
69+
[Unreleased]: https://github.com/MetaMask/json-rpc-engine/compare/v7.0.0...HEAD
70+
[7.0.0]: https://github.com/MetaMask/json-rpc-engine/compare/v6.1.0...v7.0.0
6371
[6.1.0]: https://github.com/MetaMask/json-rpc-engine/compare/v6.0.0...v6.1.0
6472
[6.0.0]: https://github.com/MetaMask/json-rpc-engine/compare/v5.4.0...v6.0.0
6573
[5.4.0]: https://github.com/MetaMask/json-rpc-engine/compare/v5.3.0...v5.4.0

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": "6.1.0",
3+
"version": "7.0.0",
44
"description": "A tool for processing JSON-RPC messages.",
55
"homepage": "https://github.com/MetaMask/json-rpc-engine#readme",
66
"bugs": {

0 commit comments

Comments
 (0)