Skip to content

Commit c074f83

Browse files
authored
Update Jackson version (#768)
1 parent a5ecc5e commit c074f83

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/getting-started.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ show usage with Jackson.
2323
--------------------------------------------------
2424
dependencies {
2525
implementation 'co.elastic.clients:elasticsearch-java:{version}'
26-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
26+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
2727
}
2828
--------------------------------------------------
2929

@@ -47,7 +47,7 @@ dependencies:
4747
<dependency>
4848
<groupId>com.fasterxml.jackson.core</groupId>
4949
<artifactId>jackson-databind</artifactId>
50-
<version>2.12.3</version>
50+
<version>2.17.0</version>
5151
</dependency>
5252
5353
</dependencies>

docs/setup/installation.asciidoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ available at https://snapshots.elastic.co/maven/.
2525
--------------------------------------------------
2626
dependencies {
2727
implementation 'co.elastic.clients:elasticsearch-java:{version}'
28-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
28+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
2929
}
3030
--------------------------------------------------
3131

@@ -50,7 +50,7 @@ dependencies:
5050
<dependency>
5151
<groupId>com.fasterxml.jackson.core</groupId>
5252
<artifactId>jackson-databind</artifactId>
53-
<version>2.12.3</version>
53+
<version>2.17.0</version>
5454
</dependency>
5555
5656
</dependencies>

example-transports/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ java {
3333

3434

3535
dependencies {
36-
val jacksonVersion = "2.13.3"
36+
val jacksonVersion = "2.17.0"
3737

3838
api("io.netty", "netty-codec-http", "4.1.93.Final")
3939

java-client-serverless/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ publishing {
192192

193193
dependencies {
194194
val elasticsearchVersion = "8.10.0"
195-
val jacksonVersion = "2.13.3"
195+
val jacksonVersion = "2.17.0"
196196
val openTelemetryVersion = "1.29.0"
197197

198198
// Apache 2.0

java-client-serverless/docs/getting-started.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can add the Elasticsearch Serverless Java client to your Java project using
2727
```groovy
2828
dependencies {
2929
implementation 'co.elastic.clients:elasticsearch-java-serverless:1.0.0-20231031'
30-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
30+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
3131
}
3232
```
3333

@@ -48,7 +48,7 @@ In the `pom.xml` of your project, add the following dependencies:
4848
<dependency>
4949
<groupId>com.fasterxml.jackson.core</groupId>
5050
<artifactId>jackson-databind</artifactId>
51-
<version>2.12.3</version>
51+
<version>2.17.0</version>
5252
</dependency>
5353

5454
</dependencies>

java-client/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ dependencies {
188188
// Compile and test with the last 7.x version to make sure transition scenarios where
189189
// the Java API client coexists with a 7.x HLRC work fine
190190
val elasticsearchVersion = "8.10.0"
191-
val jacksonVersion = "2.13.3"
191+
val jacksonVersion = "2.17.0"
192192
val openTelemetryVersion = "1.29.0"
193193

194194
// Apache 2.0

0 commit comments

Comments
 (0)