Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakky54 committed Jul 19, 2023
1 parent 4d2ec2a commit f13e4fc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ Hey, hello there 👋 Welcome, I hope you will like this library ❤️ Feel fre
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
### 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

<dependency org="io.github.hakky54" name="sslcontext-kickstart" rev="8.1.2"/>
<dependency org="io.github.hakky54" name="sslcontext-kickstart" rev="8.1.3"/>
```

## Table of contents
Expand Down Expand Up @@ -712,7 +712,7 @@ Add the dependency below to use this feature, it also includes the core features
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-pem</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
##### Loading pem files from the classpath
Expand Down Expand Up @@ -1067,7 +1067,7 @@ Some know http clients which relay on netty libraries are: [Spring WebFlux WebCl
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-netty</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
Example setup for Spring WebClient with Netty:
Expand Down Expand Up @@ -1105,7 +1105,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-jetty</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
Example setup for [Spring WebFlux WebClient Jetty](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html):
Expand Down Expand Up @@ -1143,7 +1143,7 @@ However it is still possible to configure the http client with their custom conf
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-apache4</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
```java
Expand Down Expand Up @@ -1174,7 +1174,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
<version>8.1.2</version>
<version>8.1.3</version>
</dependency>
```
```java
Expand Down

0 comments on commit f13e4fc

Please sign in to comment.