json-rpc-middleware-stream
Advanced tools
Comparing version 4.2.0 to 4.2.1
@@ -9,2 +9,6 @@ # Changelog | ||
## [4.2.1] | ||
### Fixed | ||
- Add early return in createStreamMiddleware.processsResponse method if JSON RPC request is not found ([#35](https://github.com/MetaMask/json-rpc-middleware-stream/pull/35)) | ||
## [4.2.0] | ||
@@ -30,3 +34,4 @@ ### Changed | ||
[Unreleased]: https://github.com/MetaMask/json-rpc-middleware-stream/compare/v4.2.0...HEAD | ||
[Unreleased]: https://github.com/MetaMask/json-rpc-middleware-stream/compare/v4.2.1...HEAD | ||
[4.2.1]: https://github.com/MetaMask/json-rpc-middleware-stream/compare/v4.2.0...v4.2.1 | ||
[4.2.0]: https://github.com/MetaMask/json-rpc-middleware-stream/compare/v4.1.0...v4.2.0 | ||
@@ -33,0 +38,0 @@ [4.1.0]: https://github.com/MetaMask/json-rpc-middleware-stream/compare/v4.0.0...v4.1.0 |
@@ -74,2 +74,3 @@ "use strict"; | ||
console.warn(`StreamMiddleware - Unknown response id "${res.id}"`); | ||
return; | ||
} | ||
@@ -76,0 +77,0 @@ delete idMap[res.id]; |
{ | ||
"name": "json-rpc-middleware-stream", | ||
"version": "4.2.0", | ||
"version": "4.2.1", | ||
"description": "A small toolset for streaming JSON-RPC data and matching requests and responses.", | ||
@@ -32,3 +32,3 @@ "repository": { | ||
"@lavamoat/allow-scripts": "^1.0.5", | ||
"@metamask/auto-changelog": "^2.3.0", | ||
"@metamask/auto-changelog": "^3.0.0", | ||
"@metamask/eslint-config": "^9.0.0", | ||
@@ -35,0 +35,0 @@ "@metamask/eslint-config-jest": "^9.0.0", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21425
198