Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 8.13] Update Jackson version #770

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/getting-started.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ show usage with Jackson.
--------------------------------------------------
dependencies {
implementation 'co.elastic.clients:elasticsearch-java:{version}'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
}
--------------------------------------------------

Expand All @@ -47,7 +47,7 @@ dependencies:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
<version>2.17.0</version>
</dependency>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions docs/setup/installation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ available at https://snapshots.elastic.co/maven/.
--------------------------------------------------
dependencies {
implementation 'co.elastic.clients:elasticsearch-java:{version}'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
}
--------------------------------------------------

Expand All @@ -50,7 +50,7 @@ dependencies:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
<version>2.17.0</version>
</dependency>

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion example-transports/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ java {


dependencies {
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"

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

Expand Down
2 changes: 1 addition & 1 deletion java-client-serverless/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ publishing {

dependencies {
val elasticsearchVersion = "8.10.0"
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"
val openTelemetryVersion = "1.29.0"

// Apache 2.0
Expand Down
4 changes: 2 additions & 2 deletions java-client-serverless/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can add the Elasticsearch Serverless Java client to your Java project using
```groovy
dependencies {
implementation 'co.elastic.clients:elasticsearch-java-serverless:1.0.0-20231031'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
}
```

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

</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ dependencies {
// Compile and test with the last 7.x version to make sure transition scenarios where
// the Java API client coexists with a 7.x HLRC work fine
val elasticsearchVersion = "8.10.0"
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"
val openTelemetryVersion = "1.29.0"

// Apache 2.0
Expand Down
Loading