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
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.0]

### Changed

- **BREAKING:** Build the package as both CJS and ESM ([#168](https://github.com/MetaMask/post-message-stream/pull/168))
- The package now uses the `exports` field in `package.json` to define the entry points for CJS and ESM.
- It's no longer possible to import from the `dist` directory directly.
- **BREAKING:** Move Node.js-specific functionality to `@metamask/post-message-stream/node` entry point ([#168](https://github.com/MetaMask/post-message-stream/pull/168))
- The main entry point is now compatible with Node.js and browsers.
- Bump `@metamask/utils` from `^11.0.1` to `^11.4.0` ([#169](https://github.com/MetaMask/post-message-stream/pull/169))
- Bump `elliptic` from `6.6.0` to `6.6.1` ([#160](https://github.com/MetaMask/post-message-stream/pull/160))

## [9.0.0]

### Changed
Expand Down Expand Up @@ -134,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[Unreleased]: https://github.com/MetaMask/post-message-stream/compare/v9.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/post-message-stream/compare/v10.0.0...HEAD
[10.0.0]: https://github.com/MetaMask/post-message-stream/compare/v9.0.0...v10.0.0
[9.0.0]: https://github.com/MetaMask/post-message-stream/compare/v8.1.1...v9.0.0
[8.1.1]: https://github.com/MetaMask/post-message-stream/compare/v8.1.0...v8.1.1
[8.1.0]: https://github.com/MetaMask/post-message-stream/compare/v8.0.0...v8.1.0
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/post-message-stream",
"version": "9.0.0",
"version": "10.0.0",
"description": "Sets up a duplex object stream over window.postMessage",
"homepage": "https://github.com/MetaMask/post-message-stream#readme",
"bugs": {
Expand Down
Loading