Arquillian Cube Extension 1.13.0 Released
Since we wrote this post we didn't laze around. Check our latest announcement.
The Arquillian team is proud to announce the 1.13.0 release of the Arquillian Cube Extension component!
We are delighted to announce a new version of Arquillian Cube 1.13.0 with a bunch of awesome features related to Docker and bug fixes.
Important change: One of the important fixes we introduced is about handlings multiple values for env.dependencies
and wait.for.service.list
. We have changed the separation char from white-space to comma-separated, so to migrate to a new version, just add a comma instead of white space in the property to separate each of the element.
What’s new
Allow parallelization of networks
Now you can use the star pattern for networks. It works the same as the container star pattern.
<property name="dockerContainers">
networks:
testnetwork*:
driver: bridge
tomcat*:
image: tutum/tomcat:8.0
portBindings: [8080/tcp]
networkMode: testnetwork*
ping*:
image: jonmorehouse/ping-pong
exposedPorts: [8089/tcp]
networks:
- testnetwork*
</property>
Allow docker configuration to be loaded from the classpath
Currently Docker definition files were loaded from file (relative or absolute). In this version, dockerContainersResource
where you can specify a file containing the container definitions on the Java classpath.
Use comma to separate multiple values in arquillian.xml
env.dependencies
or wait.for.service.list
properties have changed the separation char from white-space to comma-separated. To migrate to new version, just add a comma instead of white space in the property to separate each of the element.
Many thanks to Martin Spisiak Aleš Justin and Ivan Kelly for their help.
What is Arquillian Cube Extension?
With Arquillian Cube you can control the lifecycle of Docker images as part of the test lifecyle, either automatically or manually. This gives you the chance to scale up from a integration/functional test level all the way up to the system test level.
Release details
Component | Arquillian Cube Extension |
---|---|
Version | 1.13.0 view tag |
Release date | 2018-01-15 |
Released by | Alien Ike |
Compiled against |
Published artifacts org.arquillian.cube
- org.arquillian.cube » arquillian-cube-api jar javadoc pom
- org.arquillian.cube » arquillian-cube-spi jar javadoc pom
- org.arquillian.cube » arquillian-cube-core jar javadoc pom
- org.arquillian.cube » arquillian-cube-containerless jar javadoc pom
- org.arquillian.cube » assertj-docker-java jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker-drone jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker-reporter jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker-restassured jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker-junit-rule jar javadoc pom
- org.arquillian.cube » arquillian-cube-docker-junit-rules jar javadoc pom
- org.arquillian.cube » arquillian-cube-openshift-api jar javadoc pom
- org.arquillian.cube » arquillian-cube-openshift-shrinkwrap jar javadoc pom
- org.arquillian.cube » arquillian-cube-openshift jar javadoc pom
- org.arquillian.cube » arquillian-cube-openshift-restassured jar javadoc pom
- org.arquillian.cube » arquillian-cube-kubernetes-fabric8 jar javadoc pom
- org.arquillian.cube » arquillian-cube-kubernetes jar javadoc pom
- org.arquillian.cube » arquillian-cube-kubernetes-reporter jar javadoc pom
- org.arquillian.cube » arquillian-cube-requirement jar javadoc pom
- org.arquillian.cube » arquillian-cube-bom pom
Release notes and resolved issues 5
- Enhancement
- Bug
Thanks to the following list of contributors: Ivan Kelly, Arquillian, Martin Spisiak, Georgios Andrianakis, Dipak Pawar, Ales Justin