File tree 5 files changed +12
-6
lines changed
5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ ### 0.7.0-alpha1
2
+
3
+ * Add support for HTTP/2 in the client.
4
+
5
+ Contributions by Matthew Davidson and Arnaud Geiser.
6
+
1
7
### 0.6.3
2
8
3
9
* Bump Netty to 4.1.94.Final for CVE-2023 -34462
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ Aleph exposes data from the network as a [Manifold](https://github.com/clj-commo
8
8
9
9
Leiningen:
10
10
``` clojure
11
- [aleph " 0.6.3 " ]
11
+ [aleph " 0.7.0-alpha1 " ]
12
12
```
13
13
deps.edn:
14
14
``` clojure
15
- aleph/aleph {:mvn/version " 0.6.3 " }
15
+ aleph/aleph {:mvn/version " 0.7.0-alpha1 " }
16
16
; ; alternatively
17
17
io.github.clj-commons/aleph {:git/sha " ..." }
18
18
```
Original file line number Diff line number Diff line change 1
- (defproject aleph.examples " 0.6.3 "
2
- :dependencies [[aleph " 0.6.3 " ]
1
+ (defproject aleph.examples " 0.7.0-alpha1 "
2
+ :dependencies [[aleph " 0.7.0-alpha1 " ]
3
3
[gloss " 0.2.6" ]
4
4
[metosin/reitit " 0.5.18" ]
5
5
[org.clojure/clojure " 1.11.1" ]
Original file line number Diff line number Diff line change 1
1
; ; you'll need to run the script at `deps/lein-to-deps` after changing any dependencies
2
2
(def netty-version " 4.1.94.Final" )
3
3
4
- (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.6.3 " )
4
+ (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.7.0-alpha1 " )
5
5
:description " A framework for asynchronous communication"
6
6
:url " https://github.com/clj-commons/aleph"
7
7
:license {:name " MIT License" }
Original file line number Diff line number Diff line change 99
99
(map #(HttpHeaders/newEntity %) [" Server" " Connection" " Date" " Content-Type" ])
100
100
101
101
[server-value keep-alive-value close-value]
102
- (map #(HttpHeaders/newEntity %) [" Aleph/0.6.3 " " Keep-Alive" " Close" ])]
102
+ (map #(HttpHeaders/newEntity %) [" Aleph/0.7.0-alpha1 " " Keep-Alive" " Close" ])]
103
103
(defn send-response
104
104
[^ChannelHandlerContext ctx keep-alive? ssl? error-handler rsp]
105
105
(let [[^HttpResponse rsp body]
You can’t perform that action at this time.
0 commit comments