Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.0]
### Changed
- **BREAKING**: Increase minimum Node.js version to 16 ([#41](https://github.com/MetaMask/object-multiplex/pull/41))
- **BREAKING**: Bump `readable-stream` from `^2.3.3` to `3.6.2` ([#41](https://github.com/MetaMask/object-multiplex/pull/41))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this breaking?

Copy link
Contributor Author

@legobeat legobeat Oct 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As this instantiates and interfaces with streams, should be the same for streamsv3 API: https://www.npmjs.com/package/readable-stream#version-3xx

It corresponds to the same as a bump from nodejs v8 to v10 would do for native streams.


### Removed
- Remove dependency `end-of-stream` ([#41](https://github.com/MetaMask/object-multiplex/pull/41))
- Remove `stream-resolved.finished` overload in types ([#41](https://github.com/MetaMask/object-multiplex/pull/41))

## [1.3.0]
### Added
- Export TypeScript types ([#31](https://github.com/MetaMask/object-multiplex/pull/31))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/object-multiplex",
"version": "1.3.0",
"version": "2.0.0",
"description": "Simple stream multiplexing for objectMode.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down