Skip to content

Commit 52da251

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/maven/main/production-major-7bb4f4bca1
2 parents 87f7b67 + d67c4e1 commit 52da251

2 files changed

Lines changed: 68 additions & 1 deletion

File tree

cloudplatform/connectivity-ztis/pom.xml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
<organizationUrl>https://www.sap.com</organizationUrl>
2929
</developer>
3030
</developers>
31+
<properties>
32+
<netty.version>4.1.132.Final</netty.version>
33+
</properties>
3134
<dependencyManagement>
3235
<dependencies>
3336
<!-- resolve inconsistent versions coming from spiffe -> io.grpc -->
@@ -38,6 +41,15 @@
3841
<type>pom</type>
3942
<scope>import</scope>
4043
</dependency>
44+
<!-- Enforce minor netty dependency upgrade for grpc-netty -->
45+
<!-- Remove when CVE-2026-33870 and CVE-2026-33871 are no longer affected. -->
46+
<dependency>
47+
<groupId>io.netty</groupId>
48+
<artifactId>netty-bom</artifactId>
49+
<version>${netty.version}</version>
50+
<type>pom</type>
51+
<scope>import</scope>
52+
</dependency>
4153
</dependencies>
4254
</dependencyManagement>
4355
<dependencies>
@@ -107,6 +119,61 @@
107119
<groupId>org.slf4j</groupId>
108120
<artifactId>slf4j-api</artifactId>
109121
</dependency>
122+
<dependency>
123+
<groupId>io.netty</groupId>
124+
<artifactId>netty-handler</artifactId>
125+
<scope>runtime</scope>
126+
</dependency>
127+
<dependency>
128+
<groupId>io.netty</groupId>
129+
<artifactId>netty-handler-proxy</artifactId>
130+
<scope>runtime</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>io.netty</groupId>
134+
<artifactId>netty-codec</artifactId>
135+
<scope>runtime</scope>
136+
</dependency>
137+
<dependency>
138+
<groupId>io.netty</groupId>
139+
<artifactId>netty-common</artifactId>
140+
<scope>runtime</scope>
141+
</dependency>
142+
<dependency>
143+
<groupId>io.netty</groupId>
144+
<artifactId>netty-transport</artifactId>
145+
<scope>runtime</scope>
146+
</dependency>
147+
<dependency>
148+
<groupId>io.netty</groupId>
149+
<artifactId>netty-codec-http</artifactId>
150+
<scope>runtime</scope>
151+
</dependency>
152+
<dependency>
153+
<groupId>io.netty</groupId>
154+
<artifactId>netty-codec-socks</artifactId>
155+
<scope>runtime</scope>
156+
</dependency>
157+
<dependency>
158+
<groupId>io.netty</groupId>
159+
<artifactId>netty-buffer</artifactId>
160+
<scope>runtime</scope>
161+
</dependency>
162+
<dependency>
163+
<groupId>io.netty</groupId>
164+
<artifactId>netty-resolver</artifactId>
165+
<scope>runtime</scope>
166+
</dependency>
167+
<dependency>
168+
<groupId>io.netty</groupId>
169+
<artifactId>netty-codec-http2</artifactId>
170+
<scope>runtime</scope>
171+
</dependency>
172+
<dependency>
173+
<groupId>io.netty</groupId>
174+
<artifactId>netty-transport-native-unix-common</artifactId>
175+
<scope>runtime</scope>
176+
</dependency>
110177
<dependency>
111178
<groupId>commons-beanutils</groupId>
112179
<artifactId>commons-beanutils</artifactId>

dependency-bundles/bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<findbugs-jsr305.version>3.0.2</findbugs-jsr305.version>
6464
<!-- @Nonnull/@Nullable annotations -->
6565
<vavr.version>1.0.1</vavr.version>
66-
<guava.version>33.5.0-jre</guava.version>
66+
<guava.version>33.6.0-jre</guava.version>
6767
<!-- collection utilities, @Beta annotation -->
6868
<commons-io.version>2.21.0</commons-io.version>
6969
<!-- Apache file utils for SOAP (deprecated, we do not maintain!) -->

0 commit comments

Comments
 (0)