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
AsyncHTTPClient now requires at least Swift 5.5.2. The async/await APIs are therefore available in all supported Swift compiler versions.
Swift Concurrency and HTTP/2 are now also supported for some time now. No need to call out the specific version in the readme. This information can still be found in the release notes if needed.
Copy file name to clipboardExpand all lines: README.md
+2-8
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,14 @@
2
2
This package provides an HTTP Client library built on top of SwiftNIO.
3
3
4
4
This library provides the following:
5
-
- First class support for Swift Concurrency (since version 1.9.0)
5
+
- First class support for Swift Concurrency
6
6
- Asynchronous and non-blocking request methods
7
7
- Simple follow-redirects (cookie headers are dropped)
8
8
- Streaming body download
9
9
- TLS support
10
-
- Automatic HTTP/2 over HTTPS (since version 1.7.0)
10
+
- Automatic HTTP/2 over HTTPS
11
11
- Cookie parsing (but not storage)
12
12
13
-
---
14
-
15
-
**NOTE**: You will need [Xcode 13.2](https://apps.apple.com/gb/app/xcode/id497799835?mt=12) or [Swift 5.5.2](https://swift.org/download/#swift-552) to try out `AsyncHTTPClient`s new async/await APIs.
0 commit comments