Skip to content

Commit f5639f1

Browse files
fix(deps): update jackson monorepo to v2.19.1 (#2352)
* fix(deps): update jackson monorepo to v2.19.1 * Updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Goooler <[email protected]>
1 parent a73d5b9 commit f5639f1

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1313

1414
## Changed
1515
* Bump default `gson` version to latest `2.11.0` -> `2.13.1`. ([#2414](https://github.com/diffplug/spotless/pull/2414))
16+
* Bump default `jackson` version to latest `2.18.1` -> `2.19.1`. ([#2352](https://github.com/diffplug/spotless/pull/2352))
1617

1718
## [3.2.0] - 2025-07-07
1819
### Added

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ dependencies {
9898
// gson
9999
gsonCompileOnly 'com.google.code.gson:gson:2.13.1'
100100
// jackson
101-
String VER_JACKSON='2.18.1'
101+
String VER_JACKSON='2.19.1'
102102
jacksonCompileOnly "com.fasterxml.jackson.core:jackson-databind:$VER_JACKSON"
103103
jacksonCompileOnly "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$VER_JACKSON"
104104
// ktfmt

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021-2024 DiffPlug
2+
* Copyright 2021-2025 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -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.18.1";
35+
private static final String DEFAULT_VERSION = "2.19.1";
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
@@ -6,6 +6,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
66

77
## Changed
88
* Bump default `gson` version to latest `2.11.0` -> `2.13.1`. ([#2414](https://github.com/diffplug/spotless/pull/2414))
9+
* Bump default `jackson` version to latest `2.18.1` -> `2.19.1`. ([#2352](https://github.com/diffplug/spotless/pull/2352))
910

1011
## [7.1.0] - 2025-07-07
1112
### Added

plugin-maven/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
66

77
## Changed
88
* Bump default `gson` version to latest `2.11.0` -> `2.13.1`. ([#2414](https://github.com/diffplug/spotless/pull/2414))
9+
* Bump default `jackson` version to latest `2.18.1` -> `2.19.1`. ([#2352](https://github.com/diffplug/spotless/pull/2352))
910

1011
## [2.45.0] - 2025-07-07
1112
### Added

0 commit comments

Comments
 (0)