@metamask-previews/json-rpc-engine 9.0.3-preview-ada451da → 10.0.0-preview-378c1be

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/package.json +2 -2
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.0]
11
+
12
+ ### Fixed
13
+
14
+ - **BREAKING**: Bump `@metamask/rpc-errors` from `^6.3.1` to `^7.0.0` ([#4773](https://github.com/MetaMask/core/pull/4773))
15
+ - This modifies the top-level error message for serialized internal JSON-RPC errors to include the actual error message, instead of the generic `Internal JSON-RPC Error.` string.
16
+
10
17
  ## [9.0.3]
11
18
 
12
19
  ### Changed
@@ -203,7 +210,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
203
210
  This change may affect consumers that depend on the eager execution of middleware _during_ request processing, _outside of_ middleware functions and request handlers.
204
211
  - In general, it is a bad practice to work with state that depends on middleware execution, while the middleware are executing.
205
212
 
206
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.3...HEAD
213
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@10.0.0...HEAD
214
+ [10.0.0]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.3...@metamask/json-rpc-engine@10.0.0
207
215
  [9.0.3]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.2...@metamask/json-rpc-engine@9.0.3
208
216
  [9.0.2]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.1...@metamask/json-rpc-engine@9.0.2
209
217
  [9.0.1]: https://github.com/MetaMask/core/compare/@metamask/json-rpc-engine@9.0.0...@metamask/json-rpc-engine@9.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/json-rpc-engine",
3
- "version": "9.0.3-preview-ada451da",
3
+ "version": "10.0.0-preview-378c1be",
4
4
  "description": "A tool for processing JSON-RPC messages",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -56,7 +56,7 @@
56
56
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
57
57
  },
58
58
  "dependencies": {
59
- "@metamask/rpc-errors": "^6.3.1",
59
+ "@metamask/rpc-errors": "^7.0.0",
60
60
  "@metamask/safe-event-emitter": "^3.0.0",
61
61
  "@metamask/utils": "^9.1.0"
62
62
  },