Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Releases: cerner/cucumber-forge-report-generator

v1.7.0

10 Sep 14:57
b888aa6
Compare
Choose a tag to compare

1.7.0 (2021-09-10)

Features

  • clearer errors on processing errors (#79) (b888aa6)

v1.6.0

13 Apr 19:25
Compare
Choose a tag to compare

1.6.0 (2021-04-13)

Features

v1.5.0

06 Apr 17:57
ecbc504
Compare
Choose a tag to compare

1.5.0 (2021-04-06)

Features

  • Generator: support tags with wildcard (#66) (ecbc504)

v1.4.0

03 Jan 05:08
6925967
Compare
Choose a tag to compare

1.4.0 (2021-01-03)

Features

  • Report: support linking to an individual feature or scenario (#64) (6925967)

v1.3.0

14 Sep 19:30
6f16b71
Compare
Choose a tag to compare

1.3.0 (2020-09-14)

Features

  • Generator: Add supported dialects to Generator class (#62) (6f16b71)
  • Report: Add support for persisting settings to browser storage (#61) (fd5c4c9)

v1.2.1

10 Jul 16:52
bc2b076
Compare
Choose a tag to compare

1.2.1 (2020-07-10)

Bug Fixes

v1.1.0

02 Jul 04:54
c841c24
Compare
Choose a tag to compare

1.1.0 (2020-07-02)

Features

  • Generator: Support official Gherkin dialects (#51) (c841c24)

v1.0.2

23 Jun 22:21
add24fe
Compare
Choose a tag to compare

1.0.2 (2020-06-23)

Bug Fixes

  • Generator: Quietly handle feature files without titles (#49) (add24fe)

v1.0.1

11 Apr 03:46
1a1ed66
Compare
Choose a tag to compare

1.0.1 (2020-04-11)

Bug Fixes

  • Generator: prevent crashing when features are filtered out by tag (#45) (1a1ed66)

v1.0.0

10 Apr 14:43
21f1de1
Compare
Choose a tag to compare

1.0.0 (2020-04-10)

Features

  • Generator: represent the feature file tree in sidebar buttons (21f1de1), closes #35

BREAKING CHANGES

  • Generator: update the Generator.generate function to be synchronous.
  • Generator: update the Generator.generate function to accept a single path to the top-level directory containing the feature files instead of an array of paths to each feature file

To migrate follow the example below:

Before:

generator.generate([featureFilePath], 'Project Name', 'TagFilter').then((htmlReportString) => {...});

After:

const htmlReportString = generator.generate(featureDirectoryPath, 'Project Name', 'TagFilter');
...