Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakky54 committed Jan 1, 2025
1 parent 7aebc4a commit 17a29f4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
This list is not intended to be all-encompassing - it will document major and breaking API
changes with their rationale when appropriate:

### v9.0.0
- Simplified removing security provider within ProviderUtils
- Renamed internal class CompositeX509ExtendedKeyManager to AggregatedX509ExtendedKeyManager
- Renamed internal class CompositeX509ExtendedTrustManager to AggregatedX509ExtendedTrustManager
- Improved exception message in CombinableX509ExtendedTrustManager
- Removed deprecated methods in HostnameVerifier, TrustManagerUtils and SSLFactory.Builder
- Removed deprecated classes ChainAndAuthTypeValidator, ChainAndAuthTypeWithSocketValidator and ChainAndAuthTypeWithSSLEngineValidator
- Added fluent api mapper in SSLFactory
- Bumped dependencies
### v8.3.7
- Added Apache5SslUtils toTlsSocketStrategy method
- Marked Apache5SslUtils toSocketFactory method as deprecated
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,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.3.7</version>
<version>9.0.0</version>
</dependency>
```
### Install with Gradle
```groovy
implementation 'io.github.hakky54:sslcontext-kickstart:8.3.7'
implementation 'io.github.hakky54:sslcontext-kickstart:9.0.0'
```
### Install with Gradle Kotlin DSL
```kotlin
implementation("io.github.hakky54:sslcontext-kickstart:8.3.7")
implementation("io.github.hakky54:sslcontext-kickstart:9.0.0")
```
### Install with Scala SBT
```
libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "8.3.7"
libraryDependencies += "io.github.hakky54" % "sslcontext-kickstart" % "9.0.0"
```
### Install with Apache Ivy
```xml

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

## Table of contents
Expand Down Expand Up @@ -781,7 +781,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.3.7</version>
<version>9.0.0</version>
</dependency>
```
##### Loading pem files from the classpath
Expand Down Expand Up @@ -1183,7 +1183,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.3.7</version>
<version>9.0.0</version>
</dependency>
```
Example setup for Spring WebClient with Netty:
Expand Down Expand Up @@ -1221,7 +1221,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-jetty</artifactId>
<version>8.3.7</version>
<version>9.0.0</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 @@ -1259,7 +1259,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.3.7</version>
<version>9.0.0</version>
</dependency>
```
```java
Expand Down Expand Up @@ -1290,7 +1290,7 @@ public class App {
<dependency>
<groupId>io.github.hakky54</groupId>
<artifactId>sslcontext-kickstart-for-apache5</artifactId>
<version>8.3.7</version>
<version>9.0.0</version>
</dependency>
```
```java
Expand Down

0 comments on commit 17a29f4

Please sign in to comment.