Skip to content

Commit ae36154

Browse files
dependabot[bot]newtorka-d
authored
chore: [DevOps] bump the production-minor-patch group across 1 directory with 25 updates (#661)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexander Dümont <[email protected]> Co-authored-by: Alexander Dümont <[email protected]>
1 parent 1d21909 commit ae36154

File tree

5 files changed

+23
-22
lines changed

5 files changed

+23
-22
lines changed

archetypes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<extension>
4848
<groupId>org.apache.maven.archetype</groupId>
4949
<artifactId>archetype-packaging</artifactId>
50-
<version>3.3.0</version>
50+
<version>3.3.1</version>
5151
</extension>
5252
</extensions>
5353
<plugins>

cloudplatform/connectivity-ztis/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>io.grpc</groupId>
4949
<artifactId>grpc-bom</artifactId>
50-
<version>1.68.0</version>
50+
<version>1.68.2</version>
5151
<type>pom</type>
5252
<scope>import</scope>
5353
</dependency>
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>io.spiffe</groupId>
7575
<artifactId>java-spiffe-core</artifactId>
76-
<version>0.8.9</version>
76+
<version>0.8.11</version>
7777
<exclusions>
7878
<exclusion>
7979
<artifactId>commons-logging</artifactId>
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>io.spiffe</groupId>
8686
<artifactId>grpc-netty-linux</artifactId>
87-
<version>0.8.9</version>
87+
<version>0.8.11</version>
8888
<scope>runtime</scope>
8989
</dependency>
9090
<!-- Override grpc versions from spiffe -->

datamodel/openapi/openapi-core/src/main/java/com/sap/cloud/sdk/services/openapi/apiclient/ApiClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,7 @@ public <T> T invokeAPI(
693693
// auth headers are added automatically by the SDK
694694
// updateParamsForAuth(authNames, queryParams, headerParams);
695695

696+
@SuppressWarnings( "deprecation" ) // spring-web:6.2.0 and later, works until <7.0.0
696697
final UriComponentsBuilder builder = UriComponentsBuilder.fromHttpUrl(basePath).path(path);
697698
if( queryParams != null ) {
698699
//encode the query parameters in case they contain unsafe characters

dependency-bundles/bom/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@
3636
<x-sap-release-maturity>Stable</x-sap-release-maturity>
3737
<!-- do not modify the following line, it is updated by the versioning script -->
3838
<sdk.version>5.15.0-SNAPSHOT</sdk.version>
39-
<service-binding.version>0.10.5</service-binding.version>
39+
<service-binding.version>0.20.0</service-binding.version>
4040
<!-- HTTP stuff -->
4141
<httpcore.version>4.4.16</httpcore.version>
4242
<httpcore5.version>5.3.1</httpcore5.version>
43-
<httpclient5.version>5.4</httpclient5.version>
43+
<httpclient5.version>5.4.1</httpclient5.version>
4444
<httpcomponents-client.version>4.5.14</httpcomponents-client.version>
4545
<jakarta-servlet.version>6.1.0</jakarta-servlet.version>
4646
<!-- XSUAA -->
4747
<!-- Keep this version consistent with the one from the SAP Java Buildpack (after their 2.0 release) -->
4848
<!-- see https://github.wdf.sap.corp/xs2-java/xs-java-buildpack/blob/master/resources/pom.xml -->
49-
<scp-cf.xsuaa-client.version>3.5.3</scp-cf.xsuaa-client.version>
49+
<scp-cf.xsuaa-client.version>3.5.5</scp-cf.xsuaa-client.version>
5050
<java-jwt.version>4.4.0</java-jwt.version>
5151
<!-- Utility stuff -->
5252
<slf4j.version>2.0.16</slf4j.version>
53-
<lombok.version>1.18.34</lombok.version>
53+
<lombok.version>1.18.36</lombok.version>
5454
<findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
5555
<!-- @Nonnull/@Nullable annotations -->
5656
<vavr.version>0.10.5</vavr.version>
5757
<guava.version>33.3.1-jre</guava.version>
5858
<!-- collection utilities, @Beta annotation -->
59-
<commons-io.version>2.17.0</commons-io.version>
59+
<commons-io.version>2.18.0</commons-io.version>
6060
<!-- Apache file utils -->
6161
<axis2.version>1.7.9</axis2.version>
6262
<!--Used in essential modules: cloudplatform-connectivity, connectivity-destination-service, odata-client, odata-core, securitys-->
@@ -264,13 +264,13 @@
264264
<dependency>
265265
<groupId>org.checkerframework</groupId>
266266
<artifactId>checker-qual</artifactId>
267-
<version>3.48.1</version>
267+
<version>3.48.3</version>
268268
</dependency>
269269
<!-- 2.10 by Caffeine and 2.11 by Guava -->
270270
<dependency>
271271
<groupId>com.google.errorprone</groupId>
272272
<artifactId>error_prone_annotations</artifactId>
273-
<version>2.34.0</version>
273+
<version>2.36.0</version>
274274
</dependency>
275275
</dependencies>
276276
</dependencyManagement>

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -94,32 +94,32 @@
9494
<!-- Spring dependencies -->
9595
<!-- Keep these versions consistent with the ones from the SAP Java Buildpack (after their 2.0 release) -->
9696
<!-- see https://github.wdf.sap.corp/xs2-java/xs-java-buildpack/blob/master/resources/pom.xml -->
97-
<spring.version>6.1.14</spring.version>
97+
<spring.version>6.2.0</spring.version>
9898
<spring-security.version>6.1.5</spring-security.version>
9999
<slf4j.version>2.0.16</slf4j.version>
100100
<assertj-core.version>3.26.3</assertj-core.version>
101101
<assertj-vavr.version>0.4.3</assertj-vavr.version>
102102
<mockito.version>5.14.2</mockito.version>
103103
<jsonassert.version>1.5.3</jsonassert.version>
104-
<junit.jupiter.version>5.11.2</junit.jupiter.version>
104+
<junit.jupiter.version>5.11.3</junit.jupiter.version>
105105
<codemodel.version>2.6</codemodel.version>
106106
<olingo-v4.version>5.0.0</olingo-v4.version>
107107
<olingo-v2.version>2.0.13</olingo-v2.version>
108108
<maven-plugin.version>3.9.9</maven-plugin.version>
109-
<maven-plugin-annotations.version>3.15.0</maven-plugin-annotations.version>
109+
<maven-plugin-annotations.version>3.15.1</maven-plugin-annotations.version>
110110
<maven-plugin-testing.version>3.3.0</maven-plugin-testing.version>
111111
<caffeine.version>3.1.8</caffeine.version>
112-
<openapi-generator.version>7.8.0</openapi-generator.version>
113-
<io-swagger-core-v3.version>2.2.25</io-swagger-core-v3.version>
114-
<io-swagger-parser-v3.version>2.1.22</io-swagger-parser-v3.version>
112+
<openapi-generator.version>7.10.0</openapi-generator.version>
113+
<io-swagger-core-v3.version>2.2.26</io-swagger-core-v3.version>
114+
<io-swagger-parser-v3.version>2.1.24</io-swagger-parser-v3.version>
115115
<io-swagger-core.version>1.6.11</io-swagger-core.version>
116116
<!-- sync plexus version with transitive dependency coming from "org.twadata.maven:mojo-executor" -->
117117
<stax2-api.version>4.2.2</stax2-api.version>
118-
<bouncycastle.version>1.78.1</bouncycastle.version>
118+
<bouncycastle.version>1.79</bouncycastle.version>
119119
<jakarta-activation.version>2.1.0</jakarta-activation.version>
120-
<qdox.version>2.1.0</qdox.version>
121-
<wiremock.version>3.9.1</wiremock.version>
122-
<checkstyle.version>10.18.2</checkstyle.version>
120+
<qdox.version>2.2.0</qdox.version>
121+
<wiremock.version>3.10.0</wiremock.version>
122+
<checkstyle.version>10.20.2</checkstyle.version>
123123
<byte-buddy.version>1.15.10</byte-buddy.version>
124124
<snakeyaml.version>2.3</snakeyaml.version>
125125
<commons-codec.version>1.17.1</commons-codec.version>
@@ -957,7 +957,7 @@
957957
<dependency>
958958
<groupId>org.projectlombok</groupId>
959959
<artifactId>lombok</artifactId>
960-
<version>1.18.34</version>
960+
<version>1.18.36</version>
961961
</dependency>
962962
</dependencies>
963963
<configuration>

0 commit comments

Comments
 (0)