Skip to content

Commit

Permalink
deps bumped
Browse files Browse the repository at this point in the history
  • Loading branch information
Torkus committed Mar 29, 2024
1 parent 4e97b2f commit 80fd44b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 24 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* dependencies bumped to latest versions

### Fixed

* bumps Clojure from 1.10 to 1.11.2 to fix CVE-2024-22871
- https://github.com/advisories/GHSA-vr64-r9qj-h27f

### Removed

## 7.2.0 - 2023-12-24
Expand Down
44 changes: 22 additions & 22 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,42 @@
;; https://github.com/technomancy/leiningen/issues/2769
:pedantic? false

:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/tools.cli "1.0.219"] ;; cli arg parsing
[org.clojure/tools.namespace "1.4.4"] ;; reload code
[org.clojure/data.json "2.4.0"] ;; json handling
:dependencies [[org.clojure/clojure "1.11.2"]
[org.clojure/tools.cli "1.1.230"] ;; cli arg parsing
[org.clojure/tools.namespace "1.5.0"] ;; reload code
[org.clojure/data.json "2.5.0"] ;; json handling
[orchestra "2021.01.01-1"] ;; improved clojure.spec instrumentation
;; see lein deps :tree
[com.taoensso/timbre "5.1.2"] ;; logging
[com.taoensso/timbre "6.5.0"] ;; logging
[clj-http "3.12.3"] ;; better http slurping
[clj-commons/fs "1.6.310"] ;; file system wrangling
[clj-commons/fs "1.6.311"] ;; file system wrangling
[slugify "0.0.1"]
[trptcolin/versioneer "0.2.0"] ;; version number wrangling. it's more involved than you might suspect
[org.flatland/ordered "1.15.11"] ;; better ordered map
[clojure.java-time "1.2.0"] ;; date/time handling library, https://github.com/dm3/clojure.java-time
[clojure.java-time "1.4.2"] ;; date/time handling library, https://github.com/dm3/clojure.java-time
[envvar "1.1.2"] ;; environment variable wrangling
[tolitius/lasync "0.1.24"] ;; better parallel processing
[tolitius/lasync "0.1.25"] ;; better parallel processing

[cljfx "1.7.23" :exclusions [org.openjfx/javafx-web
org.openjfx/javafx-media]]
[cljfx "1.8.0" :exclusions [org.openjfx/javafx-web
org.openjfx/javafx-media]]
[cljfx/css "1.1.0"]

[org.openjfx/javafx-base "19.0.2.1"]
[org.openjfx/javafx-base "19.0.2.1" :classifier "linux"]
[org.openjfx/javafx-base "19.0.2.1" :classifier "mac"]
[org.openjfx/javafx-base "20-ea+1"]
[org.openjfx/javafx-base "20-ea+1" :classifier "linux"]
[org.openjfx/javafx-base "20-ea+1" :classifier "mac"]

[org.openjfx/javafx-controls "19.0.2.1"]
[org.openjfx/javafx-controls "19.0.2.1" :classifier "linux"]
[org.openjfx/javafx-controls "19.0.2.1" :classifier "mac"]
[org.openjfx/javafx-controls "20-ea+1"]
[org.openjfx/javafx-controls "20-ea+1" :classifier "linux"]
[org.openjfx/javafx-controls "20-ea+1" :classifier "mac"]

[org.openjfx/javafx-graphics "19.0.2.1"]
[org.openjfx/javafx-graphics "19.0.2.1" :classifier "linux"]
[org.openjfx/javafx-graphics "19.0.2.1" :classifier "mac"]
[org.openjfx/javafx-graphics "20-ea+1"]
[org.openjfx/javafx-graphics "20-ea+1" :classifier "linux"]
[org.openjfx/javafx-graphics "20-ea+1" :classifier "mac"]

;; GPLv3 compatible dependencies.
;; these don't need an exception in LICENCE.txt
[org.ocpsoft.prettytime/prettytime "5.0.6.Final"] ;; Apache 2.0 licenced, pretty date formatting
[org.controlsfx/controlsfx "11.1.2"] ;; BSD-3
[org.ocpsoft.prettytime/prettytime "5.0.7.Final"] ;; Apache 2.0 licenced, pretty date formatting
[org.controlsfx/controlsfx "11.2.1"] ;; BSD-3

;; remember to update the LICENCE.txt
;; remember to update pom file (`lein pom`)
Expand All @@ -65,7 +65,7 @@

:profiles {:repl {:source-paths ["repl"]}
:dev {:resource-paths ["dev-resources" "resources"] ;; dev-resources take priority
:dependencies [[clj-http-fake "1.0.3"] ;; fake http responses for testing
:dependencies [[clj-http-fake "1.0.4"] ;; fake http responses for testing
[gui-diff "0.6.7" :exclusions [net.cgrant/parsley]] ;; pops up a graphical diff for test results
]}

Expand Down
4 changes: 2 additions & 2 deletions test/strongbox/jfx_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Installed from curseforge
Supports Retail
Last updated 7 years ago (2016-09-08)"]
Last updated 8 years ago (2016-09-08)"]
(is (= expected (jfx/addon-as-text-for-installed given)))))

(testing "with overrides"
Expand Down Expand Up @@ -167,7 +167,7 @@ Available from curseforge
Supports
Last updated 7 years ago (2016-09-08)"]
Last updated 8 years ago (2016-09-08)"]
(is (= expected (jfx/addon-as-text-for-catalogue given)))))

(testing "with overrides"
Expand Down

0 comments on commit 80fd44b

Please sign in to comment.