Skip to content

Releases: testcontainers/testcontainers-java

1.15.0

05 Nov 20:22
b28f6ef

Choose a tag to compare

What's Changed

Notable changes from previous release candidates (1.15.0-rc1, 1.15.0-rc2) are called out in these release notes. If migrating from 1.14.3, please see the RC release notes for other changes.

🚀 Features & Enhancements

Included in 1.15.0-rc2

  • Add image compatibility checks (#3021) @rnorth
    The majority of modules make assumptions about the container image being used - for example, port numbers, expected log lines, etc. When asking users to provide their own images with modules, it is potentially confusing if the provided image diverges from the original 'vendor-provided' image that the module was built to support.

    This change is intended to ensure that, if the user provides their own image that is not the same as the vendor-provided one, they are given adequate warning and forced to signal that this is intentional.

    For example:

    • new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:any")) will just work, because confluentinc/cp-kafka matches the image name that KafkaContainer was designed to work with
    • but new KafkaContainer(DockerImageName.parse("some-other-kafka")) will not work immediately, because some-other-kafka may be an entirely divergent image from confluentinc/cp-kafka. In this case, the user would be prompted to add .asCompatibleSubstituteFor("confluentinc/cp-kafka") which tells Testcontainers that this is a conscious decision

    This PR adds to DockerImageName:

    • asCompatibleSubstituteFor(DockerImageName) and asCompatibleSubstituteFor(String) methods which may be used to claim compatibility with a vendor-provided image
    • isCompatibleWith(DockerImageName) and assertCompatibleWith(DockerImageName) methods which can be used by Testcontainers to check that the provided image is compatible with the expected vendor-provided image

Included in 1.15.0-rc1

  • Add a rootless Docker strategy (#2985) @bsideup. This allows Testcontainers to be used with Docker's rootless mode. All Testcontainers' features and modules are compatible with Docker rootless mode, but we would appreciate feedback on unidentified edge cases.

  • Deprecate ambiguous constructors (#2839) @rnorth. This change affects the majority of constructors for container classes. This is intended to encourage users to specify an exact docker image and tag for dependencies, rather than relying on a (potentially outdated) default image chosen by Testcontainers.

    • new XyzContainer()-style and new XyzContainer(String)-style constructors are deprecated throughout, in favour of a strongly typed new XyzContainer(DockerImageName)-style constructor.
    • Users should identify an appropriate Docker image for their test dependencies, and use as follows: new XyzContainer( DockerImageName.parse( "the/image:tag" ) ).
    • We expect to make some further improvements in this area before the final 1.15.0 release.
  • Un-shade docker-java-api (#2882) @bsideup. This change follows some significant refactoring of the docker-java library, and should resolve various issues associated with shading of dependencies.

  • New optional transport based on Apache HttpClient5. This is a very promising transport that most probably will become the default in future versions of Testcontainers. You can give it a try by putting transport.type = httpclient5 to $HOME/.testcontainers.properties.

⚠️ Breaking API changes

Included in 1.15.0-rc1

While we expect that the vast majority of users will notice no difference, these changes can be considered breaking, so warrant special mention:

Other improvements

  • Refactor TestcontainersConfiguration to allow config by env var (#3411) @rnorth
  • Elasticsearch: Add withPassword(String) method for secure access (#2321) @dadoonet
  • Vault: add a fluent API for configuring Vault's logging level (#2231) @fullkomnun
  • Add gcloud endpoint accessors (#3344) @rnorth
  • docker-machine: get full remote daemon URL, to allow for use of custom daemon port (#2769) (#3237) @vcvitaly
  • Allow users to specify a MongoDB database name (#2980) @silaev
  • Presto: Bump default Presto version (used in deprecated constructor and unversioned JDBC URL) from 329 to 344 (#3312) @findepi
  • Reduce severity of warning for failed auth config lookups (fixes #1399) (#3353) @DevilzOwn
  • When an image version is not specified, use latest as the default tag (#3313) @rnorth
  • Don't display a stack trace in the logs when .testcontainers.properties is not found (#2293) @rishumehrotra

🐛 Bug Fixes

📖 Documentation

  • Correct documentation for ryuk image (#3383) @ae-govau
  • Latest kafka container 5.4.3 (#3402) @artamonovkirill
  • Fix a small typo in documentation (#3349) @dadoonet
  • Update image references in Localstack module docs (#3076) @artamonovkirill
  • Elasticsearch: Add test and documentation for secured cluster, bump default Elasticsearch version (deprecated constructor) from 6.4.1 to 7.9.2 (#2320) @dadoonet
  • Increase memory limits used in example (#3340) @rnorth

🧹 Housekeeping

📦 Dependency updates

Click to expand...
  • Bump s3 from 2.15.9 to 2.15.14 in /modules/localstack (#3388) @dependabot
  • Bump mockito-core from 3.5.13 to 3.5.15 in /modules/junit-jupiter (#3387) @dependabot
  • Bump assertj-core from 3.17.2 to 3.18.0 in /modules/junit-jupiter (#3386) @dependabot
  • Bump assertj-core from 3.17.2 to 3.18.0 in /modules/neo4j (#3385) @dependabot
  • Bump assertj-core from 3.17.2 to 3.18.0 in /modules/vault (#3384) @dependabot
  • Bump postgresql from 42.2.17 to 42.2.18 in /modules/junit-jupiter (#3369) @dependabot
  • Bump aws-java-sdk-sqs from 1.11.880 to 1.11.884 in /modules/localstack (#3377) @dependabot
  • Bump guava from 29.0-jre to 30.0-jre in /core (#3371) @dependabot
  • Bump mysql-connector-java from 8.0.21 to 8.0.22 in /modules/junit-jupiter (#3370) @dependabot
  • Bump postgresql from 42.2.17 to 42.2.18 in /examples (#3367) @dependabot
  • Bump postgresql from 42.2.17 to 42.2.18 in /modules/spock (#3362) @dependabot
  • Bump s3 from 2.15.7 to 2.15.9 in /modules/localstack (#3361) @dependabot
  • Bump lombok from 1.18.14 to 1.18.16 in /examples (#3368) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.880 to 1.11.882 in /modules/localstack (#3365) @dependabot
  • Bump mssql-jdbc from 8.4.1.jre8 to 9.1.0.jre8-preview in /modules/mssqlserver (#3364) @dependabot
  • Bump mysql-connector-java from 8.0.21 to 8.0.22 in /modules/spock (#3363) @dependabot
  • Bump mysql-connector-java from 8.0.21 to 8.0.22 in /modules/jdbc-test (#3360) @dependabot
  • Bump guava from 29.0-jre to 30.0-jre in /modules/jdbc-test (#3359) @dependabot
  • Bump mysql-connector-java from 8.0.21 to 8.0.22 in /modules/mysql (#3357) @dependabot
  • Bump postgresql from 42.2.17 to 42.2.18 in /modules/postgresql (#3358) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.880 to 1.11.882 in /modules/dynalite (#3356) @dependabot
  • Bump cucumber-java from 6.6.0 to 6.8.1 in /examples (#3324) @dependabot
  • Bump s3 from 2.14.21 to 2.15.7 in /modules/localstack (#3335) @dependabot
  • Bump zt-exec from 1.10 to 1.12 in /core (#3253) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.870 to 1.11.880 in /modules/localstack (#3336) @dependabot
  • Bump org.springframework.boot from 2.3.3.RELEASE to 2.3.4.RELEASE in /examples (#3247) @dependabot
  • Bump cucumber-junit from 6.7.0 to 6.8.1 in /examples (#3325) @dependabot
  • Bump httpclient from 4.5.12 to 4.5.13 in /modules/spock (#3329) @dependabot
    *...
Read more

1.15.0-rc2

30 Sep 12:07
1e597cc

Choose a tag to compare

1.15.0-rc2 Pre-release
Pre-release

What's Changed

This release includes a fix for a breaking change that appeared in Docker for Mac v2.4.0.0 (#3159). We recommend upgrading to this version of Testcontainers ASAP.

🚀 Features & Enhancements

  • Add image compatibility checks (#3021) @rnorth
    The majority of modules make assumptions about the container image being used - for example, port numbers, expected log lines, etc. When asking users to provide their own images with modules, it is potentially confusing if the provided image diverges from the original 'vendor-provided' image that the module was built to support.

    This change is intended to ensure that, if the user provides their own image that is not the same as the vendor-provided one, they are given adequate warning and forced to signal that this is intentional.

    For example:

    • new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:any")) will just work, because confluentinc/cp-kafka matches the image name that KafkaContainer was designed to work with
    • but new KafkaContainer(DockerImageName.parse("some-other-kafka")) will not work immediately, because some-other-kafka may be an entirely divergent image from confluentinc/cp-kafka. In this case, the user would be prompted to add .asCompatibleSubstituteFor("confluentinc/cp-kafka") which tells Testcontainers that this is a conscious decision

    This PR adds to DockerImageName:

    • asCompatibleSubstituteFor(DockerImageName) and asCompatibleSubstituteFor(String) methods which may be used to claim compatibility with a vendor-provided image
    • isCompatibleWith(DockerImageName) and assertCompatibleWith(DockerImageName) methods which can be used by Testcontainers to check that the provided image is compatible with the expected vendor-provided image
  • Add support for Docker compose withOptions(...) (#2827) @Gapmeister66

☠️ Deprecations

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

  • Make testMatrix task emit all check tasks, rather than filtering out up-to-date tasks (#3287) @rnorth
  • Remove dependency upon internet URLs for selenium tests (#3271) @rnorth
  • Use testCompileClasspath instead of testCompileOnly (#3219) @colltoaction
  • Add some more logs to bash script used for DockerHealthcheckWaitStratgyTest (#2988) @kiview
  • Fix the Rootless Docker CI job (#3050) @bsideup
  • Add continue-on-error for cache step, and upgrade GH cache action (#3133) @rnorth

📦 Dependency updates

  • Bump aws-java-sdk-s3 from 1.11.865 to 1.11.870 in /modules/localstack (#3285) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.860 to 1.11.865 in /modules/localstack (#3255) @dependabot
  • Bump s3 from 2.14.16 to 2.14.21 in /modules/localstack (#3254) @dependabot
  • Bump mockito-core from 3.5.7 to 3.5.11 in /core (#3250) @dependabot
  • Bump cucumber-junit from 6.6.0 to 6.7.0 in /examples (#3246) @dependabot
  • Bump okhttp from 4.8.1 to 4.9.0 in /examples (#3245) @dependabot
  • Bump solr-solrj from 8.6.1 to 8.6.2 in /examples (#3244) @dependabot
  • Bump mockito-core from 3.5.10 to 3.5.11 in /modules/junit-jupiter (#3243) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.860 to 1.11.865 in /modules/dynalite (#3242) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/pulsar (#3192) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.856 to 1.11.860 in /modules/localstack (#3226) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/database-commons (#3197) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/junit-jupiter (#3199) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/kafka (#3200) @dependabot
  • Bump cucumber-java from 6.4.0 to 6.6.0 in /examples (#3213) @dependabot
  • Bump r2dbc-postgresql from 0.8.4.RELEASE to 0.8.5.RELEASE in /modules/postgresql (#3230) @dependabot
  • Bump s3 from 2.14.12 to 2.14.16 in /modules/localstack (#3231) @dependabot
  • Bump junit-jupiter-api from 5.6.2 to 5.7.0 in /modules/junit-jupiter (#3233) @dependabot
  • Bump junit-jupiter-params from 5.6.2 to 5.7.0 in /modules/junit-jupiter (#3232) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.856 to 1.11.860 in /modules/dynalite (#3235) @dependabot
  • Bump postgresql from 42.2.15 to 42.2.16 in /examples (#3216) @dependabot
  • Bump junit-jupiter-engine from 5.6.2 to 5.7.0 in /modules/junit-jupiter (#3234) @dependabot
  • Bump cucumber-junit from 6.4.0 to 6.6.0 in /examples (#3215) @dependabot
  • Bump aws-java-sdk-sqs from 1.11.851 to 1.11.860 in /modules/localstack (#3227) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/vault (#3193) @dependabot
  • Bump mockito-core from 3.5.7 to 3.5.10 in /modules/junit-jupiter (#3201) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.852 to 1.11.856 in /modules/localstack (#3203) @dependabot
  • Bump s3 from 2.14.8 to 2.14.12 in /modules/localstack (#3202) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.851 to 1.11.856 in /modules/dynalite (#3194) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/mysql (#3198) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/selenium (#3195) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/jdbc (#3196) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /examples (#3217) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/postgresql (#3207) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/nginx (#3206) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /modules/spock (#3204) @dependabot
  • Bump annotations from 20.0.0 to 20.1.0 in /core (#3214) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.1 in /core (#3210) @dependabot
  • Bump elasticsearch-rest-client from 7.9.0 to 7.9.1 in /modules/elasticsearch (#3212) @dependabot
  • Bump assertj-core from 3.17.1 to 3.17.2 in /modules/neo4j (#3208) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.847 to 1.11.852 in /modules/localstack (#3182) @dependabot
  • Bump s3 from 2.14.6 to 2.14.8 in /modules/localstack (#3181) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/kafka (#3175) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/pulsar (#3176) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/junit-jupiter (#3177) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/vault (#3173) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/database-commons (#3168) @dependabot
  • Bump assertj-core from 3.17.0 to 3.17.1 in /modules/neo4j (#3167) @dependabot
  • Bump aws-java-sdk-sqs from 1.11.846 to 1.11.851 in /modules/localstack (#3171) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.847 to 1.11.851 in /modules/dynalite (#3172) @dependabot
  • Bump mssql-jdbc from 8.3.1.jre8-preview to 8.4.1.jre8 in /modules/mssqlserver (#3174) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/database-commons (#3141) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/neo4j (#3137) @dependabot
  • Bump s3 from 2.13.76 to 2.14.6 in /modules/localstack (#3162) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/kafka (#3139) @dependabot
  • Bump mockito-core from 3.5.5 to 3.5.7 in /modules/junit-jupiter (#3163) @dependabot
  • Bump postgresql from 42.2.15 to 42.2.16 in /modules/spock (#3138) @dependabot
  • Bump mockito-core from 3.5.0 to 3.5.7 in /core (#3164) @dependabot
  • Bump pulsar-client from 2.6.0 to 2.6.1 in /modules/pulsar (#3155) @dependabot
  • Bump mockito-core from 3.5.2 to 3.5.5 in /modules/junit-jupiter (#3143) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/junit-jupiter (#3144) @dependabot
  • Bump postgresql from 42.2.15 to 42.2.16 in /modules/postgresql (#3145) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/vault (#3146) @dependabot
  • Bump pulsar-client-admin from 2.6.0 to 2.6.1 in /modules/pulsar (#3154) @dependabot
  • Bump elasticsearch-rest-client from 7.8.0 to 7.9.0 in /modules/elasticsearch (#3152) @dependabot
  • Bump postgresql from 42.2.15 to 42.2.16 in /modules/junit-jupiter (#3142) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.846 to 1.11.847 in /modules/localstack (#3148) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.837 to 1.11.847 in /modules/dynalite (#3150) @dependabot
  • Bump assertj-core from 3.16.1 to 3.17.0 in /modules/pulsar (#3153) @dependabot
  • Bump postgresql from 42.2.14 to 42.2.15 in /modules/spock (#3119) @dependabot
  • Bump influxdb-java from 2.19 to 2.20 in /modules/influxdb (#3120) @dependabot
  • Bump org.springframework.boot from 2.3.2.RELEASE to 2.3.3.RELEASE in /examples (#3111) @dependabot
  • Bump mockito-core from 3.4.4 to 3.5.2 in /modules/junit-jupiter (#3130) @dependabot
  • Bump postgresql from 42.2.14 to 42.2.15 in /modules/junit-jupiter (#3115) @dependabot
  • Bump postgresql from 42.2.14 to 42.2.15 in /modules/postgresql (#3113) @dependabot
  • Bump cucumber-java from 6.2.2 to 6.4.0 in /examples (#3112) @dependabot
  • Bump aws-java-sdk-sqs from 1.11.831 to 1.11.846 in /modules/localstack (#3132) @dependabot
  • Bump aws-java-sdk-s3 from 1.11.837 to 1.11.846 in /modules/localstack (#3131) @dependabot
  • Bump s3 from 2.13.61 to 2.13.76 in /modules/localstack (#3114) @dependabot
  • Bump solr-solrj from 8.5.2 to 8.6.1 in /examples (#3107) @dependabot
  • Bump aws-java-sdk-dynamodb from 1.11.827 to 1.11.837 in /modules/dynalite (#3090) @dependabot...
Read more

1.15.0-rc1

19 Jul 19:25
dd0d218

Choose a tag to compare

1.15.0-rc1 Pre-release
Pre-release

What's Changed

This is a release candidate build for version 1.15.0, including a large number of small but noticeable changes.

At least one further release candidate build is expected before 1.15.0 final, and some API changes may still be made. We would encourage users to upgrade to this release candidate version if possible, and to give us feedback on any issues that are encountered.

Notable changes

  • Add a rootless Docker strategy (#2985) @bsideup. This allows Testcontainers to be used with Docker's rootless mode. All Testcontainers' features and modules are compatible with Docker rootless mode, but we would appreciate feedback on unidentified edge cases.

  • Deprecate ambiguous constructors (#2839) @rnorth. This change affects the majority of constructors for container classes. This is intended to encourage users to specify an exact docker image and tag for dependencies, rather than relying on a (potentially outdated) default image chosen by Testcontainers.

    • new XyzContainer()-style and new XyzContainer(String)-style constructors are deprecated throughout, in favour of a strongly typed new XyzContainer(DockerImageName)-style constructor.
    • Users should identify an appropriate Docker image for their test dependencies, and use as follows: new XyzContainer( DockerImageName.parse( "the/image:tag" ) ).
    • We expect to make some further improvements in this area before the final 1.15.0 release.
  • Un-shade docker-java-api (#2882) @bsideup. This change follows some significant refactoring of the docker-java library, and should resolve various issues associated with shading of dependencies.

  • New optional transport based on Apache HttpClient5. This is a very promising transport that most probably will become the default in future versions of Testcontainers. You can give it a try by putting transport.type = httpclient5 to $HOME/.testcontainers.properties.

⚠️ Breaking API changes

While we expect that the vast majority of users will notice no difference, these changes can be considered breaking, so warrant special mention:

☠️ Deprecations

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...
Read more

1.14.3

29 May 13:13
4853406

Choose a tag to compare

What's Changed

🚀 Features & Enhancements

  • Move away from using quay.io for default images (#2805) @rnorth
  • Couchbase: wait until query engine knows about bucket before creating… (#2662) @daschl
  • Couchbase: Bump Server Image Version (#2804) @daschl
  • Added additional url params in JdbcDatabaseContainer (#1802) (#1874) @eaxdev
  • Record and dump Ryuk's logs on timeout (#2810) @bsideup
  • Add default labels to images created with ImageFromDockerfile (#2809) @bsideup
  • Ensure that ParsedDockerfile supports platform args (#2780) @rnorth

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...

1.14.2

15 May 14:51
1eef935

Choose a tag to compare

What's Changed

🚀 Features & Enhancements

  • Add MongoDB module (#1961) @silaev
  • Add Apache Solr Module (#2123) @raynigon
  • Implement DockerClientFactory.isDockerAvailable() (#2605) @mvysny
  • RabbitMQ: Support declaring an exchange within a vhost (#2362) @dangets
  • Docker Compose: Verify that all services that have a wait condition defined also have a corresponding service instance (#2637) @jannis-baratheon
  • Add a getter for Toxiproxy exposed port (#2513) @lutovich
  • Add ContainerState#getHost as a replacement for getContainerIpAddress (#2742) @bsideup

🐛 Bug Fixes

  • Store GenericContainer#exposedPorts as an order-preserving Set (#2613) @bsideup
  • Correction for an edge case in local image repos (duplicate tags) (#2692, #2431) @Choobz
  • Remove duplicate debug log message at container start (#2522) @Streppel
  • Fix a regression in OracleContainer introduced in #2473 (#2612) @bsideup

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...

1.14.1

23 Apr 14:33
1e803b8

Choose a tag to compare

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

  • Fix regression introduced in #2473 (missing this constructor call) (#2596) @bsideup
  • Public ImageData class for custom image pull policies (#2585) @cha55son
  • Delegate getMetadata() to R2DBCDatabaseContainerProvider (#2577) @bsideup
  • Respect specified VNC recording directory for BrowserWebDriverContainer again (#2574) @srempfer

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...

1.14.0

13 Apr 17:52
d33f647

Choose a tag to compare

What's Changed

This release includes a number of big improvements, features and bug fixes! To name just a handful:

  • 🎉 docker-java is updated to 3.2.x. This is a major milestone for the library that we participated in. Please pay attention to deprecation warnings - ideally com.github.dockerjava.api.* should be the only package in use from com.github.dockerjava.*. Future versions of Testcontainers will no longer shade com.github.dockerjava.api.* and will include it as a dependency (com.github.docker-java:docker-java-api).

  • 🎉 R2DBC support for MySQL, MariaDB, PostgreSQL and MS SQL Server! See the docs for more info. Special thanks goes to the R2DBC team for their help and support with this PR.

  • 🎉 Vastly improved Couchbase container reliability, thanks to @daschl of @couchbase! This does include some small breaking changes to the Couchbase module's API - but ones that we consider to be worth the migration effort for a more stable build. Please see the documentation for the new usage syntax.

  • 🎉 Containers started by the JUnit Jupiter integration are now compatible with TestLifecycleAware, allowing greater hooks into phases of test execution.

  • 🎉 Broadened support for authenticated private registries when using Docker Compose.

Read on for many more improvements:

🚀 Features

🐛 Bug Fixes

  • Use LogMessageWaitStrategy in VncRecordingContainer (#2547) @srempfer
  • Protect NetworkImpl#close from concurrency issues (#2203) @pivovarit
  • Fallback to getDefaultGateway() if "bridge" is unavailable. (#2429) @bsideup
  • Fix invalid connection URLs returned by PostgreSQLContainer (#1976) (#2049) @pivovarit
  • Fix internal port check when other ports are opened as well on the target container (#2363) @codablock
  • Make default file recording directory of BrowserWebDriverContainer platform independent (#2562) @kiview
  • Fix Spock's TestLifecycleAware integration (#2563) @bsideup

📖 Documentation

  • Add more clear warning message instructing users how to enable reusable containers (#2422) @aguibert
  • Add more information for using registry mirror (#2477) @sparsick
  • Remove unusual public in Groovy example code (#2238) @mkutz
  • Use @DynamicPropertySource in the Spring Boot example (#2495) @bsideup
  • Extend docs with registry mirror as workaround for custom images (#2452) @sparsick
  • Add example for Cassandra module (#2210, #1975) @ftrossbach

🧹 Housekeeping

  • Temporarily ignore DB2 test - unrelated CI disk space issues (#2557) @kiview. This will be reinstated shortly, following work to reduce the disk usage of individual CI jobs.
  • Add ciMate (#2550) @bsideup
  • Move static config in modules to constructor (#2473) @mitchjust
  • Fix update-docs-version.yml script (#2519) @rnorth
  • Bump Copyrights to 2020 (#2488) @pivovarit

📦 Dependency updates

Click to expand...

1.13.0

05 Mar 15:20
f43e799

Choose a tag to compare

What's Changed

🚀 Features

🐛 Bug Fixes

  • Fix localstack cloudwatchlogs service (#2316) @MariuszCwikla
  • Set sourceJar.from=allSource for modules/spock (#2281) @pertu
  • Improve checkMountableFile on Windows with unusual paths (#2296) @bedla
  • Pin mkdocs dependencies to avoid version incompatibility (#2335) @rnorth
  • Add small delay in while loop to avoid spamming logs (ResourceReaper) (#2287) @worldtiki

📖 Documentation

  • idiomatize test container configuration in kotlin example (#1964) @alex0ptr
  • Adding Windows Subsystem for Linux section to the windows documentation (#2282) @rnorth
  • Add junit-jupiter dependency in junit 5 quickstart docs (#2301) @Dark0096
  • Mention JDBC URL change in Spring Boot 2.3.0 (#2286) @bsideup

🧹 Housekeeping

📦 Dependency updates

Click to expand...

1.12.5

22 Jan 22:04
2a56996

Choose a tag to compare

What's Changed

🚀 Features

🐛 Bug Fixes

  • Prevent duplicate attempts to start Ryuk container (#2245) @rnorth
  • Remove stray 'KB' suffix from docker build context size log mes… (#2214) @rnorth
  • JDBC: Fix parsing empty connection parameters (#2207) @findepi
  • Fix framing in OkHttp transport (#2155) @bsideup
  • do not implicitly connect to Kafka network (#2139) @bsideup
  • Truncate mode bits for z/OS file permissions (#2023) @aguibert
  • Fix DockerClientFactory#dockerHostIpAddress (#2119) @bsideup
  • Fix use of bash-specific /proc/net/tcp* check in InternalCommandPortListeningCheck t… (#2195) @perlun
  • Include only published projects into BOM (#2118) @bsideup

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...

1.12.4

29 Nov 11:00

Choose a tag to compare

What's Changed

🚀 Features

🐛 Bug Fixes

  • Stabilize CouchbaseContainer by merging the Socat command (#2081) @bsideup
  • Make Startables#deepStart always iterate sequentially (#2053) @pivovarit
  • Fix session label when reuse is not supported but requested (#2051) @bsideup
  • Fix docker image name parsing bugs (#2022) @rnorth

📖 Documentation

🧹 Housekeeping

📦 Dependency updates

Click to expand...