diff --git a/CHANGELOG.md b/CHANGELOG.md index c07c249..696be8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file. This change - [#64](https://github.com/javahippie/clj-test-containers/pull/64): Fix container path parameter for copy-file-to-container! in README - [#65](https://github.com/javahippie/clj-test-containers/issues/65): Upgrade to testcontainers-java 1.17.6 - [#66](https://github.com/javahippie/clj-test-containers/issues/66): Remove usage of deprecated API calls for cleanup +- [#67](https://github.com/javahippie/clj-test-containers/issues/67): Update Dependencies ## [0.7.3] - 2202-09-30 ### Changed diff --git a/deps.edn b/deps.edn index 6c73ccd..99d37b0 100644 --- a/deps.edn +++ b/deps.edn @@ -1,25 +1,25 @@ {:paths ["src" "resources"] :deps {org.clojure/clojure {:mvn/version "1.10.3"} - org.testcontainers/testcontainers {:mvn/version "1.17.2"}} + org.testcontainers/testcontainers {:mvn/version "1.17.6"}} :aliases {:dev {:extra-paths "dev-src"} :test {:extra-paths ["test" "test/resources"] :extra-deps {expound/expound {:mvn/version "0.9.0"} - lambdaisland/kaocha {:mvn/version "1.66.1034"} - lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"} - lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"} + lambdaisland/kaocha {:mvn/version "1.71.1119"} + lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"} + lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"} org.clojure/test.check {:mvn/version "1.1.1"} - org.testcontainers/postgresql {:mvn/version "1.17.2"}}} + org.testcontainers/postgresql {:mvn/version "1.17.6"}}} :test-runner {:extra-paths ["test" "test/resources"] - :extra-deps {expound/expound {:mvn/version "0.8.5"} - lambdaisland/kaocha {:mvn/version "1.66.1034"} - lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"} - lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"} + :extra-deps {expound/expound {:mvn/version "0.9.0"} + lambdaisland/kaocha {:mvn/version "1.71.1119"} + lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"} + lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"} org.clojure/test.check {:mvn/version "1.1.1"} orchestra {:mvn/version "2021.01.01-1"} - org.testcontainers/postgresql {:mvn/version "1.17.2"}} + org.testcontainers/postgresql {:mvn/version "1.17.6"}} :main-opts ["-m" "kaocha.runner" "--reporter" "kaocha.report/documentation"]} :cljstyle {:extra-deps {mvxcvi/cljstyle {:mvn/version "0.15.0" diff --git a/project.clj b/project.clj index a1cd4d1..53c0e9b 100644 --- a/project.clj +++ b/project.clj @@ -15,9 +15,9 @@ :plugins [[jainsahab/lein-githooks "1.0.0"]] :profiles {:dev {:dependencies [[expound "0.9.0"] - [lambdaisland/kaocha "1.70.1086"] - [lambdaisland/kaocha-cloverage "1.0.75"] - [lambdaisland/kaocha-junit-xml "1.16.98"] + [lambdaisland/kaocha "1.71.1119"] + [lambdaisland/kaocha-cloverage "1.1.89"] + [lambdaisland/kaocha-junit-xml "1.17.101"] [mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]] [org.clojure/test.check "1.1.1"] [orchestra "2021.01.01-1"]