Skip to content

Commit 3cdbcf7

Browse files
authored
Update dependency com.fasterxml.jackson.core:jackson-databind to v2.17.1 (#1685)
2 parents 79a73e0 + 81b1c94 commit 3cdbcf7

File tree

7 files changed

+37
-35
lines changed

7 files changed

+37
-35
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1919
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
2020
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
2121
### Changes
22+
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
2223
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
2324
* Bump default `sortpom` version to latest `3.2.1` -> `3.4.0`. ([#2049](https://github.com/diffplug/spotless/pull/2049))
2425
* Bump default `shfmt` version to latest `3.7.0` -> `3.8.0`. ([#2050](https://github.com/diffplug/spotless/pull/2050))
2526
* Bump default `ktlint` version to latest `1.1.1` -> `1.2.1`. ([#2057](https://github.com/diffplug/spotless/pull/2057))
2627
* Bump default `sortpom` version to latest `3.4.0` -> `3.4.1`. ([#2078](https://github.com/diffplug/spotless/pull/2078))
2728
* Bump default `sortpom` version to latest `3.4.1` -> `4.0.0` and support versions back to `3.2.1`. ([#2115](https://github.com/diffplug/spotless/pull/2115))
2829
* Bump default `zjsonpatch` version to latest `0.4.14` -> `0.4.16`. ([#1969](https://github.com/diffplug/spotless/pull/1969))
29-
3030
### Removed
3131
* **BREAKING** Remove `JarState.getMavenCoordinate(String prefix)`. ([#1945](https://github.com/diffplug/spotless/pull/1945))
3232
* **BREAKING** Replace `PipeStepPair` with `FenceStep`. ([#1954](https://github.com/diffplug/spotless/pull/1954))

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies {
9797
// gson
9898
gsonCompileOnly 'com.google.code.gson:gson:2.10.1'
9999
// jackson
100-
String VER_JACKSON='2.14.2'
100+
String VER_JACKSON='2.17.1'
101101
jacksonCompileOnly "com.fasterxml.jackson.core:jackson-databind:$VER_JACKSON"
102102
jacksonCompileOnly "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$VER_JACKSON"
103103
// 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 java.io.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.14.2";
35+
private static final String DEFAULT_VERSION = "2.17.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
@@ -14,6 +14,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1414
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
1515
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
1616
### Changes
17+
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
1718
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
1819
* Bump default `sortpom` version to latest `3.2.1` -> `3.4.0`. ([#2049](https://github.com/diffplug/spotless/pull/2049))
1920
* Bump default `shfmt` version to latest `3.7.0` -> `3.8.0`. ([#2050](https://github.com/diffplug/spotless/pull/2050))

plugin-maven/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212
* Made ShadowCopy (`npmInstallCache`) more robust by re-creating the cache dir if it goes missing ([#1984](https://github.com/diffplug/spotless/issues/1984),[2096](https://github.com/diffplug/spotless/pull/2096))
1313
* scalafmt.conf fileOverride section now works correctly ([#1854](https://github.com/diffplug/spotless/pull/1854))
1414
### Changes
15+
* Bump default `jackson` version to latest `2.14.2` -> `2.17.1`. ([#1685](https://github.com/diffplug/spotless/pull/1685))
1516
* Bump default `ktfmt` version to latest `0.46` -> `0.47`. ([#2045](https://github.com/diffplug/spotless/pull/2045))
1617
* Bump default `sortpom` version to latest `3.2.1` -> `3.4.0`. ([#2049](https://github.com/diffplug/spotless/pull/2049))
1718
* Bump default `shfmt` version to latest `3.7.0` -> `3.8.0`. ([#2050](https://github.com/diffplug/spotless/pull/2050))
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"A": 1,
3-
"X": 2,
4-
"_arraysNotSorted": [ 3, 2, 1 ],
5-
"_objectsInArraysAreSorted": [ {
6-
"a": 1,
7-
"b": 2
2+
"A" : 1,
3+
"X" : 2,
4+
"_arraysNotSorted" : [ 3, 2, 1 ],
5+
"_objectsInArraysAreSorted" : [ {
6+
"a" : 1,
7+
"b" : 2
88
} ],
9-
"a": 3,
10-
"c": 4,
11-
"x": 5,
12-
"z": {
13-
"A": 1,
14-
"X": 2,
15-
"a": 3,
16-
"c": 4,
17-
"x": 5
9+
"a" : 3,
10+
"c" : 4,
11+
"x" : 5,
12+
"z" : {
13+
"A" : 1,
14+
"X" : 2,
15+
"a" : 3,
16+
"c" : 4,
17+
"x" : 5
1818
}
19-
}
19+
}
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"A": 1,
3-
"X": 2,
4-
"_arraysNotSorted": [ 3, 2, 1 ],
5-
"_objectsInArraysAreSorted": [ {
6-
"a": 1,
7-
"b": 2
2+
"A" : 1,
3+
"X" : 2,
4+
"_arraysNotSorted" : [ 3, 2, 1 ],
5+
"_objectsInArraysAreSorted" : [ {
6+
"a" : 1,
7+
"b" : 2
88
} ],
9-
"a": 3,
10-
"c": 4,
11-
"x": 5,
12-
"z": {
13-
"A": 1,
14-
"X": 2,
15-
"a": 3,
16-
"c": 4,
17-
"x": 5
9+
"a" : 3,
10+
"c" : 4,
11+
"x" : 5,
12+
"z" : {
13+
"A" : 1,
14+
"X" : 2,
15+
"a" : 3,
16+
"c" : 4,
17+
"x" : 5
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)