diff --git a/CHANGELOG.md b/CHANGELOG.md index ae3ac91..bfe5b0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Only accretive/fixative changes will be made from now on. * 1.2.next in progress * Fix #194 by throwing an exception if a table or column name used with the friendly SQL functions (or the SQL builder functions behind them) contains a "suspicious" character (currently, that's just `;`). * Update several test dependencies (incl. log4j2). - * Update `build-clj` to v0.6.1. + * Update `build-clj` to v0.6.3. * 1.2.753 -- 2021-11-17 * Address #187 by adding `clj-kondo.exports` for future expansion (`with-transaction` is already built into `clj-kondo`). diff --git a/deps.edn b/deps.edn index 2070ea2..c4de619 100644 --- a/deps.edn +++ b/deps.edn @@ -7,7 +7,7 @@ :aliases {;; for help: clojure -A:deps -T:build help/doc :build {:deps {io.github.seancorfield/build-clj - {:git/tag "v0.6.2" :git/sha "97c275a"}} + {:git/tag "v0.6.3" :git/sha "9b8e09b"}} :ns-default build} ;; versions to test against: @@ -45,11 +45,11 @@ com.microsoft.sqlserver/mssql-jdbc {:mvn/version "9.4.1.jre8"} ;; supplementary test stuff ;; use log4j 2.x: - org.apache.logging.log4j/log4j-api {:mvn/version "2.15.0"} + org.apache.logging.log4j/log4j-api {:mvn/version "2.16.0"} ;; bridge into log4j: - org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.15.0"} - org.apache.logging.log4j/log4j-jcl {:mvn/version "2.15.0"} - org.apache.logging.log4j/log4j-jul {:mvn/version "2.15.0"} - org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.15.0"}} + org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.16.0"} + org.apache.logging.log4j/log4j-jcl {:mvn/version "2.16.0"} + org.apache.logging.log4j/log4j-jul {:mvn/version "2.16.0"} + org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.16.0"}} :jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"] :exec-fn cognitect.test-runner.api/test}}}