File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1+ ### 0.9.3
2+
3+ * Bump Netty to 4.1.127.Final (follow-up fix for BouncyCastle)
4+ * Fix using ` InputStream ` as ` :trust-store ` in ` :ssl-context ` (#728 , #746 )
5+
6+ Contributions by (in alphabetical order):
7+
8+ Moritz Heidkamp and Paweł Stroiński.
9+
110### 0.9.2
211
312* Bump Netty to 4.1.126.Final (fixes CVE-2025 -58057 and CVE-2025 -58056)
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.9.2 " ]
11+ [aleph " 0.9.3 " ]
1212```
1313deps.edn:
1414``` clojure
15- aleph/aleph {:mvn/version " 0.9.2 " }
15+ aleph/aleph {:mvn/version " 0.9.3 " }
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.9.2 "
2- :dependencies [[aleph " 0.9.2 " ]
1+ (defproject aleph.examples " 0.9.3 "
2+ :dependencies [[aleph " 0.9.3 " ]
33 [gloss " 0.2.6" ]
44 [metosin/reitit " 0.9.1" ]
55 [org.clojure/clojure " 1.12.1" ]
Original file line number Diff line number Diff line change 33(def brotli-version " 1.18.0" )
44
55
6- (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.9.2 " )
6+ (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.9.3 " )
77 :description " A framework for asynchronous communication"
88 :url " https://github.com/clj-commons/aleph"
99 :license {:name " MIT License" }
Original file line number Diff line number Diff line change 2727
2828(set! *warn-on-reflection* true )
2929
30- (def aleph-server-header " Aleph value for the Server header" (AsciiString. " Aleph/0.9.2 " ))
30+ (def aleph-server-header " Aleph value for the Server header" (AsciiString. " Aleph/0.9.3 " ))
3131
3232(defprotocol HeaderMap
3333 (get-header-values [m ^String k]))
You can’t perform that action at this time.
0 commit comments