File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed
Expand file tree Collapse file tree 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+
17### 0.6.3
28
39* 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
88
99Leiningen:
1010``` clojure
11- [aleph " 0.6.3 " ]
11+ [aleph " 0.7.0-alpha1 " ]
1212```
1313deps.edn:
1414``` clojure
15- aleph/aleph {:mvn/version " 0.6.3 " }
15+ aleph/aleph {:mvn/version " 0.7.0-alpha1 " }
1616; ; alternatively
1717io.github.clj-commons/aleph {:git/sha " ..." }
1818```
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 " ]
33 [gloss " 0.2.6" ]
44 [metosin/reitit " 0.5.18" ]
55 [org.clojure/clojure " 1.11.1" ]
Original file line number Diff line number Diff line change 11; ; you'll need to run the script at `deps/lein-to-deps` after changing any dependencies
22(def netty-version " 4.1.94.Final" )
33
4- (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.6.3 " )
4+ (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.7.0-alpha1 " )
55 :description " A framework for asynchronous communication"
66 :url " https://github.com/clj-commons/aleph"
77 :license {:name " MIT License" }
Original file line number Diff line number Diff line change 9999 (map #(HttpHeaders/newEntity %) [" Server" " Connection" " Date" " Content-Type" ])
100100
101101 [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" ])]
103103 (defn send-response
104104 [^ChannelHandlerContext ctx keep-alive? ssl? error-handler rsp]
105105 (let [[^HttpResponse rsp body]
You can’t perform that action at this time.
0 commit comments