Skip to content

Commit 4ec2aba

Browse files
committed
Sync GJF versions
1 parent 90c46d0 commit 4ec2aba

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

Diff for: CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1616
* Support configuring the Equo P2 cache. ([#2238](https://github.com/diffplug/spotless/pull/2238))
1717
* Add explicit support for JSONC / CSS via biome, via the file extensions `.css` and `.jsonc`.
1818
([#2259](https://github.com/diffplug/spotless/pull/2259))
19+
* Bump default `google-java-format` version to latest `1.23.0` -> `1.24.0`. ([#2294](https://github.com/diffplug/spotless/pull/2294))
1920

2021
## [3.0.0.BETA2] - 2024-08-25
2122
### Changed

Diff for: lib/src/main/java/com/diffplug/spotless/java/GoogleJavaFormatStep.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private static FormatterStep createInternally(String groupArtifact, String versi
121121
.addMin(11, "1.8") // we only support google-java-format >= 1.8 due to api changes
122122
.addMin(16, "1.10.0") // java 16 requires at least 1.10.0 due to jdk api changes in JavaTokenizer
123123
.addMin(21, "1.17.0") // java 21 requires at least 1.17.0 due to https://github.com/google/google-java-format/issues/898
124-
.add(11, "1.23.0"); // default version
124+
.add(17, "1.24.0"); // default version
125125

126126
public static String defaultGroupArtifact() {
127127
return MAVEN_COORDINATE;

Diff for: plugin-gradle/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
44

55
## [Unreleased]
66

7+
### Changed
78
* Use the Gradle user home directory by default for the download directory for the biome executable. Previously, the
89
plugin tried to use Maven's home directory, which is not always accessible by a Gradle plugin. ([#2187](https://github.com/diffplug/spotless/issues/2187))
910
* Add explicit support for CSS via biome. Formatting CSS via biome was already supported as a general
1011
formatting step. Biome supports formatting CSS as of 1.8.0 (experimental, opt-in) and 1.9.0 (stable).
1112
([#2259](https://github.com/diffplug/spotless/pull/2259))
13+
* Bump default `google-java-format` version to latest `1.23.0` -> `1.24.0`. ([#2294](https://github.com/diffplug/spotless/pull/2294))
1214

1315
## [7.0.0.BETA2] - 2024-08-25
1416
### Changed

Diff for: plugin-maven/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1010
* Add explicit support for CSS via biome. Formatting CSS via biome was already supported as a general
1111
formatting step. Biome supports formatting CSS as of 1.8.0 (experimental, opt-in) and 1.9.0 (stable).
1212
([#2259](https://github.com/diffplug/spotless/pull/2259))
13+
* Bump default `google-java-format` version to latest `1.23.0` -> `1.24.0`. ([#2294](https://github.com/diffplug/spotless/pull/2294))
1314

1415
## [2.44.0.BETA2] - 2024-08-25
1516
### Changed

0 commit comments

Comments
 (0)