Skip to content

Commit 1b24f48

Browse files
authored
fix(deps): update dependency io.github.solven-eu.cleanthat:java to v2.17 (#1734)
2 parents 7ebdc6a + d832ca9 commit 1b24f48

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

CHANGES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212
## [Unreleased]
1313
### Added
1414
* `enum OnMatch { INCLUDE, EXCLUDE }` so that `FormatterStep.filterByContent` can not only include based on the pattern but also exclude. ([#1749](https://github.com/diffplug/spotless/pull/1749))
15-
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`.([#1741](https://github.com/diffplug/spotless/issues/1741))
16-
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
17-
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
18-
### Changes
19-
* Bump default `cleanthat` version to latest `2.13` -> `2.16`. ([#1725](https://github.com/diffplug/spotless/pull/1725))
2015
### Fixed
2116
* Update documented default `semanticSort` to `false`. ([#1728](https://github.com/diffplug/spotless/pull/1728))
17+
### Changes
18+
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
19+
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
20+
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
21+
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
2222

2323
## [2.39.0] - 2023-05-24
2424
### Added

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dependencies {
7070

7171
// GLUE CODE (alphabetic order please)
7272
// cleanthat
73-
String VER_CLEANTHAT='2.16'
73+
String VER_CLEANTHAT='2.17'
7474
cleanthatCompileOnly "io.github.solven-eu.cleanthat:java:$VER_CLEANTHAT"
7575
compatCleanthat2Dot1CompileAndTestOnly "io.github.solven-eu.cleanthat:java:$VER_CLEANTHAT"
7676
// diktat

plugin-gradle/CHANGES.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
55
## [Unreleased]
66
### Added
77
* Add target option `targetExcludeIfContentContains` and `targetExcludeIfContentContainsRegex` to exclude files based on their text content. ([#1749](https://github.com/diffplug/spotless/pull/1749))
8-
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
9-
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
10-
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
118
* Add an overload for `FormatExtension.addStep` which provides access to the `FormatExtension`'s `Provisioner`, enabling custom steps to make use of third-party dependencies.
129
### Fixed
1310
* Correctly support the syntax
@@ -18,6 +15,11 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1815
}
1916
}
2017
```
18+
### Changes
19+
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
20+
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
21+
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
22+
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
2123

2224
## [6.19.0] - 2023-05-24
2325
### Added

plugin-gradle/src/test/java/com/diffplug/gradle/spotless/TypescriptExtensionTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import java.io.IOException;
1919

20+
import org.junit.jupiter.api.Disabled;
2021
import org.junit.jupiter.api.Test;
2122

2223
import com.diffplug.spotless.npm.EslintFormatterStep;
@@ -169,6 +170,7 @@ void useEslint() throws IOException {
169170
}
170171

171172
@Test
173+
@Disabled("https://github.com/diffplug/spotless/issues/1756")
172174
void useEslintXoStandardRules() throws IOException {
173175
setFile(".eslintrc.js").toResource("npm/eslint/typescript/styleguide/xo/.eslintrc.js");
174176
setFile("tsconfig.json").toResource("npm/eslint/typescript/styleguide/xo/tsconfig.json");

plugin-maven/CHANGES.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
55
## [Unreleased]
66
### Added
77
* Support pass skip (`-Dspotless.skip=true`) from command-line. ([#1729](https://github.com/diffplug/spotless/pull/1729))
8-
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`.([#1741](https://github.com/diffplug/spotless/issues/1741))
9-
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
108
### Fixed
119
* Update documented default `semanticSort` to `false`. ([#1728](https://github.com/diffplug/spotless/pull/1728))
10+
### Changes
11+
* Bump default `cleanthat` version to latest `2.13` -> `2.17`. ([#1734](https://github.com/diffplug/spotless/pull/1734))
12+
* Bump default `ktlint` version to latest `0.49.1` -> `0.50.0`. ([#1741](https://github.com/diffplug/spotless/issues/1741))
13+
* Dropped support for `ktlint 0.47.x` following our policy of supporting two breaking changes at a time.
14+
* Dropped support for deprecated `useExperimental` parameter in favor of the `ktlint_experimental` property.
1215

1316
## [2.37.0] - 2023-05-24
1417
### Added

plugin-maven/src/test/java/com/diffplug/spotless/maven/typescript/TypescriptFormatStepTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
import java.io.IOException;
2121

22+
import org.junit.jupiter.api.Disabled;
2223
import org.junit.jupiter.api.Test;
2324

2425
import com.diffplug.spotless.ProcessRunner;
@@ -210,6 +211,7 @@ void eslintStyleguideStandardWithTypescript() throws Exception {
210211
}
211212

212213
@Test
214+
@Disabled("https://github.com/diffplug/spotless/issues/1756")
213215
void eslintStyleguideXo() throws Exception {
214216
writePomWithTypescriptSteps(
215217
TEST_FILE_PATH,

0 commit comments

Comments
 (0)