Skip to content

Commit 89fe457

Browse files
committed
Update docs
1 parent c899b80 commit 89fe457

2 files changed

Lines changed: 14 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
This list is not intended to be all-encompassing - it will document major and breaking API
44
changes with their rationale when appropriate:
55

6+
### v10.0.3
7+
- Removed option to disable HostnameVerifier for Java Net Http Client
8+
- Added option to extract sibling certificates when extracting server certificates
9+
- Bumped dependencies
610
### v10.0.2
711
- Added option to disable HostnameVerifier for Java Net Http Client
812
- Added option to override SSLContext.getDefault() with config from SSLFactory

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,24 @@ There are 3 options available to pick from: [GitHub](https://github.com/sponsors
2626
<dependency>
2727
<groupId>io.github.hakky54</groupId>
2828
<artifactId>ayza</artifactId>
29-
<version>10.0.2</version>
29+
<version>10.0.3</version>
3030
</dependency>
3131
```
3232
### Install with Gradle
3333
```groovy
34-
implementation 'io.github.hakky54:ayza:10.0.2'
34+
implementation 'io.github.hakky54:ayza:10.0.3'
3535
```
3636
### Install with Gradle Kotlin DSL
3737
```kotlin
38-
implementation("io.github.hakky54:ayza:10.0.2")
38+
implementation("io.github.hakky54:ayza:10.0.3")
3939
```
4040
### Install with Scala SBT
4141
```
42-
libraryDependencies += "io.github.hakky54" % "ayza" % "10.0.2"
42+
libraryDependencies += "io.github.hakky54" % "ayza" % "10.0.3"
4343
```
4444
### Install with Apache Ivy
4545
```xml
46-
<dependency org="io.github.hakky54" name="ayza" rev="10.0.2"/>
46+
<dependency org="io.github.hakky54" name="ayza" rev="10.0.3"/>
4747
```
4848

4949
## Table of contents
@@ -803,7 +803,7 @@ Add the dependency below to use this feature, it also includes the core features
803803
<dependency>
804804
<groupId>io.github.hakky54</groupId>
805805
<artifactId>ayza-for-pem</artifactId>
806-
<version>10.0.2</version>
806+
<version>10.0.3</version>
807807
</dependency>
808808
```
809809
##### Loading pem files from the classpath
@@ -1204,7 +1204,7 @@ Some know http clients which relay on netty libraries are: [Spring WebFlux WebCl
12041204
<dependency>
12051205
<groupId>io.github.hakky54</groupId>
12061206
<artifactId>ayza-for-netty</artifactId>
1207-
<version>10.0.2</version>
1207+
<version>10.0.3</version>
12081208
</dependency>
12091209
```
12101210
Example setup for Spring WebClient with Netty:
@@ -1242,7 +1242,7 @@ public class App {
12421242
<dependency>
12431243
<groupId>io.github.hakky54</groupId>
12441244
<artifactId>ayza-for-jetty</artifactId>
1245-
<version>10.0.2</version>
1245+
<version>10.0.3</version>
12461246
</dependency>
12471247
```
12481248
Example setup for [Spring WebFlux WebClient Jetty](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html):
@@ -1280,7 +1280,7 @@ However, it is still possible to configure the http client with their custom con
12801280
<dependency>
12811281
<groupId>io.github.hakky54</groupId>
12821282
<artifactId>ayza-for-apache4</artifactId>
1283-
<version>10.0.2</version>
1283+
<version>10.0.3</version>
12841284
</dependency>
12851285
```
12861286
```java
@@ -1311,7 +1311,7 @@ public class App {
13111311
<dependency>
13121312
<groupId>io.github.hakky54</groupId>
13131313
<artifactId>ayza-for-apache5</artifactId>
1314-
<version>10.0.2</version>
1314+
<version>10.0.3</version>
13151315
</dependency>
13161316
```
13171317
```java

0 commit comments

Comments
 (0)