Upgrade to Spring Framework 5.3.0-SNAPSHOT
This commit also switches to RSocket SNAPSHOTs and updates the repository configuration to rely on "libs-snapshot", since the RSocket SNAPSHOTs are mirrored there. See gh-22640
This commit is contained in:
@@ -87,7 +87,7 @@ class RSocketWebSocketNettyRouteProviderTests {
|
||||
int port = server.getPort();
|
||||
RSocketRequester.Builder builder = context.getBean(RSocketRequester.Builder.class);
|
||||
return builder.dataMimeType(MediaType.APPLICATION_CBOR)
|
||||
.connectWebSocket(URI.create("ws://localhost:" + port + "/rsocket")).block();
|
||||
.websocket(URI.create("ws://localhost:" + port + "/rsocket"));
|
||||
}
|
||||
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
|
||||
@@ -1350,7 +1350,7 @@ bom {
|
||||
]
|
||||
}
|
||||
}
|
||||
library("RSocket", "1.0.1") {
|
||||
library("RSocket", "1.1.0-SNAPSHOT") {
|
||||
group("io.rsocket") {
|
||||
imports = [
|
||||
"rsocket-bom"
|
||||
@@ -1570,7 +1570,7 @@ bom {
|
||||
]
|
||||
}
|
||||
}
|
||||
library("Spring Framework", "5.3.0-M1") {
|
||||
library("Spring Framework", "5.3.0-SNAPSHOT") {
|
||||
group("org.springframework") {
|
||||
imports = [
|
||||
"spring-framework-bom"
|
||||
|
||||
@@ -76,7 +76,7 @@ class NettyRSocketServerFactoryTests {
|
||||
}
|
||||
}
|
||||
if (this.requester != null) {
|
||||
this.requester.rsocket().dispose();
|
||||
this.requester.rsocketClient().dispose();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,13 +166,13 @@ class NettyRSocketServerFactoryTests {
|
||||
private RSocketRequester createRSocketTcpClient() {
|
||||
Assertions.assertThat(this.server).isNotNull();
|
||||
InetSocketAddress address = this.server.address();
|
||||
return createRSocketRequesterBuilder().connectTcp(address.getHostString(), address.getPort()).block();
|
||||
return createRSocketRequesterBuilder().tcp(address.getHostString(), address.getPort());
|
||||
}
|
||||
|
||||
private RSocketRequester createRSocketWebSocketClient() {
|
||||
Assertions.assertThat(this.server).isNotNull();
|
||||
InetSocketAddress address = this.server.address();
|
||||
return createRSocketRequesterBuilder().connect(WebsocketClientTransport.create(address)).block();
|
||||
return createRSocketRequesterBuilder().transport(WebsocketClientTransport.create(address));
|
||||
}
|
||||
|
||||
private RSocketRequester.Builder createRSocketRequesterBuilder() {
|
||||
|
||||
Reference in New Issue
Block a user