You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
## FusionAuth HTTP client and server [](https://github.com/FusionAuth/java-http/actions/workflows/test.yml)
1
+
## Java HTTP client and server [](https://github.com/FusionAuth/java-http/actions/workflows/test.yml)
2
2
3
3
### Latest versions
4
4
5
-
* Latest stable version: `1.3.1`
5
+
* Latest stable version: `1.4.0`
6
6
* Now with 100% more virtual threads!
7
7
* Prior stable version `0.3.7`
8
8
@@ -27,20 +27,20 @@ To add this library to your project, you can include this dependency in your Mav
27
27
<dependency>
28
28
<groupId>io.fusionauth</groupId>
29
29
<artifactId>java-http</artifactId>
30
-
<version>1.3.1</version>
30
+
<version>1.4.0</version>
31
31
</dependency>
32
32
```
33
33
34
34
If you are using Gradle, you can add this to your build file:
35
35
36
36
```groovy
37
-
implementation 'io.fusionauth:java-http:1.3.1'
37
+
implementation 'io.fusionauth:java-http:1.4.0'
38
38
```
39
39
40
40
If you are using Savant, you can add this to your build file:
41
41
42
42
```groovy
43
-
dependency(id: "io.fusionauth:java-http:1.3.1")
43
+
dependency(id: "io.fusionauth:java-http:1.4.0")
44
44
```
45
45
46
46
## Examples Usages:
@@ -231,14 +231,13 @@ The general requirements and roadmap are as follows:
231
231
### Server tasks
232
232
233
233
*[x] Basic HTTP 1.1
234
+
*[x] Support Accept-Encoding (gzip, deflate), by default and per response options.
235
+
*[x] Support Content-Encoding (gzip, deflate)
234
236
*[x] Support Keep-Alive
235
237
*[x] Support Expect-Continue 100
236
-
*[x] Support chunked request
237
-
*[x] Support chunked response
238
-
*[x] Support streaming entity bodies (via chunking likely)
239
-
*[x] Support compression (default and per response options)
238
+
*[x] Support Transfer-Encoding: chunked on request for streaming.
239
+
*[x] Support Transfer-Encoding: chunked on response
0 commit comments