Skip to content

Commit

Permalink
Update CHANGELOG for v7.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cukebot committed May 2, 2022
1 parent 1649893 commit 78adb8f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Removed

### Fixed

## [7.3.4] (2022-05-02)

### Fixed
* [Core] Fix problem with PrettyFormatter printing URL encoded strings ([#2545](https://github.com/cucumber/cucumber-jvm/pull/2545) skloessel)

Expand Down Expand Up @@ -1783,7 +1787,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
* First proper release
<!-- Releases -->
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.3...main
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.4...main
[7.3.4]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.3-RC1...v7.3.4
[7.3.3]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.2-RC1...v7.3.3
[7.3.2]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.1-RC1...v7.3.2
[7.3.1]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.0-RC1...v7.3.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,10 @@ private void printText(WriteEvent event) {
String line;
while ((line = lines.readLine()) != null) {
builder.append(STEP_SCENARIO_INDENT)
.append(line)
.append(System.lineSeparator()); // Add system line separator - \n won't do it!
.append(line)
.append(System.lineSeparator()); // Add system line
// separator - \n won't
// do it!
}
} catch (IOException e) {
throw new CucumberException(e);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void should_handle_scenario_outline() {

@Test
void should_print_encoded_characters() {

Feature feature = TestFeatureParser.parse("path/test.feature", "" +
"Feature: Test feature\n" +
" Scenario: Test Characters\n" +
Expand All @@ -189,9 +189,8 @@ void should_print_encoded_characters() {
"\n" +
"Scenario: Test Characters # path/test.feature:2\n" +
" Given first step # path/step_definitions.java:7\n" +
" | URLEncoded | %71s%22i%22%3A%7B%22D |\n"));
}

" | URLEncoded | %71s%22i%22%3A%7B%22D |\n"));
}

@Test
void should_print_tags() {
Expand Down

0 comments on commit 78adb8f

Please sign in to comment.