From 7b8fd8fc34d651bdd1fedaff82cbdecb6ba6e513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=81nis=20Peisenieks?= Date: Fri, 9 Oct 2020 15:47:59 +0300 Subject: [PATCH] Update clojurescript and netty-buffer dependencies The existing dependencies were outdated, and contained the following security issues: guava-22.0.jar CVE-2018-10237 netty-common-4.1.30.Final.jar CVE-2020-11612, CVE-2019-20444, CVE-2019-20445, CVE-2019-16869 protobuf-java-3.0.2.jar CVE-2015-5237 --- project.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 9f6f6e5..9059403 100644 --- a/project.clj +++ b/project.clj @@ -4,8 +4,8 @@ :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[org.clojure/clojure "1.9.0" :scope "provided"] - [org.clojure/clojurescript "1.10.339" :scope "provided"] - [io.netty/netty-buffer "4.1.30.Final"]] + [org.clojure/clojurescript "1.10.773" :scope "provided"] + [io.netty/netty-buffer "4.1.52.Final"]] :source-paths ["src"] :test-paths ["test"]