Skip to content

Commit

Permalink
changed id names, added changelog, updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffdev committed Jan 23, 2020
1 parent c11761b commit 45116ed
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

Back to [Readme](README.md).

## [2.3.2] - 2020-01-23

### Fixed

* Missing feature description in scenario details (#222, contributed by Labouh)

### Added

* Explicit html element ids for better custom css styling (#228, contributed by Labouh)

## [2.3.1] - 2019-10-15

### Fixed

* Chart y axis step size in scenario view

## [2.3.0] - 2019-10-14
Expand Down Expand Up @@ -540,6 +551,7 @@ steps with status `pending` or `undefined` (default value is `false`) (#74)

Initial project version on GitHub and Maven Central.

[2.3.2]: https://github.com/trivago/cluecumber-report-plugin/tree/2.3.2
[2.3.1]: https://github.com/trivago/cluecumber-report-plugin/tree/2.3.1
[2.3.0]: https://github.com/trivago/cluecumber-report-plugin/tree/2.3.0
[2.2.0]: https://github.com/trivago/cluecumber-report-plugin/tree/2.2.0
Expand Down
4 changes: 2 additions & 2 deletions example-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.benjamin-bischoff</groupId>
<artifactId>cluecumber-test-project</artifactId>
<version>2.3.1</version>
<version>2.3.2</version>
<packaging>pom</packaging>

<properties>
Expand Down Expand Up @@ -60,7 +60,7 @@
<!--<failScenariosOnPendingOrUndefinedSteps>true</failScenariosOnPendingOrUndefinedSteps>-->

<!-- Optional custom CSS for custom styling -->
<customCss>custom/custom.css</customCss>
<!-- <customCss>custom/custom.css</customCss> -->

<!-- Optional properties to expand scenario hooks, step hooks and doc strings when scenario details are shown (default: false) -->
<!--<expandBeforeAfterHooks>true</expandBeforeAfterHooks>-->
Expand Down
10 changes: 5 additions & 5 deletions plugin-code/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.trivago.rta</groupId>
<artifactId>cluecumber-report-plugin</artifactId>
<version>2.3.1</version>
<version>2.3.2</version>
<url>https://github.com/trivago/cluecumber-report-plugin</url>

<name>Cluecumber Maven Plugin for Cucumber Reports</name>
Expand Down Expand Up @@ -65,7 +65,7 @@
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<maven.compile.encoding>UTF-8</maven.compile.encoding>

<maven.version>3.6.2</maven.version>
<maven.version>3.6.3</maven.version>
<maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
<nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version>
<maven.plugin.plugin.version>3.6.0</maven.plugin.plugin.version>
Expand All @@ -76,13 +76,13 @@
<maven.plugin.testing.harness.version>3.3.0</maven.plugin.testing.harness.version>
<cobertura.maven.plugin>2.7</cobertura.maven.plugin>
<maven.jar.plugin.version>3.0.2</maven.jar.plugin.version>
<plexus.component.annotations.version>2.0.0</plexus.component.annotations.version>
<plexus.component.annotations.version>2.1.0</plexus.component.annotations.version>
<maven.plugin.annotations.version>3.6.0</maven.plugin.annotations.version>
<maven.source.plugin.version>2.4</maven.source.plugin.version>
<plexus.utilities.version>3.3.0</plexus.utilities.version>

<mockito.version>3.1.0</mockito.version>
<junit5.vintage.version>5.5.2</junit5.vintage.version>
<mockito.version>3.2.4</mockito.version>
<junit5.vintage.version>5.6.0</junit5.vintage.version>
<openpojo.version>0.8.13</openpojo.version>

<gson.version>2.8.6</gson.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subheadline=""
preheadline=""
preheadlineLink="">

<div class="row" id="features-summary">
<div class="row" id="feature-summary">
<@page.card width="9" title="Feature Summary Result Chart" subtitle="" classes="">
<@page.graph />
</@page.card>
Expand Down
6 changes: 3 additions & 3 deletions plugin-code/src/main/resources/template/scenario-summary.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ preheadlineLink="">
<br>
${totalNumberOfSkippedScenarios} skipped <@common.status status="skipped"/>
<#else>
<a href="javascript:;"
<a href="javascript:"
onclick="document.location.hash='anchor-passed';">${totalNumberOfPassedScenarios}
passed</a> <@common.status status="passed"/>
<br>
<a href="javascript:;"
<a href="javascript:"
onclick="document.location.hash='anchor-failed';">${totalNumberOfFailedScenarios}
failed</a> <@common.status status="failed"/>
<br>
<a href="javascript:;"
<a href="javascript:"
onclick="document.location.hash='anchor-skipped';">${totalNumberOfSkippedScenarios}
skipped</a> <@common.status status="skipped"/>
</#if>
Expand Down
2 changes: 1 addition & 1 deletion plugin-code/src/main/resources/template/step-summary.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subheadline=""
preheadline=""
preheadlineLink="">

<div class="row" id="steps-summary">
<div class="row" id="step-summary">
<@page.card width="9" title="Step Summary Result Chart" subtitle="" classes="">
<@page.graph />
</@page.card>
Expand Down
2 changes: 1 addition & 1 deletion plugin-code/src/main/resources/template/tag-summary.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subheadline=""
preheadline=""
preheadlineLink="">

<div class="row" id="tags-summary">
<div class="row" id="tag-summary">
<@page.card width="9" title="Tag Summary Result Chart" subtitle="" classes="">
<@page.graph />
</@page.card>
Expand Down

0 comments on commit 45116ed

Please sign in to comment.