Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <sean@corfield.org>
  • Loading branch information
seancorfield committed Mar 16, 2024
1 parent 7b32faa commit ed95235
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-and-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
16 changes: 8 additions & 8 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand All @@ -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}}}

0 comments on commit ed95235

Please sign in to comment.