Skip to content

Commit

Permalink
Merge pull request #200 from jakepearson/master
Browse files Browse the repository at this point in the history
Update jackson to remediate CVE-2022-42003
  • Loading branch information
dakrone authored Sep 19, 2023
2 parents 65c3750 + a206de1 commit 0cf6fad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ doc*
.idea
*.iml
.DS_Store
.clj-kondo
.lsp
10 changes: 5 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
:url "http://opensource.org/licenses/MIT"
:distribution :repo}
:global-vars {*warn-on-reflection* false}
:dependencies [[com.fasterxml.jackson.core/jackson-core "2.13.3"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.13.3"
:dependencies [[com.fasterxml.jackson.core/jackson-core "2.15.2"]
[com.fasterxml.jackson.dataformat/jackson-dataformat-smile "2.15.2"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.13.3"
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.15.2"
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
[tigris "0.1.2"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
Expand All @@ -26,15 +26,15 @@
:aliases {"all" ["with-profile" "dev,1.7:dev,1.8:dev,1.9:dev,1.10:dev"]
"benchmark" ["with-profile" "dev,benchmark" "test"]
"pretty-bench" ["with-profile" "dev,benchmark" "test" ":only"
"cheshire.test.benchmark/t-bench-pretty"]
"cheshire.test.benchmark/t-bench-pretty"]
"core-bench" ["with-profile" "dev,benchmark" "test" ":only"
"cheshire.test.benchmark/t-bench-core"]}
:test-selectors {:default #(and (not (:benchmark %))
(not (:generative %)))
:generative :generative
:all (constantly true)}
:plugins [[codox "0.6.3"]
[lein-ancient "0.6.15"]]
[lein-ancient "1.0.0-RC3"]]
:java-source-paths ["src/java"]
:jvm-opts ["-Xmx512M"
;; "-XX:+PrintCompilation"
Expand Down

0 comments on commit 0cf6fad

Please sign in to comment.