Skip to content

Commit dcbb11f

Browse files
max-sixtyclaude
andauthored
Prepare release 1.44.3 (#838)
## Summary - Fix regression in 1.44.2: merge conflict detection too aggressive (#832) - Fix regression in 1.42.2: inline snapshot corruption with code before macro (#833) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent 3b9ec12 commit dcbb11f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
All notable changes to insta and cargo-insta are documented here.
44

5-
## Unreleased
5+
## 1.44.3
6+
7+
- Fix a regression in 1.44.2 where merge conflict detection was too aggressive, incorrectly flagging snapshot content containing `======` or similar patterns as conflicts. #832
8+
- Fix a regression in 1.42.2 where inline snapshot updates would corrupt the file when code preceded the macro (e.g., `let output = assert_snapshot!(...)`). #833
69

710
## 1.44.2
811

Cargo.lock

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

cargo-insta/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-insta"
3-
version = "1.44.2"
3+
version = "1.44.3"
44
license = "Apache-2.0"
55
authors = ["Armin Ronacher <[email protected]>"]
66
description = "A review tool for the insta snapshot testing library for Rust"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
rust-version = "1.65.0"
1515

1616
[dependencies]
17-
insta = { version = "=1.44.2", path = "../insta", features = [
17+
insta = { version = "=1.44.3", path = "../insta", features = [
1818
"json",
1919
"yaml",
2020
"redactions",

insta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "insta"
3-
version = "1.44.2"
3+
version = "1.44.3"
44
license = "Apache-2.0"
55
authors = ["Armin Ronacher <[email protected]>"]
66
description = "A snapshot testing library for Rust"

0 commit comments

Comments
 (0)