Skip to content

Commit 1e8b84e

Browse files
fix(deps): update jackson monorepo to v2.20.0 (#2606)
* fix(deps): update jackson monorepo to v2.20.0 * Updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Goooler <wangzongler@gmail.com>
1 parent 3684f67 commit 1e8b84e

File tree

5 files changed

+5
-2
lines changed

5 files changed

+5
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
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
* Adds support for worktrees (fixes [#1765](https://github.com/diffplug/spotless/issues/1765))
1717
* Bump default `google-java-format` version to latest `1.24.0` -> `1.28.0`. ([#2345](https://github.com/diffplug/spotless/pull/2345))
1818
* Bump default `ktlint` version to latest `1.5.0` -> `1.7.1`. ([#2555](https://github.com/diffplug/spotless/pull/2555))
19+
* Bump default `jackson` version to latest `2.19.2` -> `2.20.0`. ([#2606](https://github.com/diffplug/spotless/pull/2606))
1920

2021
## [3.3.1] - 2025-07-21
2122
### Fixed

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies {
100100
// gson
101101
gsonCompileOnly 'com.google.code.gson:gson:2.13.1'
102102
// jackson
103-
String VER_JACKSON='2.19.2'
103+
String VER_JACKSON='2.20.0'
104104
jacksonCompileOnly "com.fasterxml.jackson.core:jackson-databind:$VER_JACKSON"
105105
jacksonCompileOnly "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$VER_JACKSON"
106106
// ktfmt

lib/src/main/java/com/diffplug/spotless/json/JacksonJsonStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
public class JacksonJsonStep implements Serializable {
3333
private static final long serialVersionUID = 1L;
3434
private static final String MAVEN_COORDINATE = "com.fasterxml.jackson.core:jackson-databind:";
35-
private static final String DEFAULT_VERSION = "2.19.2";
35+
private static final String DEFAULT_VERSION = "2.20.0";
3636
public static final String NAME = "jacksonJson";
3737

3838
private final JarState.Promised jarState;

plugin-gradle/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
99
* Adds support for worktrees (fixes [#1765](https://github.com/diffplug/spotless/issues/1765))
1010
* Bump default `google-java-format` version to latest `1.24.0` -> `1.28.0`. ([#2345](https://github.com/diffplug/spotless/pull/2345))
1111
* Bump default `ktlint` version to latest `1.5.0` -> `1.7.1`. ([#2555](https://github.com/diffplug/spotless/pull/2555))
12+
* Bump default `jackson` version to latest `2.19.2` -> `2.20.0`. ([#2606](https://github.com/diffplug/spotless/pull/2606))
1213
### Fixed
1314
* Respect system gitconfig when performing git operations ([#2404](https://github.com/diffplug/spotless/issues/2404))
1415

plugin-maven/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
99
* Adds support for worktrees (fixes [#1765](https://github.com/diffplug/spotless/issues/1765))
1010
* Bump default `google-java-format` version to latest `1.24.0` -> `1.28.0`. ([#2345](https://github.com/diffplug/spotless/pull/2345))
1111
* Bump default `ktlint` version to latest `1.5.0` -> `1.7.1`. ([#2555](https://github.com/diffplug/spotless/pull/2555))
12+
* Bump default `jackson` version to latest `2.19.2` -> `2.20.0`. ([#2606](https://github.com/diffplug/spotless/pull/2606))
1213

1314
## [2.46.1] - 2025-07-21
1415
### Fixed

0 commit comments

Comments
 (0)