update tooling and test dependency log4j (2.17.0)

This commit is contained in:
Sean Corfield 2021-12-22 16:24:29 -08:00
parent 1ff90b1c86
commit ff142c7dd0
5 changed files with 18 additions and 14 deletions

View file

@ -19,7 +19,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:

View file

@ -17,7 +17,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:
@ -49,7 +49,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:
@ -78,7 +78,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:
@ -107,7 +107,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:

View file

@ -17,7 +17,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:
@ -46,7 +46,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:
@ -75,7 +75,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
tools-deps: '1.10.3.1040'
tools-deps: '1.10.3.1049'
- name: Cache All The Things
uses: actions/cache@v2
with:

View file

@ -2,6 +2,10 @@
Only accretive/fixative changes will be made from now on.
* 1.2.next in progress
* Update log4j2 test dependency.
* Update `build-clj` to v0.6.4.
* 1.2.761 -- 2021-12-15
* 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).

View file

@ -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.3" :git/sha "9b8e09b"}}
{:git/tag "v0.6.4" :git/sha "c21cfde"}}
: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.16.0"}
org.apache.logging.log4j/log4j-api {:mvn/version "2.17.0"}
;; bridge into log4j:
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"}}
org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.17.0"}
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.17.0"}
org.apache.logging.log4j/log4j-jul {:mvn/version "2.17.0"}
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.17.0"}}
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]
:exec-fn cognitect.test-runner.api/test}}}