From ed95235b7e6e35c86d35a65b98a5a9e50f61a2f4 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 15 Mar 2024 18:13:23 -0700 Subject: [PATCH] bump dependencies Signed-off-by: Sean Corfield --- .github/workflows/test-and-release.yml | 2 +- .github/workflows/test-and-snapshot.yml | 6 +++--- .github/workflows/test.yml | 4 ++-- CHANGELOG.md | 3 +++ deps.edn | 16 ++++++++-------- 5 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index c772800..f3caa29 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -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: diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 9511cdc..52e1ffe 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -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: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db8e563..12842cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c9fc9e..1b56843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/deps.edn b/deps.edn index 0aa5963..c6493b1 100644 --- a/deps.edn +++ b/deps.edn @@ -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}}}