From cbe0bcc9509714779b49a8ed2d9563948dae907e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 21:03:36 +0000 Subject: [PATCH] chore(deps): update rust crate insta to 1.35.1 (#43) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [insta](https://insta.rs/) ([source](https://togithub.com/mitsuhiko/insta)) | dev-dependencies | minor | `1.31.0` -> `1.35.1` | --- ### Release Notes
mitsuhiko/insta (insta) ### [`v1.35.1`](https://togithub.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1351) [Compare Source](https://togithub.com/mitsuhiko/insta/compare/1.35.0...1.35.1) - Fixed a bug with diffs showing bogus newlines. ### [`v1.35.0`](https://togithub.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1350) [Compare Source](https://togithub.com/mitsuhiko/insta/compare/1.34.0...1.35.0) - Fixed a crash when a file named `.config` was in the root. - Added new alternative `match .. { ... }` syntax to redactions for better `rustfmt` support. ([#​428](https://togithub.com/mitsuhiko/insta/issues/428)) - The `--package` parameter can be supplied multiple times now. ([#​427](https://togithub.com/mitsuhiko/insta/issues/427)) - Leading newlines in snapshots are now ignored to resolve issues with inline snapshots that were never able to match. ([#​444](https://togithub.com/mitsuhiko/insta/issues/444)) - `cargo insta test` now accepts the `--test` parameter multiple times. ([#​437](https://togithub.com/mitsuhiko/insta/issues/437)) ### [`v1.34.0`](https://togithub.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1340) [Compare Source](https://togithub.com/mitsuhiko/insta/compare/1.33.0...1.34.0) - Snapshots are now sorted in the UI on review. ([#​413](https://togithub.com/mitsuhiko/insta/issues/413)) - Re-organized repository to move `cargo-insta` into a workspace. ([#​410](https://togithub.com/mitsuhiko/insta/issues/410)) - Fixed handling of `--manifest-path` with regards to virtual workspaces. ([#​409](https://togithub.com/mitsuhiko/insta/issues/409)) ### [`v1.33.0`](https://togithub.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1330) [Compare Source](https://togithub.com/mitsuhiko/insta/compare/1.32.0...1.33.0) - Added `--all-targets` parameter support to `cargo insta test`. ([#​408](https://togithub.com/mitsuhiko/insta/issues/408)) ### [`v1.32.0`](https://togithub.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1320) [Compare Source](https://togithub.com/mitsuhiko/insta/compare/1.31.0...1.32.0) - Added `--profile` parameter support to `cargo insta test`.
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/zharinov/verver). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 14f4ace..64b5ffb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ winnow = "0.4.7" [dev-dependencies] rstest = "0.18.2" -insta = { version = "1.31.0", features = ["yaml"] } +insta = { version = "1.35.1", features = ["yaml"] } serde = "1.0.197" itertools = "0.11.0"