Skip to content

Commit c61d9c6

Browse files
Update Rust crate compact_str to 0.9.0 (#16785)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [compact_str](https://redirect.github.com/ParkMyCar/compact_str) | workspace.dependencies | minor | `0.8.0` -> `0.9.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>ParkMyCar/compact_str (compact_str)</summary> ### [`v0.9.0`](https://redirect.github.com/ParkMyCar/compact_str/blob/HEAD/CHANGELOG.md#090) [Compare Source](https://redirect.github.com/ParkMyCar/compact_str/compare/v0.8.1...v0.9.0) ##### February 24, 2025 #### Breaking Changes 💥 - Removed deprecated methods `CompactString::new_inline(...)` and `CompactString::from_static_str(...)`. - Implemented in [`fix: delete methods that are documented as deprecated in v0.9.0`](https://redirect.github.com/ParkMyCar/compact_str/pull/429) - Changed the `CompactStringExt::join_compact` and `CompactStringExt::concat_compact` to take a reference (i.e. `&C`) to a type `C: IntoIterator<Item = &str>` instead of ownership of a type `C` where `&C: IntoIterator<Item = &str>`. - Fixed [`issue#412`](https://redirect.github.com/ParkMyCar/compact_str/issues/412) which made the `CompactStringExt` more ergonomic. - Implemented in [`feat: tweak the CompactStringExt trait so join_compact and concat_compact work better`](https://redirect.github.com/ParkMyCar/compact_str/pull/418) #### Changes - Fixed the `borsch` feature in `no_std` environments. - Implemented in [`fix: The borsch feature with no-std`](https://redirect.github.com/ParkMyCar/compact_str/pull/428). - Implemented the [`zeroize::Zeroize`](https://crates.io/crates/zeroize) trait for `CompactString`. - Implemented in [`feat: Add support for zeroize::Zeroize`](https://redirect.github.com/ParkMyCar/compact_str/pull/421). - Fixed the `CompactString::retain` method to not set length if the predicate panics. - Implemented in [`fix: retain not set len if predicate panics`](https://redirect.github.com/ParkMyCar/compact_str/pull/413). - Implement `sqlx::postgres::PgHasArrayType` for `CompactString`. - Implemented in [`impl sqlx::postgres::PgHasArrayType`](https://redirect.github.com/ParkMyCar/compact_str/pull/399). - Bump the [`markup`](https://crates.io/crates/markup) dependency to `v0.15`. - Implemented in [`deps: upgrade to markup v0.8`](https://redirect.github.com/ParkMyCar/compact_str/pull/415). - Bump the [`rkyv`](https://crates.io/crates/rkyv) dependency to `v0.8`. - Implemented in [`deps: upgrade to rkyv v0.8`](https://redirect.github.com/ParkMyCar/compact_str/pull/409). - Bump the [`sqlx`](https://crates.io/crates/sqlx) dependency to `v0.8`. - Implemented in [`deps: upgrade to sqlx v0.8`](https://redirect.github.com/ParkMyCar/compact_str/pull/408). </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **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 this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/ruff). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJpbnRlcm5hbCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Micha Reiser <[email protected]>
1 parent 43d371a commit c61d9c6

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

Cargo.lock

Lines changed: 18 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ colored = { version = "3.0.0" }
6363
console_error_panic_hook = { version = "0.1.7" }
6464
console_log = { version = "1.0.0" }
6565
countme = { version = "3.0.1" }
66-
compact_str = "0.8.0"
66+
compact_str = "0.9.0"
6767
criterion = { version = "0.5.1", default-features = false }
6868
crossbeam = { version = "0.8.4" }
6969
dashmap = { version = "6.0.1" }

0 commit comments

Comments
 (0)