Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mitsuhiko/insta
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.19.1
Choose a base ref
...
head repository: mitsuhiko/insta
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.20.0
Choose a head ref
  • 6 commits
  • 8 files changed
  • 1 contributor

Commits on Sep 11, 2022

  1. Defer glob failures (#284)

    mitsuhiko authored Sep 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    248fc1a View commit details
  2. Added changelog entry

    mitsuhiko committed Sep 11, 2022
    Copy the full SHA
    6be331e View commit details

Commits on Sep 12, 2022

  1. Copy the full SHA
    e7c936c View commit details
  2. Added changelog entry

    mitsuhiko committed Sep 12, 2022
    Copy the full SHA
    3c022af View commit details

Commits on Sep 17, 2022

  1. Copy the full SHA
    c84bf92 View commit details
  2. 1.20.0

    mitsuhiko committed Sep 17, 2022
    Copy the full SHA
    e444bb7 View commit details
Showing with 392 additions and 277 deletions.
  1. +5 −0 CHANGELOG.md
  2. +1 −1 Cargo.toml
  3. +144 −191 cargo-insta/Cargo.lock
  4. +3 −3 cargo-insta/Cargo.toml
  5. +138 −80 cargo-insta/src/cli.rs
  6. +39 −0 src/glob.rs
  7. +5 −0 src/macros.rs
  8. +57 −2 src/runtime.rs
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,11 @@

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

## 1.20.0

- `cargo insta` now supports nextest as test runner. (#285)
- The `glob!` macro now defers failures by default. (#284)

## 1.19.1

- Added support for numeric keys in JSON which regressed in 0.18.0. (#281)
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "insta"
version = "1.19.1"
version = "1.20.0"
license = "Apache-2.0"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
description = "A snapshot testing library for Rust"
Loading