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

Update testcontainersVersion to v1.17.1 (minor) #1955

Merged
merged 1 commit into from
Apr 19, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 16, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.testcontainers:junit-jupiter (source) 1.16.3 -> 1.17.1 age adoption passing confidence
org.testcontainers:postgresql (source) 1.16.3 -> 1.17.1 age adoption passing confidence

Release Notes

testcontainers/testcontainers-java

v1.17.1

Compare Source

What's Changed
🐛 Bug Fixes
📖 Documentation

v1.17.0

Compare Source

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
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
📦 Dependency updates
Click to expand...

Configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

Signed-off-by: Renovate Bot <bot@renovateapp.com>
@codecov
Copy link

codecov bot commented Apr 16, 2022

Codecov Report

Merging #1955 (c28d055) into main (20b9862) will not change coverage.
The diff coverage is n/a.

@@            Coverage Diff            @@
##               main    #1955   +/-   ##
=========================================
  Coverage     78.09%   78.09%           
  Complexity      944      944           
=========================================
  Files           193      193           
  Lines          5249     5249           
  Branches        418      418           
=========================================
  Hits           4099     4099           
  Misses          705      705           
  Partials        445      445           

📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more

@wslulciuc wslulciuc merged commit 2901e25 into main Apr 19, 2022
@wslulciuc wslulciuc deleted the renovate/testcontainersversion branch April 19, 2022 07:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants