bump dependencies

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2024-03-15 18:13:23 -07:00
parent 7b32faa7d1
commit ed95235b7e
No known key found for this signature in database
5 changed files with 17 additions and 14 deletions

View file

@ -19,7 +19,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.2.1441'
cli: '1.11.2.1446'
- name: Cache All The Things
uses: actions/cache@v4
with:

View file

@ -17,7 +17,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.2.1441'
cli: '1.11.2.1446'
- name: Cache All The Things
uses: actions/cache@v4
with:
@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '20' ]
java: [ '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
@ -64,7 +64,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.2.1441'
cli: '1.11.2.1446'
- name: Cache All The Things
uses: actions/cache@v4
with:

View file

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '20' ]
java: [ '11', '17', '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
@ -17,7 +17,7 @@ jobs:
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@master
with:
cli: '1.11.2.1441'
cli: '1.11.2.1446'
- name: Cache All The Things
uses: actions/cache@v4
with:

View file

@ -2,6 +2,9 @@
Only accretive/fixative changes will be made from now on.
* 1.3.next in progress
* Update dependency versions, including updating `tools.build` to 0.10.0.
* 1.3.925 -- 2024-03-15
* Address [#275](https://github.com/seancorfield/next-jdbc/issues/275) by noting that PostgreSQL may perform additional SQL queries to produce table names used in qualified result set builders.
* Address [#274](https://github.com/seancorfield/next-jdbc/issues/274) by adding `next.jdbc.sql/aggregate-by-keys` as a convenient wrapper around `find-by-keys` when you want just a single aggregate value back (such as `count`, `max`, etc).

View file

@ -6,7 +6,7 @@
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}
:aliases
{;; for help: clojure -A:deps -T:build help/doc
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.6"}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.0"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
@ -32,19 +32,19 @@
net.sourceforge.jtds/jtds {:mvn/version "1.3.1"}
org.mariadb.jdbc/mariadb-java-client {:mvn/version "3.3.3"}
com.mysql/mysql-connector-j {:mvn/version "8.3.0"}
org.postgresql/postgresql {:mvn/version "42.7.2"}
org.postgresql/postgresql {:mvn/version "42.7.3"}
io.zonky.test/embedded-postgres {:mvn/version "2.0.6"}
io.zonky.test.postgres/embedded-postgres-binaries-darwin-amd64 {:mvn/version "16.2.0"}
io.zonky.test.postgres/embedded-postgres-binaries-linux-amd64 {:mvn/version "16.2.0"}
io.zonky.test.postgres/embedded-postgres-binaries-windows-amd64 {:mvn/version "16.2.0"}
org.xerial/sqlite-jdbc {:mvn/version "3.45.1.0"}
org.xerial/sqlite-jdbc {:mvn/version "3.45.2.0"}
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.6.1.jre11"}
;; use log4j2 to reduce log noise during testing:
org.apache.logging.log4j/log4j-api {:mvn/version "2.23.0"}
org.apache.logging.log4j/log4j-api {:mvn/version "2.23.1"}
;; bridge everything into log4j:
org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.23.0"}
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.23.0"}
org.apache.logging.log4j/log4j-jul {:mvn/version "2.23.0"}
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.23.0"}}
org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.23.1"}
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.23.1"}
org.apache.logging.log4j/log4j-jul {:mvn/version "2.23.1"}
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.23.1"}}
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]
:exec-fn cognitect.test-runner.api/test}}}