Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump testcontainers.version from 1.15.1 to 1.17.1 #4

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 15, 2022

Bumps testcontainers.version from 1.15.1 to 1.17.1.
Updates testcontainers from 1.15.1 to 1.17.1

Release notes

Sourced from testcontainers's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates kafka from 1.15.1 to 1.17.1

Release notes

Sourced from kafka's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates mariadb from 1.15.1 to 1.17.1

Release notes

Sourced from mariadb's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates couchbase from 1.15.1 to 1.17.1

Release notes

Sourced from couchbase's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates neo4j from 1.15.1 to 1.17.1

Release notes

Sourced from neo4j's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates postgresql from 1.15.1 to 1.17.1

Release notes

Sourced from postgresql's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates elasticsearch from 1.15.1 to 1.17.1

Release notes

Sourced from elasticsearch's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates rabbitmq from 1.15.1 to 1.17.1

Release notes

Sourced from rabbitmq's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates influxdb from 1.15.1 to 1.17.1

Release notes

Sourced from influxdb's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates vault from 1.15.1 to 1.17.1

Release notes

Sourced from vault's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the version to 1.17.0.

🐝 New Module: HiveMQ (#4797) @​YannickWeber

Having started its Open Source life as its own 3rd-party Testcontainers library, we are very happy to welcome HiveMQ into the main repository. Now, using HiveMQ as part of your integration tests is as simple as a couple of lines of Java code:

@Container
HiveMQContainer hivemq = new HiveMQContainer(DockerImageName.parse("hivemq/hivemq-ce:2021.3"));
hivemq.start();
Mqtt5BlockingClient client = Mqtt5Client.builder()
.serverPort(hivemqCe.getMqttPort())
.serverHost(hivemqCe.getHost())
.buildBlocking();
client.connect();

Check out the docs to learn more about its many features!

💀 Ryuk JVM mode (#4959) (#4960) @​bsideup

Many Testcontainers user love the convenience Ryuk brings to Testcontainers: No matter what you do in your integration tests, Ryuk has got you covered and will cleanup all Docker resources created by Testcontainers after your test run is finished.

But some users operate Testcontainers in environments which do not support our container-based Ryuk implementation. So far their only option was to disable Ryuk alltogether.

Coming with this release, Testcontainers will now fallback to a JVM based resource-cleanup implementation in case of Ryuk being disabled. While this won't be as robust as the Ryuk container based implementation in all circumstances, it is nevertheless a great addition and acts as a useful compromise.

🚀 Features & Enhancements

... (truncated)

Commits
  • 66e4be2 Fix StackOverflowError in DockerClientFactory#client (#5262)
  • cec4934 Update release docs to contain milestone rename step
  • af83569 Update images and theme for testcontainers.org (#5258)
  • 17407ef Increase default client ping timeout from 5 to 10 seconds (#5254)
  • d93dcea Allow to create a file in container from a Transferable (#3814) (#3815)
  • c7449ed Elasticsearch: Ensure Elasticsearch 8 works OOTB secure as default (#5099)
  • 53e80aa Fix incorrect path for RABBITMQ_CONFIG_FILE (#5184)
  • 734678f Deperecate getContainerIpAddress (#5247)
  • aed4476 Merge pull request #5248 from testcontainers/combined-pr-branch
  • ae6bc93 Merge remote-tracking branch 'origin/dependabot/github_actions/actions/checko...
  • Additional commits viewable in compare view

Updates oracle-xe from 1.15.1 to 1.17.1

Release notes

Sourced from oracle-xe's releases.

1.17.1

What's Changed

🐛 Bug Fixes

📖 Documentation

1.17.0

What's Changed

Highlights

This new version of Testcontainers comes packed with many new features and quality-of-life improvements, so we appropriately bumped the vers...

Description has been truncated

Bumps `testcontainers.version` from 1.15.1 to 1.17.1.

Updates `testcontainers` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `kafka` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `mariadb` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `couchbase` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `neo4j` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `postgresql` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `elasticsearch` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `rabbitmq` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `influxdb` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `vault` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `oracle-xe` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `mysql` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `localstack` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `cassandra` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `clickhouse` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `selenium` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

Updates `pulsar` from 1.15.1 to 1.17.1
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/master/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.15.1...1.17.1)

---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:kafka
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:mariadb
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:couchbase
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:neo4j
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:postgresql
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:elasticsearch
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:rabbitmq
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:influxdb
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:vault
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:oracle-xe
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:mysql
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:localstack
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:cassandra
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:clickhouse
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:selenium
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.testcontainers:pulsar
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Apr 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants