From 1b5e545f1edbd8acc2f143d1d966a629d3d50aa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:14:32 +0200 Subject: [PATCH] chore: release v0.23.0 (#739) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `testcontainers`: 0.22.0 -> 0.23.0 (⚠️ API breaking changes) ### ⚠️ `testcontainers` breaking changes ``` --- failure enum_variant_added: enum variant added on exhaustive enum --- Description: A publicly-visible enum without #[non_exhaustive] has a new variant. ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/enum_variant_added.ron Failed in: variant ClientError:UploadToContainerError in /tmp/.tmpnaUdoG/testcontainers-rs/testcontainers/src/core/client.rs:92 variant ClientError:CopyToContainerError in /tmp/.tmpnaUdoG/testcontainers-rs/testcontainers/src/core/client.rs:94 --- failure trait_method_added: pub trait method added --- Description: A non-sealed public trait added a new method without a default implementation, which breaks downstream implementations of the trait ref: https://doc.rust-lang.org/cargo/reference/semver.html#trait-new-item-no-default impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.35.0/src/lints/trait_method_added.ron Failed in: trait method testcontainers::core::ImageExt::with_copy_to in file /tmp/.tmpnaUdoG/testcontainers-rs/testcontainers/src/core/image/image_ext.rs:62 trait method testcontainers::ImageExt::with_copy_to in file /tmp/.tmpnaUdoG/testcontainers-rs/testcontainers/src/core/image/image_ext.rs:62 ```
Changelog

## [0.23.0] - 2024-09-25 ### Details #### Bug Fixes - Expose public `copy` types ([#734](https://github.com/testcontainers/testcontainers-rs/pull/734)) - Typo in an error variant ([#738](https://github.com/testcontainers/testcontainers-rs/pull/738)) #### Features - Support copy files to container ([#730](https://github.com/testcontainers/testcontainers-rs/pull/730)) - Support copying directories to container ([#735](https://github.com/testcontainers/testcontainers-rs/pull/735)) #### Miscellaneous Tasks - Copy-to-container interface improvements ([#732](https://github.com/testcontainers/testcontainers-rs/pull/732)) #### Refactor - Replace dirs crate with etcetera ([#736](https://github.com/testcontainers/testcontainers-rs/pull/736))

--- 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 | 15 +++++++++++++++ testcontainers/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1b5e7f6..47ca83f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.23.0] - 2024-09-25 +### Details +#### Bug Fixes +- Expose public `copy` types ([#734](https://github.com/testcontainers/testcontainers-rs/pull/734)) +- Typo in an error variant ([#738](https://github.com/testcontainers/testcontainers-rs/pull/738)) + +#### Features +- Support copy files to container ([#730](https://github.com/testcontainers/testcontainers-rs/pull/730)) +- Support copying directories to container ([#735](https://github.com/testcontainers/testcontainers-rs/pull/735)) + +#### Miscellaneous Tasks +- Copy-to-container interface improvements ([#732](https://github.com/testcontainers/testcontainers-rs/pull/732)) + +#### Refactor +- Replace dirs crate with etcetera ([#736](https://github.com/testcontainers/testcontainers-rs/pull/736)) ## [0.22.0] - 2024-08-30 ### Details #### Bug Fixes diff --git a/testcontainers/Cargo.toml b/testcontainers/Cargo.toml index 82cb2713..ef09aa83 100644 --- a/testcontainers/Cargo.toml +++ b/testcontainers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testcontainers" -version = "0.22.0" +version = "0.23.0" categories = ["development-tools::testing"] readme = "README.md" authors.workspace = true