@metamask-previews/json-rpc-engine 7.2.0-preview.80566a6 → 7.3.0-preview.eb58a59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -1
- package/README.md +10 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [7.3.0]
|
|
10
|
+
### Added
|
|
11
|
+
- Migrate `@metamask/json-rpc-engine` into the core monorepo ([#1895](https://github.com/MetaMask/core/pull/1895))
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Bump `@metamask/utils` from `^8.1.0` to `^8.2.0` ([#1895](https://github.com/MetaMask/core/pull/1895))
|
|
15
|
+
- Bump `@metamask/rpc-errors` from `^6.0.0` to `^6.1.0` ([#1882](https://github.com/MetaMask/core/pull/1882))
|
|
16
|
+
- Bump `@metamask/auto-changelog` from `3.4.2` to `3.4.3` ([#1997](https://github.com/MetaMask/core/pull/1997))
|
|
17
|
+
|
|
9
18
|
## [7.2.0]
|
|
10
19
|
### Added
|
|
11
20
|
- Applied eslint rules from core monorepo ([#172](https://github.com/MetaMask/json-rpc-engine/pull/172))
|
|
@@ -83,7 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
83
92
|
This change may affect consumers that depend on the eager execution of middleware _during_ request processing, _outside of_ middleware functions and request handlers.
|
|
84
93
|
- In general, it is a bad practice to work with state that depends on middleware execution, while the middleware are executing.
|
|
85
94
|
|
|
86
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.
|
|
95
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.3.0...HEAD
|
|
96
|
+
[7.3.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.2.0...@metamask/json-rpc-engine@7.3.0
|
|
87
97
|
[7.2.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.1.1...@metamask/json-rpc-engine@7.2.0
|
|
88
98
|
[7.1.1]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.1.0...@metamask/json-rpc-engine@7.1.1
|
|
89
99
|
[7.1.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@7.0.0...@metamask/json-rpc-engine@7.1.0
|
package/README.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
A tool for processing JSON-RPC requests and responses.
|
|
4
4
|
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
`yarn add @metamask/json-rpc-engine`
|
|
8
|
+
|
|
9
|
+
or
|
|
10
|
+
|
|
11
|
+
`npm install @metamask/json-rpc-engine`
|
|
12
|
+
|
|
5
13
|
## Usage
|
|
6
14
|
|
|
7
15
|
```js
|
|
@@ -191,14 +199,6 @@ engine.push(function (req, res, next, end) {
|
|
|
191
199
|
});
|
|
192
200
|
```
|
|
193
201
|
|
|
194
|
-
##
|
|
202
|
+
## Contributing
|
|
195
203
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
```bash
|
|
199
|
-
yarn build
|
|
200
|
-
```
|
|
201
|
-
|
|
202
|
-
```bash
|
|
203
|
-
yarn test
|
|
204
|
-
```
|
|
204
|
+
This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/core#readme).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/json-rpc-engine",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0-preview.eb58a59",
|
|
4
4
|
"description": "A tool for processing JSON-RPC messages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@lavamoat/allow-scripts": "^2.3.1",
|
|
50
|
-
"@metamask/auto-changelog": "^3.4.
|
|
50
|
+
"@metamask/auto-changelog": "^3.4.3",
|
|
51
51
|
"@types/jest": "^27.4.1",
|
|
52
52
|
"deepmerge": "^4.2.2",
|
|
53
53
|
"depcheck": "^1.4.3",
|