bump dependencies
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
7b32faa7d1
commit
ed95235b7e
5 changed files with 17 additions and 14 deletions
2
.github/workflows/test-and-release.yml
vendored
2
.github/workflows/test-and-release.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
cli: '1.11.2.1441'
|
cli: '1.11.2.1446'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
6
.github/workflows/test-and-snapshot.yml
vendored
6
.github/workflows/test-and-snapshot.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
cli: '1.11.2.1441'
|
cli: '1.11.2.1446'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
|
@ -54,7 +54,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: [ '11', '17', '20' ]
|
java: [ '11', '17', '21' ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-java@v4
|
- uses: actions/setup-java@v4
|
||||||
|
|
@ -64,7 +64,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
cli: '1.11.2.1441'
|
cli: '1.11.2.1446'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: [ '11', '17', '20' ]
|
java: [ '11', '17', '21' ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-java@v4
|
- uses: actions/setup-java@v4
|
||||||
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
- name: Setup Clojure
|
- name: Setup Clojure
|
||||||
uses: DeLaGuardo/setup-clojure@master
|
uses: DeLaGuardo/setup-clojure@master
|
||||||
with:
|
with:
|
||||||
cli: '1.11.2.1441'
|
cli: '1.11.2.1446'
|
||||||
- name: Cache All The Things
|
- name: Cache All The Things
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
Only accretive/fixative changes will be made from now on.
|
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
|
* 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 [#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).
|
* 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).
|
||||||
|
|
|
||||||
16
deps.edn
16
deps.edn
|
|
@ -6,7 +6,7 @@
|
||||||
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}
|
camel-snake-kebab/camel-snake-kebab {:mvn/version "0.4.3"}}
|
||||||
:aliases
|
:aliases
|
||||||
{;; for help: clojure -A:deps -T:build help/doc
|
{;; 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"}}
|
slipset/deps-deploy {:mvn/version "0.2.2"}}
|
||||||
:ns-default build}
|
:ns-default build}
|
||||||
|
|
||||||
|
|
@ -32,19 +32,19 @@
|
||||||
net.sourceforge.jtds/jtds {:mvn/version "1.3.1"}
|
net.sourceforge.jtds/jtds {:mvn/version "1.3.1"}
|
||||||
org.mariadb.jdbc/mariadb-java-client {:mvn/version "3.3.3"}
|
org.mariadb.jdbc/mariadb-java-client {:mvn/version "3.3.3"}
|
||||||
com.mysql/mysql-connector-j {:mvn/version "8.3.0"}
|
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/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-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-linux-amd64 {:mvn/version "16.2.0"}
|
||||||
io.zonky.test.postgres/embedded-postgres-binaries-windows-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"}
|
com.microsoft.sqlserver/mssql-jdbc {:mvn/version "12.6.1.jre11"}
|
||||||
;; use log4j2 to reduce log noise during testing:
|
;; 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:
|
;; bridge everything into log4j:
|
||||||
org.apache.logging.log4j/log4j-1.2-api {: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.0"}
|
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.23.1"}
|
||||||
org.apache.logging.log4j/log4j-jul {:mvn/version "2.23.0"}
|
org.apache.logging.log4j/log4j-jul {:mvn/version "2.23.1"}
|
||||||
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.23.0"}}
|
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.23.1"}}
|
||||||
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]
|
:jvm-opts ["-Dlog4j2.configurationFile=log4j2-info.properties"]
|
||||||
:exec-fn cognitect.test-runner.api/test}}}
|
:exec-fn cognitect.test-runner.api/test}}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue