Skip to content

Commit c72da09

Browse files
hessjcgrenovate-botttosta-google
authored
deps: Update dependencies related to netty and r2dbc (#1430)
* deps: Update netty monorepo to v4.1.96.Final * deps: Update native-image.version to v0.9.24 * deps: Update dependency io.projectreactor:reactor-core to v3.5.9 * deps: Update dependency io.projectreactor.netty:reactor-netty to v1.1.10 * deps: Update dependency org.postgresql:r2dbc-postgresql to v1.0.2.RELEASE * deps: Update dependency io.r2dbc:r2dbc-pool to v1.0.1.RELEASE * deps: Update dependency io.r2dbc:r2dbc-mssql to v1.0.2.RELEASE * wip: Attempt to use junit5 to avoid graalvm class pruning error. * chore: remove unused dependency --------- Co-authored-by: Mend Renovate <[email protected]> Co-authored-by: Tatiane Tosta <[email protected]> Co-authored-by: Tatiane Tosta <[email protected]>
1 parent 8a5ed93 commit c72da09

File tree

5 files changed

+43
-37
lines changed

5 files changed

+43
-37
lines changed

jdbc/mysql-j-8/pom.xml

+16-10
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
limitations under the License.
1616
-->
1717

18-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
19-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xmlns="http://maven.apache.org/POM/4.0.0"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2021
<modelVersion>4.0.0</modelVersion>
2122

2223
<parent>
@@ -32,8 +33,10 @@
3233

3334
<name>Cloud SQL MySQL Socket Factory (for Connector/J 8.x)</name>
3435
<description>
35-
Socket factory for the MySQL JDBC driver (version 8.x) that allows a user with the appropriate
36-
permissions to connect to a Cloud SQL database without having to deal with IP allowlisting or
36+
Socket factory for the MySQL JDBC driver (version 8.x) that allows a user
37+
with the appropriate
38+
permissions to connect to a Cloud SQL database without having to deal with
39+
IP allowlisting or
3740
SSL certificates manually.
3841
</description>
3942

@@ -118,6 +121,14 @@
118121
<artifactId>commons-codec</artifactId>
119122
<version>1.16.0</version>
120123
</dependency>
124+
<dependency>
125+
<groupId>org.junit</groupId>
126+
<artifactId>junit-bom</artifactId>
127+
<version>5.10.0</version>
128+
<type>pom</type>
129+
<scope>import</scope>
130+
</dependency>
131+
121132
</dependencies>
122133
</dependencyManagement>
123134

@@ -137,12 +148,7 @@
137148
<groupId>com.google.guava</groupId>
138149
<artifactId>guava</artifactId>
139150
</dependency>
140-
<dependency>
141-
<groupId>junit</groupId>
142-
<artifactId>junit</artifactId>
143-
<version>4.13.2</version>
144-
<scope>test</scope>
145-
</dependency>
151+
146152
<dependency>
147153
<groupId>com.google.truth</groupId>
148154
<artifactId>truth</artifactId>

r2dbc/core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<dependency>
137137
<groupId>io.netty</groupId>
138138
<artifactId>netty-handler</artifactId>
139-
<version>4.1.94.Final</version>
139+
<version>4.1.96.Final</version>
140140
</dependency>
141141
<dependency>
142142
<groupId>junit</groupId>

r2dbc/mysql/pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -49,42 +49,42 @@
4949
<dependency>
5050
<groupId>io.projectreactor.netty</groupId>
5151
<artifactId>reactor-netty</artifactId>
52-
<version>1.1.1</version>
52+
<version>1.1.10</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>io.netty</groupId>
5656
<artifactId>netty-handler</artifactId>
57-
<version>4.1.94.Final</version>
57+
<version>4.1.96.Final</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>io.netty</groupId>
6161
<artifactId>netty-common</artifactId>
62-
<version>4.1.84.Final</version>
62+
<version>4.1.96.Final</version>
6363
</dependency>
6464
<dependency>
6565
<groupId>io.netty</groupId>
6666
<artifactId>netty-transport</artifactId>
67-
<version>4.1.84.Final</version>
67+
<version>4.1.96.Final</version>
6868
</dependency>
6969
<dependency>
7070
<groupId>io.netty</groupId>
7171
<artifactId>netty-transport-native-unix-common</artifactId>
72-
<version>4.1.84.Final</version>
72+
<version>4.1.96.Final</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>io.netty</groupId>
7676
<artifactId>netty-buffer</artifactId>
77-
<version>4.1.84.Final</version>
77+
<version>4.1.96.Final</version>
7878
</dependency>
7979
<dependency>
8080
<groupId>io.netty</groupId>
8181
<artifactId>netty-codec</artifactId>
82-
<version>4.1.84.Final</version>
82+
<version>4.1.96.Final</version>
8383
</dependency>
8484
<dependency>
8585
<groupId>io.netty</groupId>
8686
<artifactId>netty-resolver</artifactId>
87-
<version>4.1.84.Final</version>
87+
<version>4.1.96.Final</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>commons-codec</groupId>

r2dbc/postgres/pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -55,42 +55,42 @@
5555
<dependency>
5656
<groupId>io.projectreactor.netty</groupId>
5757
<artifactId>reactor-netty</artifactId>
58-
<version>1.1.1</version>
58+
<version>1.1.10</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>io.netty</groupId>
6262
<artifactId>netty-handler</artifactId>
63-
<version>4.1.94.Final</version>
63+
<version>4.1.96.Final</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>io.netty</groupId>
6767
<artifactId>netty-common</artifactId>
68-
<version>4.1.84.Final</version>
68+
<version>4.1.96.Final</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>io.netty</groupId>
7272
<artifactId>netty-transport</artifactId>
73-
<version>4.1.84.Final</version>
73+
<version>4.1.96.Final</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>io.netty</groupId>
7777
<artifactId>netty-transport-native-unix-common</artifactId>
78-
<version>4.1.84.Final</version>
78+
<version>4.1.96.Final</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>io.netty</groupId>
8282
<artifactId>netty-buffer</artifactId>
83-
<version>4.1.84.Final</version>
83+
<version>4.1.96.Final</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>io.netty</groupId>
8787
<artifactId>netty-codec</artifactId>
88-
<version>4.1.84.Final</version>
88+
<version>4.1.96.Final</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>io.netty</groupId>
9292
<artifactId>netty-resolver</artifactId>
93-
<version>4.1.84.Final</version>
93+
<version>4.1.96.Final</version>
9494
</dependency>
9595
<dependency>
9696
<groupId>commons-codec</groupId>

r2dbc/sqlserver/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -50,42 +50,42 @@
5050
<dependency>
5151
<groupId>io.projectreactor.netty</groupId>
5252
<artifactId>reactor-netty</artifactId>
53-
<version>1.1.1</version>
53+
<version>1.1.10</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>io.netty</groupId>
5757
<artifactId>netty-handler</artifactId>
58-
<version>4.1.94.Final</version>
58+
<version>4.1.96.Final</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>io.netty</groupId>
6262
<artifactId>netty-common</artifactId>
63-
<version>4.1.84.Final</version>
63+
<version>4.1.96.Final</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>io.netty</groupId>
6767
<artifactId>netty-transport</artifactId>
68-
<version>4.1.84.Final</version>
68+
<version>4.1.96.Final</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>io.netty</groupId>
7272
<artifactId>netty-transport-native-unix-common</artifactId>
73-
<version>4.1.84.Final</version>
73+
<version>4.1.96.Final</version>
7474
</dependency>
7575
<dependency>
7676
<groupId>io.netty</groupId>
7777
<artifactId>netty-buffer</artifactId>
78-
<version>4.1.84.Final</version>
78+
<version>4.1.96.Final</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>io.netty</groupId>
8282
<artifactId>netty-codec</artifactId>
83-
<version>4.1.84.Final</version>
83+
<version>4.1.96.Final</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>io.netty</groupId>
8787
<artifactId>netty-resolver</artifactId>
88-
<version>4.1.84.Final</version>
88+
<version>4.1.96.Final</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>commons-codec</groupId>
@@ -189,7 +189,7 @@
189189
<dependency>
190190
<groupId>io.r2dbc</groupId>
191191
<artifactId>r2dbc-mssql</artifactId>
192-
<version>1.0.0.RELEASE</version>
192+
<version>1.0.2.RELEASE</version>
193193
<scope>provided</scope>
194194
<exclusions>
195195
<exclusion>
@@ -260,7 +260,7 @@
260260
<dependency>
261261
<groupId>io.r2dbc</groupId>
262262
<artifactId>r2dbc-mssql</artifactId>
263-
<version>1.0.0.RELEASE</version>
263+
<version>1.0.2.RELEASE</version>
264264
</dependency>
265265
</dependencies>
266266
</profile>

0 commit comments

Comments
 (0)