From 2646eeb7b87fe7d3b54ca2fcb8c89b6fc3580fbb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 19:58:29 +0200 Subject: [PATCH] chore: release v0.11.0 (#221) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `testcontainers-modules`: 0.10.0 -> 0.11.0 (⚠️ API breaking changes) ### ⚠️ `testcontainers-modules` breaking changes ``` --- failure unit_struct_changed_kind: unit struct changed kind --- Description: A public unit struct has been changed to a normal (curly-braces) struct, which cannot be constructed using the same struct literal syntax. ref: https://github.com/rust-lang/cargo/pull/10871 impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/unit_struct_changed_kind.ron Failed in: struct DynamoDb in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/dynamodb_local/mod.rs:8 struct KwokCluster in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/kwok/mod.rs:36 struct CncfDistribution in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/cncf_distribution/mod.rs:30 struct Redis in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/redis/standalone.rs:37 struct RabbitMq in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/rabbitmq/mod.rs:33 struct ElasticMq in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/elasticmq/mod.rs:7 struct VictoriaMetrics in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/victoria_metrics/mod.rs:36 struct RedisStack in /tmp/.tmpSZARLK/testcontainers-rs-modules-community/src/redis/stack.rs:35 ```
Changelog

## [0.11.0] - 2024-09-25 ### Bug Fixes - Update version to fix crashes in CI ([#219](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/219)) - [**breaking**] Make EULA acception explicit ([#218](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/218)) ### Documentation - Add docs for the ganachecli module ([#190](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/190)) ### Features - Add ability to enable properties-config for testcontainers - [**breaking**] Update testcontainers to `0.23.0` ([#216](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/216)) ### Miscellaneous Tasks - Update redis requirement from 0.26.0 to 0.27.2 ([#211](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/211)) - Exclude all-features test run ([#174](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/174)) - Update async-nats requirement from 0.35.0 to 0.36.0 ([#206](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/206)) ### Refactor - [**breaking**] Require the builder pattern for module initalisation ([#161](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/161)) ### Testing - Correct password usage

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 31 +++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03cb221..54826b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,37 @@ All notable changes to this project will be documented in this file. +## [0.11.0] - 2024-09-25 + +### Bug Fixes + +- Update version to fix crashes in CI ([#219](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/219)) +- [**breaking**] Make EULA acception explicit ([#218](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/218)) + +### Documentation + +- Add docs for the ganachecli module ([#190](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/190)) + +### Features + +- Add ability to enable properties-config for testcontainers +- [**breaking**] Update testcontainers to `0.23.0` ([#216](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/216)) + +### Miscellaneous Tasks + +- Update redis requirement from 0.26.0 to 0.27.2 ([#211](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/211)) +- Exclude all-features test run ([#174](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/174)) +- Update async-nats requirement from 0.35.0 to 0.36.0 ([#206](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/206)) + +### Refactor + +- [**breaking**] Require the builder pattern for module initalisation ([#161](https://github.com/testcontainers/testcontainers-rs-modules-community/pull/161)) + +### Testing + +- Correct password usage + + ## [0.10.0] - 2024-08-31 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index 6c11585..e9279e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testcontainers-modules" -version = "0.10.0" +version = "0.11.0" description = "Community maintained modules for Testcontainers for Rust" categories = ["development-tools::testing"] edition = "2021"