chore(deps): update dependency spatie/phpunit-snapshot-assertions to v5 - #58
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency spatie/phpunit-snapshot-assertions to v5#58renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
March 15, 2023 19:12
919e55c to
903e6b4
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
January 17, 2024 18:56
903e6b4 to
7b98607
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
2 times, most recently
from
August 9, 2024 00:28
98583ed to
33f36ca
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
5 times, most recently
from
September 4, 2024 03:25
fdfe72a to
eda1497
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
6 times, most recently
from
September 4, 2024 03:50
6e091e9 to
b0b54a5
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
September 4, 2024 18:45
b0b54a5 to
6bc481b
Compare
thomaspoignant
approved these changes
Oct 2, 2024
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
November 3, 2024 14:16
6bc481b to
aa3d4d0
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
January 22, 2025 15:34
aa3d4d0 to
7c3a076
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
3 times, most recently
from
January 29, 2025 09:17
235426a to
5e2c0a9
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
February 10, 2025 08:31
5e2c0a9 to
b2c7be3
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
November 19, 2025 15:50
b2c7be3 to
937ece7
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
11 times, most recently
from
December 24, 2025 04:47
13a234a to
e97ba08
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
3 times, most recently
from
January 5, 2026 14:08
374cdc2 to
9b4819d
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
2 times, most recently
from
July 27, 2026 13:11
d4226a9 to
c256d71
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #58 +/- ##
==========================================
+ Coverage 69.91% 72.30% +2.39%
==========================================
Files 44 44
Lines 708 715 +7
==========================================
+ Hits 495 517 +22
+ Misses 213 198 -15 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
from
July 27, 2026 13:29
c256d71 to
9f904c9
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
2 times, most recently
from
August 24, 2026 18:52
68bfc7c to
bcf28b1
Compare
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
2 times, most recently
from
August 27, 2026 12:23
98f3e2c to
45b5902
Compare
renovate
Bot
deleted the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
August 31, 2026 20:33
renovate
Bot
force-pushed
the
renovate/spatie-phpunit-snapshot-assertions-5.x
branch
2 times, most recently
from
September 1, 2026 18:50
45b5902 to
ca7d600
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^4.2→^5.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
spatie/phpunit-snapshot-assertions (spatie/phpunit-snapshot-assertions)
v5.4.0Compare Source
What's Changed
vendor/bin/update-snapshotswrapper binary that setsUPDATE_SNAPSHOTS=trueand runs PHPUnit. This replaces the previously documentedphpunit -d --update-snapshotssyntax, which abused PHPUnit's-dflag and produces aFailed to set "--update-snapshots=1"test runner warning since PHPUnit 12.5.12.phpunit -d --without-creating-snapshotsform from the README. Use theCREATE_SNAPSHOTS=falseenvironment variable instead. The argv check is kept inshouldCreateSnapshots()for backwards compatibility.UPDATE_SNAPSHOTSenv var state on shutdown, so it does not leak a state mutation to any in-process code that runs after PHPUnit.shouldUpdateSnapshots()andshouldCreateSnapshots()now check the env var first, then fall back to the legacy CLI argument.AssertionFailedErrorare tracked as a test failure even when user code catches the exception. TheexpectFailhelper now uses a plainRuntimeExceptioncarrying the expected message.Closes #242.
Full Changelog: spatie/phpunit-snapshot-assertions@5.3.2...5.4.0
v5.3.2Compare Source
What's Changed
vendor/bin/update-snapshotswrapper binary that setsUPDATE_SNAPSHOTS=trueand runs PHPUnit. This replaces the previously documentedphpunit -d --update-snapshotssyntax, which abused PHPUnit's-dflag and produces aFailed to set "--update-snapshots=1"test runner warning since PHPUnit 12.5.12.phpunit -d --without-creating-snapshotsform from the README. Use theCREATE_SNAPSHOTS=falseenvironment variable instead. The argv check is kept inshouldCreateSnapshots()for backwards compatibility.UPDATE_SNAPSHOTSenv var state on shutdown, so it does not leak a state mutation to any in-process code that runs after PHPUnit.shouldUpdateSnapshots()andshouldCreateSnapshots()now check the env var first, then fall back to the legacy CLI argument.AssertionFailedErrorare tracked as a test failure even when user code catches the exception. TheexpectFailhelper now uses a plainRuntimeExceptioncarrying the expected message.Closes #242.
Full Changelog: spatie/phpunit-snapshot-assertions@5.3.2...5.4.0
v5.3.1Compare Source
What's Changed
v5.3.0Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.2.3...5.3.0
v5.2.3Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.2.3...5.3.0
v5.2.2Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.2.2...5.2.3
v5.2.1Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.2.1...5.2.2
v5.2.0Compare Source
What's Changed
assertMatchesJsonSnapshotto accept any JSON-serializable value by @LuckyWindsck in #216New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.2.0...5.2.1
v5.1.8Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.8...5.2.0
v5.1.7Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.7...5.1.8
v5.1.6Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.6...5.1.7
v5.1.5Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.5...5.1.6
v5.1.4Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.4...5.1.5
v5.1.3Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.3...5.1.4
v5.1.2Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.2...5.1.3
v5.1.1Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.1.1...5.1.2
v5.1.0Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.0.2...5.1.0
v5.0.2Compare Source
What's Changed
Full Changelog: spatie/phpunit-snapshot-assertions@5.0.2...5.1.0
v5.0.1Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.0.0...5.0.1
v5.0.0Compare Source
What's Changed
New Contributors
Full Changelog: spatie/phpunit-snapshot-assertions@5.0.0...5.0.1
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.