Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct the engine field to require Node 18 #114

Merged
merged 1 commit into from
Mar 11, 2024
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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,23 @@ All notable changes to [bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle) are

___Note:__ Yet to be released changes appear here._

## 9.0.1

* `FIX`: correct the `engine` field to require Node 18 ([#113](https://github.com/bpmn-io/bpmn-moddle/issues/113))

## 9.0.0

* `FEAT`: add `exports` configuration ([#111](https://github.com/bpmn-io/bpmn-moddle/pull/111))
* `FIX`: remove broken `main` export ([#111](https://github.com/bpmn-io/bpmn-moddle/pull/111))
* `CHORE`: drop UMD distribution ([#110](https://github.com/bpmn-io/bpmn-moddle/pull/110))
* `CHORE`: turn into ES module ([#111](https://github.com/bpmn-io/bpmn-moddle/pull/111))
* `CHORE`: require Node >= 16
* `CHORE`: require Node >= 18
* `DEPS`: update to `moddle@7.0.0` ([#109](https://github.com/bpmn-io/bpmn-moddle/pull/109))
* `DEPS`: update to `moddle-xml@11.0.0` ([#109](https://github.com/bpmn-io/bpmn-moddle/pull/109))

### Breaking Changes

* Require Node >= 16
* Require Node >= 18
* Drop UMD distribution. Use ES module export in modern JavaScript run-times

## 8.1.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"./package.json": "./package.json"
},
"engines": {
"node": ">= 16"
"node": ">= 18"
},
"keywords": [
"bpmn",
Expand Down