Skip to content

Commit c017490

Browse files
authored
Merge pull request #895 from commercetools/renovate/all
fix(deps): update all dependencies
2 parents 5d52854 + 2acc6a9 commit c017490

File tree

26 files changed

+60
-44
lines changed

26 files changed

+60
-44
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
run: ./gradlew codeCoverageReport
142142

143143
- name: Send code coverage report to Codecov.io
144-
uses: codecov/codecov-action@ad3126e916f78f00edff4ed0317cf185271ccc2d # v5.4.2
144+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24 # v5.4.3
145145
with:
146146
token: ${{ secrets.CODECOV_TOKEN }}
147147
docs:
@@ -191,6 +191,6 @@ jobs:
191191
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
192192
- name: Generate and submit dependency graph
193193
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main'
194-
uses: gradle/actions/dependency-submission@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
194+
uses: gradle/actions/dependency-submission@8379f6a1328ee0e06e2bb424dadb7b159856a326 # v4.4.0
195195
with:
196196
github-token: ${{ steps.generate_github_token.outputs.token }}

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
# Initializes the CodeQL tools for scanning.
5656
- name: Initialize CodeQL
57-
uses: github/codeql-action/init@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
57+
uses: github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
5858
with:
5959
languages: ${{ matrix.language }}
6060
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -68,7 +68,7 @@ jobs:
6868
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6969
# If this step fails, then you should remove it and run the build manually (see below)
7070
- name: Autobuild
71-
uses: github/codeql-action/autobuild@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
71+
uses: github/codeql-action/autobuild@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
7272

7373
# ℹ️ Command-line programs to run using the OS shell.
7474
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -81,6 +81,6 @@ jobs:
8181
# ./location_of_script_within_repo/buildscript.sh
8282

8383
- name: Perform CodeQL Analysis
84-
uses: github/codeql-action/analyze@28deaeda66b76a05916b6923827895f2b14ab387 # v3.28.16
84+
uses: github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
8585
with:
8686
category: "/language:${{matrix.language}}"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ allprojects {
6666

6767
configurations {
6868
taglet {
69-
resolutionStrategy.force("net.sourceforge.plantuml:plantuml:1.2025.2")
69+
resolutionStrategy.force("net.sourceforge.plantuml:plantuml:1.2025.3")
7070
}
7171
}
7272

commercetools/commercetools-apachehttp-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
dependencies {
33
api project(":rmf:rmf-java-base")
4-
api "org.apache.httpcomponents.client5:httpclient5:5.4.4" version {
4+
api "org.apache.httpcomponents.client5:httpclient5:5.5" version {
55
strictly "[5.4.4,5.99999]"
6-
prefer "5.4.4"
6+
prefer "5.5"
77
}
88

99
api commons.io version commons.io_version
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
package com.commercetools.http.apachehttp;
33

4+
import com.fasterxml.jackson.core.Version;
5+
import com.vdurmont.semver4j.Semver;
46
import org.assertj.core.api.Assertions;
57
import org.junit.jupiter.api.Test;
68

@@ -9,6 +11,7 @@ public class SolutionInfoTest {
911
public void version() {
1012
String version = new ApacheHttpClientSolutionInfo().getVersion();
1113

12-
Assertions.assertThat(version).startsWith("5.4.");
14+
Assertions.assertThat(new Semver(version, Semver.SemverType.LOOSE).compareTo(new Semver("5.4.1"))).isGreaterThanOrEqualTo(0);
15+
Assertions.assertThat(version).startsWith("5.");
1316
}
1417
}

commercetools/commercetools-async-http-client/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ dependencies {
33
api project(":rmf:rmf-java-base")
44
api "org.asynchttpclient:async-http-client:2.12.4"
55
api commons.io version commons.io_version
6-
api "io.netty:netty-codec:4.2.0.Final"
7-
api "io.netty:netty-codec-http:4.2.0.Final"
8-
api "io.netty:netty-codec-socks:4.2.0.Final"
9-
api "io.netty:netty-handler-proxy:4.2.0.Final"
10-
api "io.netty:netty-handler:4.2.0.Final"
6+
api "io.netty:netty-codec:4.2.2.Final"
7+
api "io.netty:netty-codec-http:4.2.2.Final"
8+
api "io.netty:netty-codec-socks:4.2.2.Final"
9+
api "io.netty:netty-handler-proxy:4.2.2.Final"
10+
api "io.netty:netty-handler:4.2.2.Final"
1111
implementation javax.validation
1212
}

commercetools/commercetools-async-http-client/src/test/java/com/commercetools/http/asynchttpclient/SolutionInfoTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import com.commercetools.http.asynchttp.AsyncHttpClientSolutionInfo;
55

6+
import com.vdurmont.semver4j.Semver;
67
import org.assertj.core.api.Assertions;
78
import org.junit.jupiter.api.Test;
89

@@ -11,6 +12,7 @@ public class SolutionInfoTest {
1112
public void version() {
1213
String version = new AsyncHttpClientSolutionInfo().getVersion();
1314

14-
Assertions.assertThat(version).startsWith("2.12.");
15+
Assertions.assertThat(new Semver(version, Semver.SemverType.LOOSE).compareTo(new Semver("2.12.0"))).isGreaterThanOrEqualTo(0);
16+
Assertions.assertThat(version).startsWith("2.");
1517
}
1618
}

commercetools/commercetools-monitoring-datadog/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dependencies {
22
api project(":rmf:rmf-java-base")
33
implementation "com.datadoghq:java-dogstatsd-client:4.4.4"
4-
implementation "com.datadoghq:datadog-api-client:2.34.1"
4+
implementation "com.datadoghq:datadog-api-client:2.35.0"
55

66
testImplementation project(":commercetools:commercetools-sdk-java-api")
77
}

commercetools/commercetools-monitoring-newrelic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
dependencies {
33
api project(":rmf:rmf-java-base")
4-
implementation 'com.newrelic.agent.java:newrelic-api:8.20.0'
4+
implementation 'com.newrelic.agent.java:newrelic-api:8.21.0'
55

66
testImplementation project(":commercetools:commercetools-sdk-java-api")
77
}

commercetools/commercetools-monitoring-opentelemetry/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
dependencies {
33
api project(":rmf:rmf-java-base")
4-
implementation 'io.opentelemetry:opentelemetry-api:1.49.0'
4+
implementation 'io.opentelemetry:opentelemetry-api:1.50.0'
55

66
testImplementation project(":commercetools:commercetools-sdk-java-api")
77
}

0 commit comments

Comments
 (0)