Skip to content

Commit

Permalink
Release 4.0.0 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelien-reeves authored Mar 16, 2022
1 parent bce0b4a commit d537b43
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 60 deletions.
62 changes: 27 additions & 35 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,56 @@
# CHANGE LOG
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

----
## [Unreleased]

## [4.0.0] - 2022-03-16
### Added

* Support for EcmaScript modules (aka ESM)
([#1756](https://github.com/cucumber/common/pull/1756))
- Support for EcmaScript modules (aka ESM)
([#1756](https://github.com/cucumber/common/pull/1756))

### Changed

* `@cucumber/messages`is now a peer dependency. You have to add `@cucumber/messages` in your dependencies:
```diff
{
"dependencies": {
+ "@cucumber/messages": "17.1.1",
"@cucumber/message-streams": "4.0.0",
}
}
```
- "@cucumber/messages": "17.1.1",
"@cucumber/message-streams": "4.0.0",
}
}
```
- `@cucumber/messages`is now a peer dependency. You have to add `@cucumber/messages` in your dependencies:
```diff
{
"dependencies": {
### Deprecated
### Removed

### Fixed
## [3.0.0] - 2021-07-08
### Removed
## [3.0.0] - 2021-07-08
### Changed

* Upgrade to messages v17.0.0
- Upgrade to messages v17.0.0
## [2.1.0] - 2021-05-30

### Added

* The `NdjsonToMessageStream` constructor accepts an optional function for parsing
a line, which may return null if a line is ignored. This can be used to improve performance
by ignoring certain lines.
- The `NdjsonToMessageStream` constructor accepts an optional function for parsing
a line, which may return null if a line is ignored. This can be used to improve performance
by ignoring certain lines.
## [2.0.0] - 2021-05-17

### Changed

* Upgrade to messages 16.0.0
- Upgrade to messages 16.0.0
## [1.0.0] - 2021-03-23
* First release
[Unreleased]: https://github.com/cucumber/message-streams/compare/v4.0.0...main
[4.0.0]: https://github.com/cucumber/message-streams/compare/v3.0.0...main
[3.0.0]: https://github.com/cucumber/message-streams/releases/tag/v3.0.0
[2.1.0]: https://github.com/cucumber/message-streams/releases/tag/v2.1.0
[2.0.0]: https://github.com/cucumber/message-streams/releases/tag/v2.0.0
[1.0.0]: https://github.com/cucumber/message-streams/releases/tag/v1.0.0
<!-- Releases -->
[Unreleased]: https://github.com/cucumber/message-streams/compare/v3.0.0...main
[3.0.0]: https://github.com/cucumber/message-streams/releases/tag/v3.0.0
[2.1.0]: https://github.com/cucumber/message-streams/releases/tag/v2.1.0
[2.0.0]: https://github.com/cucumber/message-streams/releases/tag/v2.0.0
[1.0.0]: https://github.com/cucumber/message-streams/releases/tag/v1.0.0
<!-- Contributors in alphabetical order -->
41 changes: 22 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/message-streams",
"version": "3.0.0",
"version": "4.0.0",
"description": "Streams for reading/writing messages",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand Down Expand Up @@ -36,17 +36,17 @@
"devDependencies": {
"@cucumber/messages": "^17.1.1",
"@types/mocha": "9.1.0",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.4.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"mocha": "9.2.2",
"prettier": "^2.5.1",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"typescript": "4.6.2"
},
Expand Down

0 comments on commit d537b43

Please sign in to comment.