File tree Expand file tree Collapse file tree 7 files changed +11
-5
lines changed
src/main/java/com/diffplug/spotless Expand file tree Collapse file tree 7 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
13
13
### Changed
14
14
* Bump default ` ktlint ` version to latest ` 1.3.0 ` -> ` 1.4.0 ` . ([ #2314 ] ( https://github.com/diffplug/spotless/pull/2314 ) )
15
15
* Add _ Sort Members_ feature based on [ Eclipse JDT] ( plugin-gradle/README.md#eclipse-jdt ) implementation. ([ #2312 ] ( https://github.com/diffplug/spotless/pull/2312 ) )
16
+ * Bump default ` jackson ` version to latest ` 2.18.0 ` -> ` 2.18.1 ` . ([ #2319 ] ( https://github.com/diffplug/spotless/pull/2319 ) )
17
+ * Bump default ` ktfmt ` version to latest ` 0.52 ` -> ` 0.53 ` . ([ #2320 ] ( https://github.com/diffplug/spotless/pull/2320 )
16
18
17
19
## [ 3.0.0.BETA4] - 2024-10-24
18
20
### Added
Original file line number Diff line number Diff line change @@ -97,11 +97,11 @@ dependencies {
97
97
// gson
98
98
gsonCompileOnly ' com.google.code.gson:gson:2.11.0'
99
99
// jackson
100
- String VER_JACKSON = ' 2.18.0 '
100
+ String VER_JACKSON = ' 2.18.1 '
101
101
jacksonCompileOnly " com.fasterxml.jackson.core:jackson-databind:$VER_JACKSON "
102
102
jacksonCompileOnly " com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$VER_JACKSON "
103
103
// ktfmt
104
- ktfmtCompileOnly " com.facebook:ktfmt:0.52 "
104
+ ktfmtCompileOnly " com.facebook:ktfmt:0.53 "
105
105
ktfmtCompileOnly(" com.google.googlejavaformat:google-java-format" ) {
106
106
version {
107
107
strictly ' 1.7' // for JDK 8 compatibility
Original file line number Diff line number Diff line change 32
32
public class JacksonJsonStep implements Serializable {
33
33
private static final long serialVersionUID = 1L ;
34
34
private static final String MAVEN_COORDINATE = "com.fasterxml.jackson.core:jackson-databind:" ;
35
- private static final String DEFAULT_VERSION = "2.18.0 " ;
35
+ private static final String DEFAULT_VERSION = "2.18.1 " ;
36
36
public static final String NAME = "jacksonJson" ;
37
37
38
38
private final JarState .Promised jarState ;
Original file line number Diff line number Diff line change 39
39
*/
40
40
public class KtfmtStep implements Serializable {
41
41
private static final long serialVersionUID = 1L ;
42
- private static final String DEFAULT_VERSION = "0.52 " ;
42
+ private static final String DEFAULT_VERSION = "0.53 " ;
43
43
private static final String NAME = "ktfmt" ;
44
44
private static final String MAVEN_COORDINATE = "com.facebook:ktfmt:" ;
45
45
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
5
5
## [ Unreleased]
6
6
### Changed
7
7
* Bump default ` ktlint ` version to latest ` 1.3.0 ` -> ` 1.4.0 ` . ([ #2314 ] ( https://github.com/diffplug/spotless/pull/2314 ) )
8
+ * Bump default ` jackson ` version to latest ` 2.18.0 ` -> ` 2.18.1 ` . ([ #2319 ] ( https://github.com/diffplug/spotless/pull/2319 ) )
9
+ * Bump default ` ktfmt ` version to latest ` 0.52 ` -> ` 0.53 ` . ([ #2320 ] ( https://github.com/diffplug/spotless/pull/2320 )
8
10
9
11
## [ 7.0.0.BETA4] - 2024-10-24
10
12
### Added
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
5
5
## [ Unreleased]
6
6
### Changed
7
7
* Bump default ` ktlint ` version to latest ` 1.3.0 ` -> ` 1.4.0 ` . ([ #2314 ] ( https://github.com/diffplug/spotless/pull/2314 ) )
8
+ * Bump default ` jackson ` version to latest ` 2.18.0 ` -> ` 2.18.1 ` . ([ #2319 ] ( https://github.com/diffplug/spotless/pull/2319 ) )
9
+ * Bump default ` ktfmt ` version to latest ` 0.52 ` -> ` 0.53 ` . ([ #2320 ] ( https://github.com/diffplug/spotless/pull/2320 )
8
10
9
11
## [ 2.44.0.BETA4] - 2024-10-24
10
12
### Added
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
12
12
// https://github.com/gradle-nexus/publish-plugin/releases
13
13
id ' io.github.gradle-nexus.publish-plugin' version ' 2.0.0' apply false
14
14
// https://github.com/spotbugs/spotbugs-gradle-plugin/releases
15
- id ' com.github.spotbugs' version ' 6.0.25 ' apply false
15
+ id ' com.github.spotbugs' version ' 6.0.26 ' apply false
16
16
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
17
17
id ' com.diffplug.spotless-changelog' version ' 3.1.2' apply false
18
18
// https://github.com/radarsh/gradle-test-logger-plugin/blob/develop/CHANGELOG.md
You can’t perform that action at this time.
0 commit comments