File tree 8 files changed +23
-27
lines changed
driver/src/test/java/graal
resources/META-INF/native-image/com.arangodb/arangodb-java-driver-shaded
8 files changed +23
-27
lines changed Original file line number Diff line number Diff line change @@ -186,8 +186,8 @@ jobs:
186
186
fail-fast : false
187
187
matrix :
188
188
jackson-version :
189
- - 2.14.1
190
- - 2.13.3
189
+ - 2.14.2
190
+ - 2.13.5
191
191
- 2.12.7
192
192
- 2.11.4
193
193
- 2.10.5
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ The HTTP client has been changed to [Vert.x WebClient](https://vertx.io/docs/ver
32
32
` HTTP/2 ` is now supported.
33
33
` HTTP/2 ` supports multiplexing and uses ` 1 ` connection per host by default.
34
34
35
+ Cookies are not supported anymore: cookies received in the response will be ignored.
36
+
35
37
36
38
## Configuration changes
37
39
Original file line number Diff line number Diff line change 17
17
import io .vertx .core .impl .VertxInternal ;
18
18
import io .vertx .core .impl .resolver .DefaultResolverProvider ;
19
19
import io .vertx .core .net .NetServerOptions ;
20
- import io .vertx .core .net .impl .transport .Transport ;
21
20
import io .vertx .core .spi .resolver .ResolverProvider ;
21
+ import io .vertx .core .spi .transport .Transport ;
22
22
23
23
import javax .net .ssl .KeyManagerFactory ;
24
24
import javax .net .ssl .SSLException ;
28
28
import java .util .Set ;
29
29
import java .util .concurrent .ConcurrentMap ;
30
30
31
- @ TargetClass (className = "io.vertx.core.net. impl.transport.Transport " )
32
- final class Target_io_vertx_core_net_impl_transport_Transport {
31
+ @ TargetClass (className = "io.vertx.core.impl.VertxBuilder " )
32
+ final class Target_io_vertx_core_impl_VertxBuilder {
33
33
@ Substitute
34
34
public static Transport nativeTransport () {
35
- return Transport . JDK ;
35
+ return null ;
36
36
}
37
37
}
38
38
Original file line number Diff line number Diff line change 35
35
<dependency >
36
36
<groupId >io.vertx</groupId >
37
37
<artifactId >vertx-stack-depchain</artifactId >
38
- <version >4.3.5</version >
39
- <type >pom</type >
40
- <scope >import</scope >
41
- </dependency >
42
- <dependency >
43
- <groupId >io.netty</groupId >
44
- <artifactId >netty-bom</artifactId >
45
- <version >4.1.85.Final</version >
38
+ <version >4.4.0</version >
46
39
<type >pom</type >
47
40
<scope >import</scope >
48
41
</dependency >
Original file line number Diff line number Diff line change 37
37
<maven .deploy.skip>true</maven .deploy.skip>
38
38
<sonar .organization>arangodb-1</sonar .organization>
39
39
<sonar .host.url>https://sonarcloud.io</sonar .host.url>
40
- <adb .jackson.version>2.14.1 </adb .jackson.version>
40
+ <adb .jackson.version>2.14.2 </adb .jackson.version>
41
41
<moduleName />
42
42
<SslTest />
43
43
</properties >
104
104
<dependency >
105
105
<groupId >org.junit</groupId >
106
106
<artifactId >junit-bom</artifactId >
107
- <version >5.9.1 </version >
107
+ <version >5.9.2 </version >
108
108
<type >pom</type >
109
109
<scope >import</scope >
110
110
</dependency >
161
161
<dependency >
162
162
<groupId >org.slf4j</groupId >
163
163
<artifactId >slf4j-api</artifactId >
164
- <version >2.0.6 </version >
164
+ <version >2.0.7 </version >
165
165
</dependency >
166
166
<dependency >
167
167
<groupId >com.google.code.findbugs</groupId >
171
171
<dependency >
172
172
<groupId >org.slf4j</groupId >
173
173
<artifactId >slf4j-simple</artifactId >
174
- <version >2.0.6 </version >
174
+ <version >2.0.7 </version >
175
175
</dependency >
176
176
<dependency >
177
177
<groupId >org.assertj</groupId >
178
178
<artifactId >assertj-core</artifactId >
179
- <version >3.23.1 </version >
179
+ <version >3.24.2 </version >
180
180
</dependency >
181
181
<dependency >
182
182
<groupId >com.tngtech.archunit</groupId >
Original file line number Diff line number Diff line change 15
15
<dependency >
16
16
<groupId >org.mock-server</groupId >
17
17
<artifactId >mockserver-netty</artifactId >
18
- <version >5.13.2 </version >
18
+ <version >5.15.0 </version >
19
19
</dependency >
20
20
<dependency >
21
21
<groupId >com.arangodb</groupId >
42
42
<dependency >
43
43
<groupId >ch.qos.logback</groupId >
44
44
<artifactId >logback-classic</artifactId >
45
- <version >1.3.5 </version >
45
+ <version >1.4.6 </version >
46
46
</dependency >
47
47
</dependencies >
48
48
51
51
<dependency >
52
52
<groupId >io.netty</groupId >
53
53
<artifactId >netty-bom</artifactId >
54
- <version >4.1.85 .Final</version >
54
+ <version >4.1.90 .Final</version >
55
55
<type >pom</type >
56
56
<scope >import</scope >
57
57
</dependency >
Original file line number Diff line number Diff line change 17
17
import io .vertx .core .impl .VertxInternal ;
18
18
import io .vertx .core .impl .resolver .DefaultResolverProvider ;
19
19
import io .vertx .core .net .NetServerOptions ;
20
- import io .vertx .core .net .impl .transport .Transport ;
21
20
import io .vertx .core .spi .resolver .ResolverProvider ;
21
+ import io .vertx .core .spi .transport .Transport ;
22
22
23
23
import javax .net .ssl .KeyManagerFactory ;
24
24
import javax .net .ssl .SSLException ;
28
28
import java .util .Set ;
29
29
import java .util .concurrent .ConcurrentMap ;
30
30
31
- @ TargetClass (className = "io.vertx.core.net. impl.transport.Transport " )
32
- final class Target_com_arangodb_shaded_vertx_core_net_impl_transport_Transport {
31
+ @ TargetClass (className = "io.vertx.core.impl.VertxBuilder " )
32
+ final class Target_com_arangodb_shaded_vertx_core_impl_VertxBuilder {
33
33
@ Substitute
34
34
public static Transport nativeTransport () {
35
- return Transport . JDK ;
35
+ return null ;
36
36
}
37
37
}
38
38
Original file line number Diff line number Diff line change 36
36
com.arangodb.shaded.netty.util.internal.ThreadLocalRandom,\
37
37
com.arangodb.shaded.netty.util.NetUtilSubstitutions$NetUtilLocalhost4LazyHolder,\
38
38
com.arangodb.shaded.netty.util.NetUtilSubstitutions$NetUtilLocalhost6LazyHolder,\
39
- com.arangodb.shaded.netty.util.NetUtilSubstitutions$NetUtilLocalhostLazyHolder
39
+ com.arangodb.shaded.netty.util.NetUtilSubstitutions$NetUtilLocalhostLazyHolder,\
40
+ com.arangodb.shaded.netty.util.NetUtilSubstitutions$NetUtilNetworkInterfacesLazyHolder
You can’t perform that action at this time.
0 commit comments