|
28 | 28 | <organizationUrl>https://www.sap.com</organizationUrl> |
29 | 29 | </developer> |
30 | 30 | </developers> |
| 31 | + <properties> |
| 32 | + <netty.version>4.1.132.Final</netty.version> |
| 33 | + </properties> |
31 | 34 | <dependencyManagement> |
32 | 35 | <dependencies> |
33 | 36 | <!-- resolve inconsistent versions coming from spiffe -> io.grpc --> |
|
38 | 41 | <type>pom</type> |
39 | 42 | <scope>import</scope> |
40 | 43 | </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> |
41 | 53 | </dependencies> |
42 | 54 | </dependencyManagement> |
43 | 55 | <dependencies> |
|
107 | 119 | <groupId>org.slf4j</groupId> |
108 | 120 | <artifactId>slf4j-api</artifactId> |
109 | 121 | </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> |
110 | 177 | <dependency> |
111 | 178 | <groupId>commons-beanutils</groupId> |
112 | 179 | <artifactId>commons-beanutils</artifactId> |
|
0 commit comments