update to netty 4.1.89, provide a default socket config in HttpAddress

This commit is contained in:
Jörg Prante 2023-03-09 11:02:30 +01:00
parent ab4c22d4c2
commit 9fb8da8a55
3 changed files with 5 additions and 4 deletions

View file

@ -1,5 +1,5 @@
group = org.xbib
name = net-http
version = 3.0.4
version = 3.0.5
org.gradle.warning.mode = ALL

View file

@ -188,6 +188,7 @@ public class HttpAddress implements Address {
this.port = -1;
this.isSecure = false;
this.version = HttpVersion.HTTP_1_1;
this.socketConfig = new SocketConfig();
}
public Builder setHost(String host) {

View file

@ -4,9 +4,9 @@ dependencyResolutionManagement {
version('gradle', '7.5.1')
version('junit', '5.9.2')
version('groovy', '4.0.7')
version('netty', '4.1.87.Final')
version('netty-tcnative', '2.0.56.Final')
version('datastructures', '1.0.1')
version('netty', '4.1.89.Final')
version('netty-tcnative', '2.0.59.Final')
version('datastructures', '2.0.0')
version('config', '5.0.2')
version('net', '3.0.3')
library('junit-jupiter-api', 'org.junit.jupiter', 'junit-jupiter-api').versionRef('junit')