quarkus-hibernate-types
quarkus-hibernate-types copied to clipboard
build(deps): bump testcontainers.version from 1.15.3 to 1.17.6
Bumps testcontainers.version from 1.15.3 to 1.17.6.
Updates testcontainers from 1.15.3 to 1.17.6
Release notes
Sourced from testcontainers's releases.
1.17.6
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)
@VangreenQuestDB, 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-vasuYugabyteDB, 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
- InfluxDB v2 support (#3669)
@raminqaf- Add support for flags in DatastoreEmulatorContainer (#5993)
@eddumelendez- Expose Redpanda schema registry (#5994)
@gustavomonarin- Adds the ability to set a target build stage to a Dockerfile (#4810)
@GenghisChen🐛 Bug Fixes
- Fixes wrong timestamp calculation (#5988)
@leblonk- Catch and ignore more errors when reflecting into container subclass (#5990)
@akhaku- Return default for empty environment variable (#5983)
@roulpriya📖 Documentation
- Add Spotify in Donors section (#6083)
@eddumelendez
... (truncated)
Commits
4a2ca13Merge pull request #6212 from testcontainers/combined-pr-branch388af56Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...2748cf8Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...889ea6bAdd yugabytedb to mkdocs.yml (#6211)c174676Bump aws-java-sdk-logs from 1.12.337 to 1.12.343 in /modules/localstackc2abe0dBump aws-java-sdk-s3 from 1.12.337 to 1.12.343 in /modules/localstack11c3079Merge pull request #6210 from testcontainers/combined-pr-branchaed19b8Merge remote-tracking branch 'origin/dependabot/gradle/modules/dynalite/com.a...6633109Merge remote-tracking branch 'origin/dependabot/gradle/modules/gcloud/com.goo...fa867b0Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.jetbrains...- Additional commits viewable in compare view
Updates mysql from 1.15.3 to 1.17.6
Release notes
Sourced from mysql's releases.
1.17.6
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)
@VangreenQuestDB, 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-vasuYugabyteDB, 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
- InfluxDB v2 support (#3669)
@raminqaf- Add support for flags in DatastoreEmulatorContainer (#5993)
@eddumelendez- Expose Redpanda schema registry (#5994)
@gustavomonarin- Adds the ability to set a target build stage to a Dockerfile (#4810)
@GenghisChen🐛 Bug Fixes
- Fixes wrong timestamp calculation (#5988)
@leblonk- Catch and ignore more errors when reflecting into container subclass (#5990)
@akhaku- Return default for empty environment variable (#5983)
@roulpriya📖 Documentation
- Add Spotify in Donors section (#6083)
@eddumelendez
... (truncated)
Commits
4a2ca13Merge pull request #6212 from testcontainers/combined-pr-branch388af56Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...2748cf8Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...889ea6bAdd yugabytedb to mkdocs.yml (#6211)c174676Bump aws-java-sdk-logs from 1.12.337 to 1.12.343 in /modules/localstackc2abe0dBump aws-java-sdk-s3 from 1.12.337 to 1.12.343 in /modules/localstack11c3079Merge pull request #6210 from testcontainers/combined-pr-branchaed19b8Merge remote-tracking branch 'origin/dependabot/gradle/modules/dynalite/com.a...6633109Merge remote-tracking branch 'origin/dependabot/gradle/modules/gcloud/com.goo...fa867b0Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.jetbrains...- Additional commits viewable in compare view
Updates postgresql from 1.15.3 to 1.17.6
Release notes
Sourced from postgresql's releases.
1.17.6
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)
@VangreenQuestDB, 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-vasuYugabyteDB, 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
- InfluxDB v2 support (#3669)
@raminqaf- Add support for flags in DatastoreEmulatorContainer (#5993)
@eddumelendez- Expose Redpanda schema registry (#5994)
@gustavomonarin- Adds the ability to set a target build stage to a Dockerfile (#4810)
@GenghisChen🐛 Bug Fixes
- Fixes wrong timestamp calculation (#5988)
@leblonk- Catch and ignore more errors when reflecting into container subclass (#5990)
@akhaku- Return default for empty environment variable (#5983)
@roulpriya📖 Documentation
- Add Spotify in Donors section (#6083)
@eddumelendez
... (truncated)
Commits
4a2ca13Merge pull request #6212 from testcontainers/combined-pr-branch388af56Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...2748cf8Merge remote-tracking branch 'origin/dependabot/gradle/modules/localstack/com...889ea6bAdd yugabytedb to mkdocs.yml (#6211)c174676Bump aws-java-sdk-logs from 1.12.337 to 1.12.343 in /modules/localstackc2abe0dBump aws-java-sdk-s3 from 1.12.337 to 1.12.343 in /modules/localstack11c3079Merge pull request #6210 from testcontainers/combined-pr-branchaed19b8Merge remote-tracking branch 'origin/dependabot/gradle/modules/dynalite/com.a...6633109Merge remote-tracking branch 'origin/dependabot/gradle/modules/gcloud/com.goo...fa867b0Merge remote-tracking branch 'origin/dependabot/gradle/examples/org.jetbrains...- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)