docker-compose => docker compose
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
31ad33dc85
commit
fb3188320d
4 changed files with 4 additions and 4 deletions
2
.github/workflows/test-and-release.yml
vendored
2
.github/workflows/test-and-release.yml
vendored
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
~/.cpcache
|
~/.cpcache
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
||||||
- name: Setup Databases
|
- name: Setup Databases
|
||||||
run: docker-compose up -d
|
run: docker compose up -d
|
||||||
env:
|
env:
|
||||||
MYSQL_ROOT_PASSWORD: testing
|
MYSQL_ROOT_PASSWORD: testing
|
||||||
- name: Run MariaDB Tests
|
- name: Run MariaDB Tests
|
||||||
|
|
|
||||||
2
.github/workflows/test-and-snapshot.yml
vendored
2
.github/workflows/test-and-snapshot.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
~/.cpcache
|
~/.cpcache
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
||||||
- name: Setup Databases
|
- name: Setup Databases
|
||||||
run: docker-compose up -d
|
run: docker compose up -d
|
||||||
env:
|
env:
|
||||||
MYSQL_ROOT_PASSWORD: testing
|
MYSQL_ROOT_PASSWORD: testing
|
||||||
- name: Run MariaDB Tests
|
- name: Run MariaDB Tests
|
||||||
|
|
|
||||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
~/.cpcache
|
~/.cpcache
|
||||||
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }}
|
||||||
- name: Setup Databases
|
- name: Setup Databases
|
||||||
run: docker-compose up -d
|
run: docker compose up -d
|
||||||
env:
|
env:
|
||||||
MYSQL_ROOT_PASSWORD: testing
|
MYSQL_ROOT_PASSWORD: testing
|
||||||
- name: Run MariaDB Tests
|
- name: Run MariaDB Tests
|
||||||
|
|
|
||||||
|
|
@ -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).
|
* 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 [#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.
|
* 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
|
* 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.
|
* Fix [#280](https://github.com/seancorfield/next-jdbc/issues/280) by allowing `-` as well as `_` in `nav` foreign key names.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue