Changelog
All notable changes to insta and cargo-insta are documented here.
1.7.0
- Added support for u128/i128. (#169)
- Normalize newlines to unix before before asserting. (#172)
- Switch diffing to patience. (#173)
1.6.3
- Fix a bug with empty lines in inline snapshots. (#166)
1.6.2
- Lower Rust support to 1.41.0 (#165)
1.6.1
- Bump similar dependency to reintroduce support for Rust 1.43.0 (#162)
- Fixed custom extension support in cargo-insta (#163)
1.6.0
- Change CSV serialization format to format multiple structs as multiple rows. (#156)
- Improvements to diff rendering.
- Detect some snapshot name clashes. (#159)
1.5.3
- Replace difference with similar.
1.5.2
- API documentation updates.
1.5.1
- Fixed glob not working correctly.
- Fail by default if glob is not returning any matches. Fixes #151.
1.5.0
- Add
pending-snapshots
parameter tocargo-insta
. cargo-insta
now honors ignore files. This can be overridden with--no-ignore
.cargo-insta
now supports the vscode extension.
1.4.0
- Add
--delete-unreferenced-snapshots
parameter tocargo-insta
. - Switch to the
globset
crate for theglob
feature. - When
INSTA_UPDATE
is set toalways
orunseen
it won't fail on execution. - Changed informational outputs also show on pass.
1.3.0
- Expose more useful methods from
Content
. - Fixes for latest rustc version.
1.2.0
- Fix invalid offset calculation for inline snapshot (#137)
- Added support for newtype variant redactions. (#139)
1.1.0
- Added the
INSTA_SNAPSHOT_REFERENCES_FILE
environment variable to support deletions of unreferenced snapshot files. (#136) - Added support for TOML serializations.
- Avoid diff calculation on large input files. (#135)
- Added
prepend_module_to_snapshot
flag to disable prepending of module names to snapshot files. (#133) - Made
console
dependency optional. Thecolors
feature can be disabled now which disables colored output.
1.0.0
- Globs now follow links (#132)
- Added CSV Support (#134)
- Changed globs to also include directories not just files.
- Support snapshots outside source folder. (#70)
- Update RON to 0.6.
0.16.1
- Add
Settings::bind_async
when theasync
feature is enabled. (#121) - Bumped
console
dependency to 0.11. (#124) - Fixed incorrect path handling for
glob!
. (#123) - Remove
cargo-insta
from workspace and addCargo.lock
. (#116)
0.16.0
- Made snapshot names optional for inline snapshots. (#106)
- Remove legacy macros. (#115)
- Made small improvements to cargo-insta's messaging and flags (#114)
- Added new logo.
- Added
glob
support. (#112) - Made
MetaData
fields internal. (#111)
0.15.0
- Added test output control (
INSTA_OUTPUT
envvar). (#103)
0.14.0
- Dependency bump for
console
(lowers total dependency count) - Change binary name to
cargo insta
in help pages.
0.13.1
- Added support for
INSTA_UPDATE=unseen
to write out unseen snapshots without review (#96) - Added the
backtrace
feature which adds support for test name (and thus snapshot name) recovery from the backtrace if rust-test is not used in concurrent mode (#94, #98)
0.13
- Add support for deep wildcard matches (#92)
- Use module paths for test names (#87)
- Do not emit useless indentations for empty lines (#88)
0.12
- Improve redactions support (#81)
- Deprecated macros are now hidden
- Reduce number of dependencies further.
- Added support for newtype struct redactions.
- Fixed bugs with recursive content operations (#80)
0.11
- redactions are now an optional feature that must be turned on to be used (
redactions
). - RON format is now an optional feature that must be turned on to be used (
ron
). - added support for sorting maps before serialization.
- added settings support.
- added support for overriding the snapshot path.
- correctly handle nested macros that might contain inline snapshots.
- use thread name as snapshot name for inline snapshots.
- use leading whitespace normalization for inline snapshots.
- removed
creator
andcreated
field from snapshot metadata. - removed the
_matches
suffix from all macros. - added an
--accept
option tocargo insta test
- added
--force-update-snapshots
option tocargo insta test
- added
--jobs
and--release
argument tocargo insta test
.
To upgrade to the new insta macros and snapshot formats you can use
fastmod
and cargo-insta
together:
$ cargo install fastmod
$ cargo install cargo-insta
$ fastmod '\bassert_([a-z]+_snapshot)_matches!' 'assert_${`}!' -e rs --accept-all
$ cargo insta test --all --force-update-snapshots --accept
Found an issue?
You can
edit this page
on GitHub.