File tree 6 files changed +15
-6
lines changed
6 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ target/**
16
16
** /.lsp
17
17
/.eastwood
18
18
* .pem
19
+ .cpcache
Original file line number Diff line number Diff line change
1
+ ### 0.8.2
2
+
3
+ * Bump Netty to 4.1.115.Final (CVE-2024 -47535 and bug-fixes)
4
+
5
+ Contributions by (in alphabetical order):
6
+
7
+ David Ongaro
8
+
1
9
### 0.8.1
2
10
3
11
* Bump Netty to 4.1.111.Final (only bug-fixes)
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.8.1 " ]
11
+ [aleph " 0.8.2 " ]
12
12
```
13
13
deps.edn:
14
14
``` clojure
15
- aleph/aleph {:mvn/version " 0.8.1 " }
15
+ aleph/aleph {:mvn/version " 0.8.2 " }
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.8.1 "
2
- :dependencies [[aleph " 0.8.1 " ]
1
+ (defproject aleph.examples " 0.8.2 "
2
+ :dependencies [[aleph " 0.8.2 " ]
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 3
3
(def brotli-version " 1.16.0" )
4
4
5
5
6
- (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.8.1 " )
6
+ (defproject aleph (or (System/getenv " PROJECT_VERSION" ) " 0.8.2 " )
7
7
:description " A framework for asynchronous communication"
8
8
:url " https://github.com/clj-commons/aleph"
9
9
:license {:name " MIT License" }
Original file line number Diff line number Diff line change 27
27
28
28
(set! *warn-on-reflection* true )
29
29
30
- (def aleph-server-header " Aleph value for the Server header" (AsciiString. " Aleph/0.8.1 " ))
30
+ (def aleph-server-header " Aleph value for the Server header" (AsciiString. " Aleph/0.8.2 " ))
31
31
32
32
(defprotocol HeaderMap
33
33
(get-header-values [m ^String k]))
You can’t perform that action at this time.
0 commit comments