Skip to content

Commit a26e396

Browse files
authoredFeb 10, 2023
Update dependency com.fasterxml.jackson.core:jackson-databind to v2.14.2 (#1536)
2 parents dbfeffa + c297912 commit a26e396

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed
 

‎CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1818
* `ktfmt` default style uses correct continuation indent. ([#1562](https://github.com/diffplug/spotless/pull/1562))
1919
### Changes
2020
* Bump default `ktfmt` version to latest `0.42` -> `0.43` ([#1561](https://github.com/diffplug/spotless/pull/1561))
21+
* Bump default `jackson` version to latest `2.14.1` -> `2.14.2` ([#1536](https://github.com/diffplug/spotless/pull/1536))
2122

2223
## [2.34.1] - 2023-02-05
2324
### Changes

‎lib/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ dependencies {
6969
palantirJavaFormatCompileOnly 'com.palantir.javaformat:palantir-java-format:1.1.0' // this version needs to stay compilable against Java 8 for CI Job testNpm
7070

7171
// used jackson-based formatters
72-
jacksonCompileOnly 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
73-
jacksonCompileOnly 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1'
72+
jacksonCompileOnly 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
73+
jacksonCompileOnly 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.2'
7474

7575
String VER_KTFMT = '0.43'
7676
ktfmtCompileOnly "com.facebook:ktfmt:$VER_KTFMT"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
public class JacksonJsonStep {
3434
static final String MAVEN_COORDINATE = "com.fasterxml.jackson.core:jackson-databind:";
3535
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
36-
static final String DEFAULT_VERSION = "2.14.1";
36+
static final String DEFAULT_VERSION = "2.14.2";
3737

3838
private JacksonJsonStep() {}
3939

‎plugin-gradle/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1111
* `ktfmt` default style uses correct continuation indent. ([#1562](https://github.com/diffplug/spotless/pull/1562))
1212
### Changes
1313
* Bump default `ktfmt` version to latest `0.42` -> `0.43` ([#1561](https://github.com/diffplug/spotless/pull/1561))
14+
* Bump default `jackson` version to latest `2.14.1` -> `2.14.2` ([#1536](https://github.com/diffplug/spotless/pull/1536))
1415

1516
## [6.14.1] - 2023-02-05
1617
### Fixed

‎plugin-maven/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1111
* `ktfmt` default style uses correct continuation indent. ([#1562](https://github.com/diffplug/spotless/pull/1562))
1212
### Changes
1313
* Bump default `ktfmt` version to latest `0.42` -> `0.43` ([#1561](https://github.com/diffplug/spotless/pull/1561))
14+
* Bump default `jackson` version to latest `2.14.1` -> `2.14.2` ([#1536](https://github.com/diffplug/spotless/pull/1536))
1415

1516
## [2.32.0] - 2023-02-05
1617
### Added

0 commit comments

Comments
 (0)