@metamask-previews/json-rpc-engine 10.0.1-preview-209dbcc → 10.0.2-preview-2983d87f
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 +9 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [10.0.2]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/utils` from `^10.0.0` to `^11.0.1` ([#5080](https://github.com/MetaMask/core/pull/5080))
|
|
15
|
+
- Bump `@metamask/rpc-errors` from `^7.0.0` to `^7.0.2` ([#5080](https://github.com/MetaMask/core/pull/5080))
|
|
16
|
+
|
|
10
17
|
## [10.0.1]
|
|
11
18
|
|
|
12
19
|
### Changed
|
|
@@ -216,7 +223,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
216
223
|
This change may affect consumers that depend on the eager execution of middleware _during_ request processing, _outside of_ middleware functions and request handlers.
|
|
217
224
|
- In general, it is a bad practice to work with state that depends on middleware execution, while the middleware are executing.
|
|
218
225
|
|
|
219
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@10.0.
|
|
226
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@10.0.2...HEAD
|
|
227
|
+
[10.0.2]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@10.0.1...@metamask/json-rpc-engine@10.0.2
|
|
220
228
|
[10.0.1]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@10.0.0...@metamask/json-rpc-engine@10.0.1
|
|
221
229
|
[10.0.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.3...@metamask/json-rpc-engine@10.0.0
|
|
222
230
|
[9.0.3]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.2...@metamask/json-rpc-engine@9.0.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/json-rpc-engine",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2-preview-2983d87f",
|
|
4
4
|
"description": "A tool for processing JSON-RPC messages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@metamask/rpc-errors": "^7.0.
|
|
59
|
+
"@metamask/rpc-errors": "^7.0.2",
|
|
60
60
|
"@metamask/safe-event-emitter": "^3.0.0",
|
|
61
|
-
"@metamask/utils": "^
|
|
61
|
+
"@metamask/utils": "^11.0.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@lavamoat/allow-scripts": "^3.0.4",
|