TestContainers v1.7.0 Release Notes

Release Date: 2018-04-07 // about 6 years ago
  • ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed extraneous insertion of useSSL=false in all JDBC URL strings, even for DBs that do not understand it. Usage is now restricted to MySQL by default and can be overridden by authors of JdbcDatabaseContainer subclasses (#568)
    • ๐Ÿ›  Fixed getServicePort on DockerComposeContainer throws NullPointerException if service instance number in not used. (#619)
    • ๐Ÿ”ง Increase Ryuk's timeout and make it configurable with ryuk.container.timeout. (#621#635)

    ๐Ÿ”„ Changed

    • โž• Added compatibility with selenium greater than 3.X (#611)
    • โœ… Abstracted and changed database init script functionality to support use of SQL-like scripts with non-JDBC connections. (#551)
    • โž• Added JdbcDatabaseContainer(Future) constructor. (#543)
    • ๐Ÿณ Mark DockerMachineClientProviderStrategy as not persistable (#593)
    • โž• Added waitingFor(String serviceName, WaitStrategy waitStrategy) and overloaded withExposedService() methods to DockerComposeContainer to allow user to define WaitStrategy for compose containers. (#174, #515 and (#600))
    • โœ… Deprecated WaitStrategy and implementations in favour of classes with same names in org.testcontainers.containers.strategy (#600)
    • โž• Added ContainerState interface representing the state of a started container (#600)
    • โž• Added WaitStrategyTarget interface which is the target of the new WaitStrategy (#600)
    • ๐Ÿ’ฅ Breaking: Removed hard-coded wnameless Oracle database image name. Users should instead place a file on the classpath named testcontainers.properties containing oracle.container.image=IMAGE, where IMAGE is a suitable image name and tag/SHA hash. For information, the approach recommended by Oracle for creating an Oracle XE docker image is described here.
    • โž• Added DockerHealthcheckWaitStrategy that is based on Docker's built-in healthcheck (#618).
    • โž• Added withLogConsumer(String serviceName, Consumer<OutputFrame> consumer) method to DockerComposeContainer (#605)
    • โž• Added withFixedExposedPort(int hostPort, int containerPort, InternetProtocol protocol) method to FixedHostPortGenericContainer and addFixedExposedPort(int hostPort, int containerPort, InternetProtocol protocol) to GenericContainer (#586)