Skip to content

Releases: avast/gradle-docker-compose-plugin

Containers stopped correctly after failure with starting

10 Dec 21:16
Compare
Choose a tag to compare

This fixes an issue with calling docker-compose down if the previous docker-compose up failed.

isRequiredBy fixed for TaskProvider and classes task

19 Nov 10:36
Compare
Choose a tag to compare

There is an optimization that ensures that classes task is executed before composeUp (so it's active for Java projects only). There was an issue because TaskProvider.configure() was called from another configure method, and we didn't know that this is not allowed.

This is fixed and also this use-case is now also covered by tests.

Issue with output capturing in Gradle 6 fixed

19 Nov 09:02
Compare
Choose a tag to compare

Gradle 6 warnings eliminated

18 Nov 14:48
Compare
Choose a tag to compare
0.10.2

Bintray upload fixed (missing pom.xml)

isRequiredBy now supports also TaskProvider (instead of Task)

18 Nov 12:43
Compare
Choose a tag to compare
0.10.1

isRequiredBy overload accepting TaskProvider instead of Task Fixes #208

Task Configuration Avoidance API used

15 Nov 12:58
Compare
Choose a tag to compare

This release requires Gradle 4.9 or higher because it uses Task Configuration Avoidance feature that improves build times when some of the tasks are not actually used.

forceRecreate behavior changed

20 Sep 12:51
Compare
Choose a tag to compare

Also --renew-anon-volumes switch is added to docker-compose up command.

includeDependencies parameter

05 May 10:57
83b092e
Compare
Choose a tag to compare

A new parameter includeDependencies introduced (as requested in #190). This release also removes removeDependents parameter - use includeDependencies instead.

Daemon thread interrupted after build

26 Apr 21:24
Compare
Choose a tag to compare

removeDependents option added

15 Apr 11:59
Compare
Choose a tag to compare

It allows to remove also services that are not explicitly started (but are defined as dependencies of the started ones).