From 095ac598194543ac6041e39b7dbae96491066723 Mon Sep 17 00:00:00 2001 From: David Goss Date: Fri, 22 Apr 2022 08:08:34 +0100 Subject: [PATCH 1/2] fix: readd old bin alias for backwards compat --- bin/cucumber-js | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bin/cucumber-js diff --git a/bin/cucumber-js b/bin/cucumber-js new file mode 100755 index 000000000..2460cb264 --- /dev/null +++ b/bin/cucumber-js @@ -0,0 +1,3 @@ +#!/usr/bin/env node + +require('../lib/cli/run.js').default(); From 47ea581f43734f2fd4380fae9938420aaa7f4d2a Mon Sep 17 00:00:00 2001 From: David Goss Date: Fri, 22 Apr 2022 08:13:10 +0100 Subject: [PATCH 2/2] add CHANGELOG.md entry --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b9c4d0a3..1f431f465 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CO ### Added - Explicit support for Node.js 18 ([#2007](https://github.com/cucumber/cucumber-js/pull/2007)) +### Fixed +- Re-add `cucumber-js` bin file for backwards compatibility ([#2008](https://github.com/cucumber/cucumber-js/pull/2008)) + ## [8.1.1] - 2022-04-20 ### Fixed - Capture dependency on `@cucumber/message-streams` to satisfy peer requirement from `@cucumber/gherkin-streams` ([#2006](https://github.com/cucumber/cucumber-js/pull/2006))