@metamask-previews/eth-json-rpc-provider 5.0.1-preview-4cd9da8d → 6.0.0-preview-e3eb8eca

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 +5 -1
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [6.0.0]
11
+
10
12
  ### Added
11
13
 
12
14
  - Add `providerFromMiddlewareV2` ([#7001](https://github.com/MetaMask/core/pull/7001))
@@ -16,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
18
 
17
19
  ### Changed
18
20
 
21
+ - Bump `@metamask/json-rpc-engine` from `^10.1.1` to `^10.2.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
19
22
  - **BREAKING:** Replace `SafeEventEmitterProvider` with `InternalProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
20
23
  - The new class is behaviorally equivalent to the previous version except it does not extend `SafeEventEmitter`.
21
24
  - `SafeEventEmitterProvider` is for now still exported as a deprecated alias of `InternalProvider` for backwards compatibility.
@@ -232,7 +235,8 @@ Release `v2.0.0` is identical to `v1.0.1` aside from Node.js version requirement
232
235
 
233
236
  - Initial release, including `providerFromEngine` and `providerFromMiddleware`.
234
237
 
235
- [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@5.0.1...HEAD
238
+ [Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@6.0.0...HEAD
239
+ [6.0.0]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@5.0.1...@metamask/eth-json-rpc-provider@6.0.0
236
240
  [5.0.1]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@5.0.0...@metamask/eth-json-rpc-provider@5.0.1
237
241
  [5.0.0]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@4.1.8...@metamask/eth-json-rpc-provider@5.0.0
238
242
  [4.1.8]: https://github.com/MetaMask/core/compare/@metamask/eth-json-rpc-provider@4.1.7...@metamask/eth-json-rpc-provider@4.1.8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask-previews/eth-json-rpc-provider",
3
- "version": "5.0.1-preview-4cd9da8d",
3
+ "version": "6.0.0-preview-e3eb8eca",
4
4
  "description": "Create an Ethereum provider using a JSON-RPC engine or middleware",
5
5
  "keywords": [
6
6
  "MetaMask",
@@ -53,7 +53,7 @@
53
53
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
54
54
  },
55
55
  "dependencies": {
56
- "@metamask/json-rpc-engine": "^10.1.1",
56
+ "@metamask/json-rpc-engine": "^10.2.0",
57
57
  "@metamask/rpc-errors": "^7.0.2",
58
58
  "@metamask/utils": "^11.8.1",
59
59
  "nanoid": "^3.3.8"