Skip to content

Commit

Permalink
Merge pull request #261 from FundingCircle/bump-netty-to-fix-cve
Browse files Browse the repository at this point in the history
Override Netty version to fix CVE-2020-11612
  • Loading branch information
Gilles Philippart authored Mar 1, 2021
2 parents e7f41ab + 0c9d0a2 commit 03707b9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## Unreleased

* Override the netty version pulled by Aleph with one which fixes https://nvd.nist.gov/vuln/detail/CVE-2020-11612

## [0.7.7] - [2021-02-09]

Expand Down
17 changes: 15 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,34 @@
[clj-time "0.15.1"]
[danlentz/clj-uuid "0.1.9"
:exclusions [primitive-math]]

;; Confluent does paired releases with Kafka, this should tie
;; off with the kafka version.
;; See https://docs.confluent.io/current/release-notes.html

[io.confluent/kafka-schema-registry-client "5.3.1"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[io.confluent/kafka-avro-serializer "5.3.1"]
[org.apache.kafka/kafka-clients "2.3.1"]
[org.apache.kafka/kafka-streams "2.3.1"]
[org.apache.kafka/kafka-streams-test-utils "2.3.1"]

[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.fressian "0.2.1"]
[org.clojure/tools.logging "0.4.1"]
[org.clojure/core.cache "0.7.2"]]
[org.clojure/core.cache "0.7.2"]

;; Pull specific netty version to avoid critical CVE
;; pulled by Aleph v0.4.6 (last stable version)
[io.netty/netty-transport "4.1.59.Final"]
[io.netty/netty-transport-native-epoll "4.1.59.Final"]
[io.netty/netty-codec "4.1.59.Final"]
[io.netty/netty-codec-http "4.1.59.Final"]
[io.netty/netty-handler "4.1.59.Final"]
[io.netty/netty-handler-proxy "4.1.59.Final"]
[io.netty/netty-resolver "4.1.59.Final"]
[io.netty/netty-resolver-dns "4.1.59.Final"]
]

:aliases {"kaocha" ["run" "-m" "kaocha.runner"]}
:aot [jackdaw.serdes.edn2 jackdaw.serdes.fressian jackdaw.serdes.fn-impl]
Expand Down

0 comments on commit 03707b9

Please sign in to comment.