Skip to content

Commit 0f32330

Browse files
fix(deps): update all dependencies
1 parent 3c29c88 commit 0f32330

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,6 @@ jobs:
190190
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
191191
- name: Generate and submit dependency graph
192192
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main'
193-
uses: gradle/actions/dependency-submission@94baf225fe0a508e581a564467443d0e2379123b # v4.3.0
193+
uses: gradle/actions/dependency-submission@06832c7b30a0129d7fb559bcc6e43d26f6374244 # v4.3.1
194194
with:
195195
github-token: ${{ steps.generate_github_token.outputs.token }}

Diff for: .github/workflows/codeql.yml

+3-3
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@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
57+
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
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@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
71+
uses: github/codeql-action/autobuild@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
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@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
84+
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # v3.28.15
8585
with:
8686
category: "/language:${{matrix.language}}"

Diff for: .github/workflows/semgrep.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
32+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3333
with:
3434
persist-credentials: false
3535

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ allprojects {
7272

7373
dependencies {
7474
taglet 'com.commercetools.build.taglets:commercetools-taglets:3.6.3'
75-
taglet 'com.google.guava:guava:33.4.5-jre'
75+
taglet 'com.google.guava:guava:33.4.7-jre'
7676
taglet 'org.jdrupes.taglets:plantuml-taglet:3.1.0'
7777
}
7878
}

Diff for: commercetools/commercetools-apachehttp-client/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
dependencies {
33
api project(":rmf:rmf-java-base")
4-
api "org.apache.httpcomponents.client5:httpclient5:5.4.2" version {
4+
api "org.apache.httpcomponents.client5:httpclient5:5.4.3" version {
55
strictly "[5.4.1,6.0["
66
prefer "5.4.2"
77
}

Diff for: commercetools/commercetools-async-http-client/build.gradle

+5-5
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.1.119.Final"
7-
api "io.netty:netty-codec-http:4.1.119.Final"
8-
api "io.netty:netty-codec-socks:4.1.119.Final"
9-
api "io.netty:netty-handler-proxy:4.1.119.Final"
10-
api "io.netty:netty-handler:4.1.119.Final"
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"
1111
implementation javax.validation
1212
}

Diff for: commercetools/commercetools-money/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies {
22
api "javax.money:money-api:1.1"
3-
api('org.javamoney.moneta:moneta-core:1.4.4') {
3+
api('org.javamoney.moneta:moneta-core:1.4.5') {
44
exclude group: "com.squareup.okhttp3", module: "okhttp"
55
}
66
}

Diff for: commercetools/commercetools-monitoring-datadog/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies {
22
api project(":rmf:rmf-java-base")
3-
implementation "com.datadoghq:java-dogstatsd-client:4.4.3"
3+
implementation "com.datadoghq:java-dogstatsd-client:4.4.4"
44
implementation "com.datadoghq:datadog-api-client:2.33.1"
55

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

Diff for: commercetools/commercetools-monitoring-opentelemetry/build.gradle

+1-1
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.48.0'
4+
implementation 'io.opentelemetry:opentelemetry-api:1.49.0'
55

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

Diff for: commercetools/commercetools-sdk-compat-v1/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ dependencies {
2121
api project(':commercetools:commercetools-sdk-java-api')
2222
api ctsdkv1.client version ctsdkv1.version
2323
api ctsdkv1.models version ctsdkv1.version
24-
api "io.netty:netty-codec:4.1.119.Final"
25-
api "io.netty:netty-codec-http:4.1.119.Final"
24+
api "io.netty:netty-codec:4.2.0.Final"
25+
api "io.netty:netty-codec-http:4.2.0.Final"
2626

2727
jmhImplementation project(':commercetools:commercetools-async-http-client')
2828
jmhImplementation project(':commercetools:commercetools-apachehttp-client')

Diff for: common-plugins/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ dependencies {
3232
implementation project(path: ':javaparser', configuration: 'shadow')
3333
implementation "com.google.code.gson:gson:2.12.1"
3434
implementation 'com.squareup:javapoet:1.13.0'
35-
implementation 'com.google.guava:guava:33.4.5-jre'
35+
implementation 'com.google.guava:guava:33.4.7-jre'
3636
}

Diff for: common-plugins/javaparser/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ shadowJar {
1515
}
1616

1717
dependencies {
18-
implementation 'com.github.javaparser:javaparser-core:3.26.3'
18+
implementation 'com.github.javaparser:javaparser-core:3.26.4'
1919
}

Diff for: gradle-scripts/extensions.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ ext {
5151
]
5252

5353
junit = [
54-
junit: 'org.junit.jupiter:junit-jupiter:5.11.4',
54+
junit: 'org.junit.jupiter:junit-jupiter:5.12.1',
5555
dataprovider: 'com.tngtech.junit.dataprovider:junit-jupiter-dataprovider:2.10',
5656
jsonassert: 'org.skyscreamer:jsonassert:1.5.3',
5757
assertj: 'org.assertj:assertj-core:3.27.3'
5858
]
5959

6060
mockito = [
6161
inline: 'org.mockito:mockito-inline:5.2.0',
62-
junit: 'org.mockito:mockito-junit-jupiter:5.16.1',
62+
junit: 'org.mockito:mockito-junit-jupiter:5.17.0',
6363
]
6464

6565
failsafe = [

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"node": ">=14.15",
1010
"npm": ">=5"
1111
},
12-
"packageManager": "yarn@4.7.0",
12+
"packageManager": "yarn@4.9.0",
1313
"dependencies": {
1414
"husky": "9.1.7",
1515
"lint-staged": "15.5.0"

0 commit comments

Comments
 (0)