Skip to content

Commit 998a32a

Browse files
committed
Release 0.8.3
1 parent 26d628d commit 998a32a

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### 0.8.3
2+
3+
* Bump Netty to 4.1.118.Final (CVE-2025-24970 and bug-fixes)
4+
* Passing the `:compression-level` option to `aleph.http/start-server` will now also enable Brotli and Zstd when available (even though that option doesn't affect them); via https://github.com/netty/netty/pull/14466
5+
* Fix HTTP client's proxy support which was broken since 0.7.0 (#731, #742)
6+
7+
Contributions by (in alphabetical order):
8+
9+
Arnaud Geiser, David Ongaro, Matthew Davidson, and Moritz Heidkamp.
10+
111
### 0.8.2
212

313
* Bump Netty to 4.1.115.Final (CVE-2024-47535 and bug-fixes)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Aleph exposes data from the network as a [Manifold](https://github.com/clj-commo
88

99
Leiningen:
1010
```clojure
11-
[aleph "0.8.2"]
11+
[aleph "0.8.3"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.8.2"}
15+
aleph/aleph {:mvn/version "0.8.3"}
1616
;; alternatively
1717
io.github.clj-commons/aleph {:git/sha "..."}
1818
```

examples/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
(defproject aleph.examples "0.8.2"
2-
:dependencies [[aleph "0.8.2"]
1+
(defproject aleph.examples "0.8.3"
2+
:dependencies [[aleph "0.8.3"]
33
[gloss "0.2.6"]
44
[metosin/reitit "0.5.18"]
55
[org.clojure/clojure "1.11.1"]

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(def brotli-version "1.16.0")
44

55

6-
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.2")
6+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.3")
77
:description "A framework for asynchronous communication"
88
:url "https://github.com/clj-commons/aleph"
99
:license {:name "MIT License"}

src/aleph/http/common.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
(set! *warn-on-reflection* true)
2929

30-
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.8.2"))
30+
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.8.3"))
3131

3232
(defprotocol HeaderMap
3333
(get-header-values [m ^String k]))

0 commit comments

Comments
 (0)