Skip to content

Commit 9d0c456

Browse files
1 parent 798982d commit 9d0c456

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

Diff for: CHANGELOG.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717

1818
### Fixed
1919

20+
* Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
21+
2022
## [6.10.4] (2021-05-13)
2123

2224
### Fixed
@@ -26,7 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2628
## [6.10.3] (2021-04-14)
2729

2830
### Fixed
29-
* [Gherkin Messages] Rules can be tagged ([cucumber/#1356](https://github.com/cucumber/cucumber/pull/1356) Gáspár Nagy, Seb Rose, Björn Rasmusson, Wannes Fransen)
31+
* [Gherkin Messages] Rules can be tagged ([cucumber/#1356](https://github.com/cucumber/cucumber/pull/1356) Gáspár Nagy, Seb Rose, Björn Rasmusson, Wannes Fransen)
3032
* [Java8] `cucumber-java8` works on Java 12+ ([jhalterman/typetools/#66](https://github.com/jhalterman/typetools/pull/66) Nuclearfarts)
3133

3234
## [6.10.2] (2021-03-15)
@@ -46,9 +48,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4648

4749
### Changed
4850
* Upgraded various internal dependencies
49-
- create-meta v3.0.0
50-
- gherkin v17.0.1
51-
- messages v14.0.1
51+
- create-meta v3.0.0
52+
- gherkin v17.0.1
53+
- messages v14.0.1
5254
- html-formatter v12.0.0
5355

5456
### Deprecated
@@ -61,7 +63,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6163
* [Core] Log warnings when classes or resource could not be loaded ([#2235](https://github.com/cucumber/cucumber-jvm/issues/2235) M.P. Korstanje)
6264
* [Core] Improve undefined step reporting ([#2208](https://github.com/cucumber/cucumber-jvm/issues/2208) M.P. Korstanje)
6365
* [Core] Log warnings when resources and classes could not be loaded ([#2235](https://github.com/cucumber/cucumber-jvm/issues/2235) M.P. Korstanje)
64-
66+
6567
## [6.9.1] (2020-12-14)
6668

6769
### Fixed
@@ -84,8 +86,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8486
* [Core] Handle null values in ci-dict [cucumber/#1228](https://github.com/cucumber/cucumber/issues/1228)
8587

8688
### Security
87-
* [JUnit] Update dependency junit:junit to v4.13.1.
88-
* See the [published security advisory](https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp) for details.
89+
* [JUnit] Update dependency junit:junit to v4.13.1.
90+
* See the [published security advisory](https://github.com/junit-team/junit4/security/advisories/GHSA-269g-pwp5-87pp) for details.
8991

9092
## [6.8.1] (2020-10-07)
9193

Diff for: core/src/main/java/io/cucumber/core/plugin/NoPublishFormatter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ void printBanner() {
7575
new Banner.Line(""),
7676
new Banner.Line(
7777
new Banner.Span("More information at "),
78-
new Banner.Span("https://reports.cucumber.io/docs/cucumber-jvm", AnsiEscapes.CYAN)),
78+
new Banner.Span("https://cucumber.io/docs/cucumber/environment-variables/", AnsiEscapes.CYAN)),
7979
new Banner.Line(""),
8080
new Banner.Line(
8181
new Banner.Span("Disable this message with one of the following:")),

Diff for: core/src/test/java/io/cucumber/core/plugin/NoPublishFormatterTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public void should_print_banner() throws UnsupportedEncodingException {
2828
"│ Environment variable: CUCUMBER_PUBLISH_ENABLED=true │\n" +
2929
"│ JUnit: @CucumberOptions(publish = true) │\n" +
3030
"│ │\n" +
31-
"│ More information at https://reports.cucumber.io/docs/cucumber-jvm \n" +
31+
"│ More information at https://cucumber.io/docs/cucumber/environment-variables/\n" +
3232
"│ │\n" +
3333
"│ Disable this message with one of the following: │\n" +
3434
"│ │\n" +

Diff for: release-notes/v6.5.0.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ For other changes in this release please refer to the full [change log](../CHANG
1010
Cucumber Reports
1111
----------------
1212

13-
The purpose of this service is to make it easier for teams using Cucumber to share living
13+
The purpose of this service is to make it easier for teams using Cucumber to share living
1414
documentation.
1515

1616
Report publishing is disabled by default, and when you run Cucumber, you will see
17-
the following banner printed to `STDERR`:
17+
the following banner printed to `STDERR`:
1818

1919
```
2020
┌───────────────────────────────────────────────────────────────────────────────┐
@@ -24,20 +24,20 @@ the following banner printed to `STDERR`:
2424
│ Environment variable: CUCUMBER_PUBLISH_ENABLED=true │
2525
│ System property: -Dcucumber.publish.enabled=true │
2626
│ │
27-
│ More information at https://reports.cucumber.io/docs/cucumber-jvm
27+
│ More information at https://cucumber.io/docs/cucumber/environment-variables/
2828
│ │
2929
│ To disable this message, add cucumber.publish.quiet=true to │
3030
│ src/test/resources/cucumber.properties or │
3131
│ src/test/resources/junit-platform.properties (cucumber-junit-platform-engine) │
3232
└───────────────────────────────────────────────────────────────────────────────┘
3333
```
3434

35-
When publishing is enabled, Cucumber will issue an `HTTP PUT` request to
36-
`https://messages.cucumber.io/api/reports` at the end of the run. The body of this
37-
request is the [messages](https://github.com/cucumber/cucumber/tree/master/messages)
35+
When publishing is enabled, Cucumber will issue an `HTTP PUT` request to
36+
`https://messages.cucumber.io/api/reports` at the end of the run. The body of this
37+
request is the [messages](https://github.com/cucumber/cucumber/tree/master/messages)
3838
generated during the run.
3939

40-
The request is handled by an AWS Lambda function which does a `307` redirect to
40+
The request is handled by an AWS Lambda function which does a `307` redirect to
4141
AWS S3 where the message stream is stored.
4242

4343
Cucumber then prints a URL where the report can be viewed, for example:
@@ -66,7 +66,7 @@ access to reports, and allow them to be kept for more than 24h.
6666

6767
The `CUCUMBER_PUBLISH_URL` environment variable allows other vendors to make their own
6868
report service hosted on a different domain. The value of this environment variable can
69-
also contain `-X` and `-H` [curl](https://curl.haxx.se/)-like options to override the HTTP
69+
also contain `-X` and `-H` [curl](https://curl.haxx.se/)-like options to override the HTTP
7070
verb and define HTTP headers for the publishing request, for example:
7171

7272
```

0 commit comments

Comments
 (0)