Skip to content

Commit 2439aba

Browse files
authored
Update dependency io.cucumber:gherkin-utils to v8.0.6 (#1703)
2 parents 9382dfd + 2987f59 commit 2439aba

File tree

9 files changed

+9
-6
lines changed

9 files changed

+9
-6
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1919
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
2020
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
2121
### Changes
22+
* Bump default `gherkin-utils` version to latest `8.0.2` -> `9.0.0`. ([#1703](https://github.com/diffplug/spotless/pull/1703))
2223
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
2324
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
2425
* Bump default `ktlint` version to latest `1.1.1` -> `1.2.1`. ([#2057](https://github.com/diffplug/spotless/pull/2057))

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ dependencies {
9090
// flexmark
9191
flexmarkCompileOnly 'com.vladsch.flexmark:flexmark-all:0.64.0'
9292
// gherkin
93-
gherkinCompileOnly 'io.cucumber:gherkin-utils:8.0.2'
93+
gherkinCompileOnly 'io.cucumber:gherkin-utils:9.0.0'
9494
gherkinCompileOnly 'org.slf4j:slf4j-api:2.0.0'
9595
// googleJavaFormat
9696
googleJavaFormatCompileOnly 'com.google.googlejavaformat:google-java-format:1.19.2'

lib/src/main/java/com/diffplug/spotless/gherkin/GherkinUtilsStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class GherkinUtilsStep implements java.io.Serializable {
2929
private static final long serialVersionUID = 1L;
3030
private static final String MAVEN_COORDINATE = "io.cucumber:gherkin-utils:";
31-
private static final String DEFAULT_VERSION = "8.0.2";
31+
private static final String DEFAULT_VERSION = "9.0.0";
3232
public static final String NAME = "gherkinUtils";
3333

3434
private final JarState.Promised jarState;

plugin-gradle/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1414
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
1515
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
1616
### Changes
17+
* Bump default `gherkin-utils` version to latest `8.0.2` -> `9.0.0`. ([#1703](https://github.com/diffplug/spotless/pull/1703))
1718
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
1819
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
1920
* Bump default `ktlint` version to latest `1.1.1` -> `1.2.1`. ([#2057](https://github.com/diffplug/spotless/pull/2057))

plugin-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ spotless {
10971097
gherkin {
10981098
target 'src/**/*.feature' // required to be set explicitly
10991099
gherkinUtils()
1100-
.version('8.0.2') // optional: custom version of 'io.cucumber:gherkin-utils'
1100+
.version('9.0.0') // optional: custom version of 'io.cucumber:gherkin-utils'
11011101
}
11021102
}
11031103
```

plugin-maven/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
1313
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
1414
### Changes
15+
* Bump default `gherkin-utils` version to latest `8.0.2` -> `9.0.0`. ([#1703](https://github.com/diffplug/spotless/pull/1703))
1516
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
1617
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
1718
* Bump default `ktlint` version to latest `1.1.1` -> `1.2.1`. ([#2057](https://github.com/diffplug/spotless/pull/2057))

plugin-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ Uses a Gherkin pretty-printer that optionally allows configuring the number of s
10821082

10831083
```xml
10841084
<gherkinUtils>
1085-
<version>8.0.2</version> <!-- optional: Custom version of 'io.cucumber:gherkin-utils' -->
1085+
<version>9.0.0</version> <!-- optional: Custom version of 'io.cucumber:gherkin-utils' -->
10861086
</gherkinUtils>
10871087
```
10881088

testlib/src/main/resources/gherkin/complex_backgroundAfter.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Feature: Complex background
1212

1313
Rule: My Rule
1414

15-
Background:
15+
Background:
1616
Given a rule background step
1717

1818
Scenario: with examples

testlib/src/main/resources/gherkin/descriptionsAfter.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This is a description without indentation
2929
This description
3030
has a comment after
3131

32-
# this is a comment
32+
# this is a comment
3333
Given the minimalism
3434

3535
Scenario: comment right after description

0 commit comments

Comments
 (0)