From fb3188320da62cf8a4429ac24db025ae57629f40 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 3 Aug 2024 12:42:00 -0700 Subject: [PATCH] docker-compose => docker compose Signed-off-by: Sean Corfield --- .github/workflows/test-and-release.yml | 2 +- .github/workflows/test-and-snapshot.yml | 2 +- .github/workflows/test.yml | 2 +- CHANGELOG.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index eb23535..06e575d 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -30,7 +30,7 @@ jobs: ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} - name: Setup Databases - run: docker-compose up -d + run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - name: Run MariaDB Tests diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 83a3d7d..58d780d 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -28,7 +28,7 @@ jobs: ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} - name: Setup Databases - run: docker-compose up -d + run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - name: Run MariaDB Tests diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 265bc9b..1ca831a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: ~/.cpcache key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} - name: Setup Databases - run: docker-compose up -d + run: docker compose up -d env: MYSQL_ROOT_PASSWORD: testing - name: Run MariaDB Tests diff --git a/CHANGELOG.md b/CHANGELOG.md index 6416bce..25d5b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Only accretive/fixative changes will be made from now on. * Update PostgreSQL **Tips & Tricks** example code to fix possible NPE. PR [#284](https://github.com/seancorfield/next-jdbc/pull/284) from [@ExNexu](https://github.com/ExNexu). * Address [#283](https://github.com/seancorfield/next-jdbc/issues/283) by adding a note in the documentation, linking to the PostgreSQL bug report about `ANY(array)`. * Address [#269](https://github.com/seancorfield/next-jdbc/issues/269) by adding `:name-fn` as an option (primarily for the SQL builder functions, but also for result set processing); the default is `clojure.core/name` but you can now use `next.jdbc.sql.builder/qualified-name` to preserve the qualifier. - * Update testing deps. + * Update testing deps; `docker-compose` => `docker compose`. * 1.3.939 -- 2024-05-17 * Fix [#280](https://github.com/seancorfield/next-jdbc/issues/280) by allowing `-` as well as `_` in `nav` foreign key names.