Skip to content

Update testcontainersVersion to v1.17.6 - autoclosed

Klimabänder Bot requested to merge renovate/testcontainersversion into master

This MR contains the following updates:

Package Type Update Change
org.testcontainers:localstack (source) Test patch 1.17.5 -> 1.17.6
org.testcontainers:mongodb (source) Test patch 1.17.5 -> 1.17.6

Dependency Lookup Warnings

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

testcontainers/testcontainers-java

v1.17.6

Compare Source

What's Changed
Highlights

This release has been made possible through the efforts of 20 contributors. The Testcontainers does not cease to amaze us, thanks to everyone of you and thanks for the ongoing support and collaboration 🥰.

This release brings a lot of database love with 2 new modules, and as always a couple of bug fixes and improvements

New Module: QuestDB (#​5995) @​Vangreen

QuestDB, is a high-performance, open-source SQL database for applications in financial services, IoT, machine learning, DevOps and observability.

var container = new QuestDBContainer("questdb/questdb:6.5.3")
container.start()
var connectionUrl = container.getHttpUrl()
// use the connectionUrl and start testing!
New Module: YugabyteDB (#​4372) @​srinivasa-vasu

YugabyteDB, is a modern distributed SQL database for transactional cloud native applications. PostgreSQL compatible. It offers two APIs, SQL and CQL.

var container = new YugabyteDBYSQLContainer("yugabytedb/yugabyte:2.14.4.0-b26");
container.start()
var jdbcUrl = container.getJdbcUrl();
// use the jdbcUrl and start testing!
var container = new YugabyteDBYCQLContainer("yugabytedb/yugabyte:2.14.4.0-b26");
container.start()
var contactPoint = container.getContactPoint();
// use the contactPoint and start testing!
🚀 Features & Enhancements
🐛 Bug Fixes
📖 Documentation
🧹 Housekeeping
📦 Dependency updates
9 changes * Ignore updates for org.neo4j:neo4j (#​6112) @​eddumelendez * Combined dependencies MR (#​6210) @​eddumelendez * Combined dependencies MR (#​6205) @​eddumelendez * Combined dependencies MR (#​6173) @​eddumelendez * Combined dependencies MR (#​6153) @​eddumelendez * Combined dependencies MR (#​6150) @​eddumelendez

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

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


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

This MR has been generated by Renovate Bot.

Merge request reports

Loading