Skip to content

Commit da14def

Browse files
authored
Merge branch 'master' into feature/http2
2 parents 0d8c9ed + 0c94547 commit da14def

File tree

6 files changed

+26
-7
lines changed

6 files changed

+26
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ jobs:
88
docker:
99
# specify the version you desire here
1010
- image: cimg/clojure:1.11.1-openjdk-8.0
11-
1211
# Specify service dependencies here if necessary
1312
# CircleCI maintains a library of pre-built images
1413
# documented at https://circleci.com/docs/2.0/circleci-images/
@@ -46,3 +45,5 @@ jobs:
4645

4746
# run tests!
4847
- run: lein do clean, test
48+
# The resource_class feature allows configuring CPU and RAM resources for each job. Different resource classes are available for different executors. https://circleci.com/docs/2.0/configuration-reference/#resourceclass
49+
resource_class: large

CHANGES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 0.6.3
2+
3+
* Bump Netty to 4.1.94.Final for CVE-2023-34462
4+
5+
Contributions by Matthew Davidson and Stefan van den Oord.
6+
7+
### 0.6.2
8+
9+
* Fix backwards-compatibility for transport options
10+
* Bump Netty to 4.1.89.Final, and io_uring to 0.0.18.Final
11+
* Add `wrap-validation` middleware to validate Ring maps
12+
* Bump deps and example deps
13+
* Upgrade CircleCI instance size
14+
* Switch to pedantic deps for CircleCI
15+
16+
Contributions by Arnaud Geiser, Ertuğrul Çetin, Jeroen van Dijk, David Ongaro,
17+
Matthew Davidson, and Moritz Heidkamp.
18+
119
### 0.6.1
220

321
* Switch back to JDK 8 in CI

README.md

Lines changed: 2 additions & 2 deletions
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.6.1"]
11+
[aleph "0.6.3"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.6.1"}
15+
aleph/aleph {:mvn/version "0.6.3"}
1616
;; alternatively
1717
io.github.clj-commons/aleph {:git/sha "..."}
1818
```

examples/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
(defproject aleph.examples "0.6.1"
2-
:dependencies [[aleph "0.6.1"]
1+
(defproject aleph.examples "0.6.3"
2+
:dependencies [[aleph "0.6.3"]
33
[gloss "0.2.6"]
44
[metosin/reitit "0.5.18"]
55
[org.clojure/clojure "1.11.1"]

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.1")
4+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.6.3")
55
:description "A framework for asynchronous communication"
66
:url "https://github.com/clj-commons/aleph"
77
:license {:name "MIT License"}

src/aleph/http/server.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
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.1" "Keep-Alive" "Close"])]
102+
(map #(HttpHeaders/newEntity %) ["Aleph/0.6.3" "Keep-Alive" "Close"])]
103103
(defn send-response
104104
[^ChannelHandlerContext ctx keep-alive? ssl? error-handler rsp]
105105
(let [[^HttpResponse rsp body]

0 commit comments

Comments
 (0)