Skip to content

Commit b008644

Browse files
committed
Merge branch 'main' into renovate/com.diffplug.spotless-changelog-3.x
2 parents ad70544 + 25151c9 commit b008644

File tree

21 files changed

+50
-42
lines changed

21 files changed

+50
-42
lines changed

.github/workflows/changelog-print.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ jobs:
1616
java-version: 11
1717
distribution: 'temurin'
1818
- name: gradle caching
19-
uses: gradle/actions/setup-gradle@v3
20-
with:
21-
gradle-home-cache-cleanup: true
19+
uses: gradle/actions/setup-gradle@v4
2220
- run: ./gradlew changelogPrint

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ jobs:
2929
distribution: "temurin"
3030
java-version: 11
3131
- name: gradle caching
32-
uses: gradle/actions/setup-gradle@v3
33-
with:
34-
gradle-home-cache-cleanup: true
32+
uses: gradle/actions/setup-gradle@v4
3533
- name: spotlessCheck
3634
run: ./gradlew spotlessCheck
3735
- name: assemble testClasses
@@ -71,9 +69,7 @@ jobs:
7169
distribution: "temurin"
7270
java-version: ${{ matrix.jre }}
7371
- name: gradle caching
74-
uses: gradle/actions/setup-gradle@v3
75-
with:
76-
gradle-home-cache-cleanup: true
72+
uses: gradle/actions/setup-gradle@v4
7773
- name: build (maven-only)
7874
if: matrix.kind == 'maven'
7975
run: ./gradlew :plugin-maven:build -x spotlessCheck

.github/workflows/deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ jobs:
4444
java-version: 11
4545
distribution: 'temurin'
4646
- name: gradle caching
47-
uses: gradle/actions/setup-gradle@v3
48-
with:
49-
gradle-home-cache-cleanup: true
47+
uses: gradle/actions/setup-gradle@v4
5048
- name: git fetch origin main
5149
run: git fetch origin main
5250
- name: publish all

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1919
* Bump default `greclipse` version to latest `4.29` -> `4.32`. ([#2179](https://github.com/diffplug/spotless/pull/2179), [#2190](https://github.com/diffplug/spotless/pull/2190))
2020
* Bump default `cdt` version to latest `11.3` -> `11.6`. ([#2179](https://github.com/diffplug/spotless/pull/2179))
2121
* Bump default `gson` version to latest `2.10.1` -> `2.11.0`. ([#2128](https://github.com/diffplug/spotless/pull/2128))
22+
* Bump default `jackson` version to latest `2.17.1` -> `2.17.2`. ([#2195](https://github.com/diffplug/spotless/pull/2195))
23+
* Bump default `cleanthat` version to latest `2.20` -> `2.21`. ([#2210](https://github.com/diffplug/spotless/pull/2210))
24+
* Bump default `google-java-format` version to latest `1.22.0` -> `1.23.0`. ([#2212](https://github.com/diffplug/spotless/pull/2212))
2225
### Fixed
2326
* Fix compatibility issue introduced by `ktfmt` `0.51`. ([#2172](https://github.com/diffplug/spotless/issues/2172))
2427
### Added

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ VER_SLF4J=[1.6,2.0[
2929
# Used in multiple places
3030
VER_DURIAN=1.2.0
3131
VER_JGIT=6.10.0.202406032230-r
32-
VER_JUNIT=5.10.3
33-
VER_ASSERTJ=3.26.0
32+
VER_JUNIT=5.11.0
33+
VER_ASSERTJ=3.26.3
3434
VER_MOCKITO=5.12.0

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,8 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90+
' "$PWD" ) || exit
8891

8992
# Use the maximum available, or set MAX_FD != -1 to use that value.
9093
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

lib/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ tasks.named("check").configure {
6868
}
6969

7070
dependencies {
71-
compileOnly 'org.slf4j:slf4j-api:2.0.0'
72-
testCommonImplementation 'org.slf4j:slf4j-api:2.0.0'
71+
compileOnly 'org.slf4j:slf4j-api:2.0.16'
72+
testCommonImplementation 'org.slf4j:slf4j-api:2.0.16'
7373

7474
// zero runtime reqs is a hard requirements for spotless-lib
7575
// if you need a dep, put it in lib-extra
@@ -80,7 +80,7 @@ dependencies {
8080

8181
// GLUE CODE (alphabetic order please)
8282
// cleanthat
83-
String VER_CLEANTHAT='2.20'
83+
String VER_CLEANTHAT='2.21'
8484
cleanthatCompileOnly "io.github.solven-eu.cleanthat:java:$VER_CLEANTHAT"
8585
compatCleanthat2Dot1CompileAndTestOnly "io.github.solven-eu.cleanthat:java:$VER_CLEANTHAT"
8686
// diktat old supported version 1.x
@@ -91,13 +91,13 @@ dependencies {
9191
flexmarkCompileOnly 'com.vladsch.flexmark:flexmark-all:0.64.8'
9292
// gherkin
9393
gherkinCompileOnly 'io.cucumber:gherkin-utils:9.0.0'
94-
gherkinCompileOnly 'org.slf4j:slf4j-api:2.0.0'
94+
gherkinCompileOnly 'org.slf4j:slf4j-api:2.0.16'
9595
// googleJavaFormat
96-
googleJavaFormatCompileOnly 'com.google.googlejavaformat:google-java-format:1.22.0'
96+
googleJavaFormatCompileOnly 'com.google.googlejavaformat:google-java-format:1.23.0'
9797
// gson
9898
gsonCompileOnly 'com.google.code.gson:gson:2.11.0'
9999
// jackson
100-
String VER_JACKSON='2.17.1'
100+
String VER_JACKSON='2.17.2'
101101
jacksonCompileOnly "com.fasterxml.jackson.core:jackson-databind:$VER_JACKSON"
102102
jacksonCompileOnly "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$VER_JACKSON"
103103
// ktfmt
@@ -114,22 +114,22 @@ dependencies {
114114
// ktlint previous supported version
115115
compatKtLint0Dot49Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-rule-engine:0.49.0'
116116
compatKtLint0Dot49Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-ruleset-standard:0.49.0'
117-
compatKtLint0Dot49Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.0'
117+
compatKtLint0Dot49Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.16'
118118
// ktlint previous supported version
119119
compatKtLint0Dot50Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-rule-engine:0.50.0'
120120
compatKtLint0Dot50Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-ruleset-standard:0.50.0'
121-
compatKtLint0Dot50Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.0'
121+
compatKtLint0Dot50Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.16'
122122
// ktlint latest supported version
123123
compatKtLint1Dot0Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-rule-engine:1.0.0'
124124
compatKtLint1Dot0Dot0CompileAndTestOnly 'com.pinterest.ktlint:ktlint-ruleset-standard:1.0.0'
125-
compatKtLint1Dot0Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.0'
125+
compatKtLint1Dot0Dot0CompileAndTestOnly 'org.slf4j:slf4j-api:2.0.16'
126126
// palantirJavaFormat
127127
palantirJavaFormatCompileOnly 'com.palantir.javaformat:palantir-java-format:1.1.0' // this version needs to stay compilable against Java 8 for CI Job testNpm
128128
// scalafmt
129129
scalafmtCompileOnly "org.scalameta:scalafmt-core_2.13:3.8.1"
130130
// sortPom
131131
sortPomCompileOnly 'com.github.ekryd.sortpom:sortpom-sorter:4.0.0'
132-
sortPomCompileOnly 'org.slf4j:slf4j-api:2.0.12'
132+
sortPomCompileOnly 'org.slf4j:slf4j-api:2.0.16'
133133
// zjsonPatch
134134
zjsonPatchCompileOnly 'com.flipkart.zjsonpatch:zjsonpatch:0.4.16'
135135
}

0 commit comments

Comments
 (0)