From f13e4fced18b01ab260adf0f56b34ba95b13c144 Mon Sep 17 00:00:00 2001 From: Hakky54 Date: Wed, 19 Jul 2023 10:52:08 +0200 Subject: [PATCH] Updated docs --- CHANGELOG.md | 7 +++++++ README.md | 20 ++++++++++---------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec7ffe29..8d116136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ This list is not intended to be all-encompassing - it will document major and breaking API changes with their rationale when appropriate: +### v8.1.3 +- Added default hostname verifier in HostnameVerifierUtils +- Marked a method in HostnameVerifierUtils as deprecated +- Align behaviour of SSLContext, SSLEngine, SSLSocketFactory and SSLServerSocketFactory with custom SSLContext +- Added Enhanceable HostnameVerifier +- Improve duplicate checker for InflatableTrustManager + ### v8.1.2 - Add support for new Windows KeyStore types diff --git a/README.md b/README.md index 9b755faf..0423e407 100644 --- a/README.md +++ b/README.md @@ -23,25 +23,25 @@ Hey, hello there 👋 Welcome, I hope you will like this library ❤️ Feel fre io.github.hakky54 sslcontext-kickstart - 8.1.2 + 8.1.3 ``` ### Install with Gradle ```groovy -implementation 'io.github.hakky54:sslcontext-kickstart:8.1.2' +implementation 'io.github.hakky54:sslcontext-kickstart:8.1.3' ``` ### Install with Gradle Kotlin DSL ```kotlin -implementation("io.github.hakky54:sslcontext-kickstart:8.1.2") +implementation("io.github.hakky54:sslcontext-kickstart:8.1.3") ``` ### Install with Scala SBT ``` -libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "8.1.2" +libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "8.1.3" ``` ### Install with Apache Ivy ```xml - + ``` ## Table of contents @@ -712,7 +712,7 @@ Add the dependency below to use this feature, it also includes the core features io.github.hakky54 sslcontext-kickstart-for-pem - 8.1.2 + 8.1.3 ``` ##### Loading pem files from the classpath @@ -1067,7 +1067,7 @@ Some know http clients which relay on netty libraries are: [Spring WebFlux WebCl io.github.hakky54 sslcontext-kickstart-for-netty - 8.1.2 + 8.1.3 ``` Example setup for Spring WebClient with Netty: @@ -1105,7 +1105,7 @@ public class App { io.github.hakky54 sslcontext-kickstart-for-jetty - 8.1.2 + 8.1.3 ``` Example setup for [Spring WebFlux WebClient Jetty](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html): @@ -1143,7 +1143,7 @@ However it is still possible to configure the http client with their custom conf io.github.hakky54 sslcontext-kickstart-for-apache4 - 8.1.2 + 8.1.3 ``` ```java @@ -1174,7 +1174,7 @@ public class App { io.github.hakky54 sslcontext-kickstart-for-apache5 - 8.1.2 + 8.1.3 ``` ```java