chore(deps): update python dev-dependencies#483
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #483 +/- ##
=======================================
Coverage 95.96% 95.96%
=======================================
Files 40 40
Lines 2330 2330
=======================================
Hits 2236 2236
Misses 94 94 ☔ View full report in Codecov by Sentry. |
f5ae643 to
9c5ec1e
Compare
9c5ec1e to
aadbf21
Compare
aadbf21 to
95a6d0b
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:
>=0.32.4→>=0.33.0>=0.4.3→>=0.4.4>=0.42.1→>=0.46.0>=7.0.0→>=7.1.0>=0.22.0→>=0.23.1Release Notes
15r10nk/inline-snapshot (inline-snapshot)
v0.33.0Compare Source
Added
snapshot_arg(), which lets you movesnapshot()calls from the call site into the helper function itself.Example.format(): new method to format a Python file in the example using Black.
Example.is_formatted(): new method to check whether a Python file in the example is already Black-formatted.
Changed
Example.run_inline: exception strings in
raisesare now formatted the same wayinline_snapshot.extra.raisesdoes, which is shorter for small assertions likeraises=snapshot("UsageError: default value cannot be a Custom value").Example.run_inline: the
raises,stderr, andchanged_filesarguments are now handled withsnapshot_arg(), sosnapshot()is no longer needed at the call site.raisesdefaults to"<no exception>"andchanged_filesdefaults to{}.Example.run_inline: the
reported_categoriesargument is now handled withsnapshot_arg()and its type changed fromlist[Category]toset[Category]. It is now only asserted when the reported categories differ from the CLI flags passed viaargs.Example.run_pytest: the
returncode,error,stderr,changed_files, andoutcomesarguments are now handled withsnapshot_arg(), sosnapshot()is no longer needed at the call site.returncodedefaults to0,changed_filesdefaults to{}, andoutcomesdefaults to{"passed": 1}.Example.run_pytest: the
errorassertion is now only performed on Python ≥ 3.11.Example.run_pytest: stdout and stderr are now printed as Rich panels instead of plain text.
extra.raises: the
exceptionargument is now handled withsnapshot_arg(), sosnapshot()is no longer needed at the call site.extra.prints: the
stdoutandstderrarguments are now handled withsnapshot_arg(), sosnapshot()is no longer needed at the call site.extra.warns: the
expected_warningsargument is now handled withsnapshot_arg(), sosnapshot()is no longer needed at the call site.extra.Transformed and extra.transformation: the
valueargument is now handled withsnapshot_arg().Fixed
repr(external_file(...))to use a path relative to the calling file instead of the absolute path, which also fixes incorrect reprs on Windows.v0.32.7Compare Source
Fixed
3 + 3) are preserved when elements are removed from or added to a tuple.v0.32.6Compare Source
Fixed
NewType-typed fields now generate correct snapshots that wrap the field value with theNewTypeconstructor (e.g.Something(some_id=SomeID(1))instead ofSomething(some_id=1)). This could only be fixed for Python >= 3.10.nonebot/nonebug (nonebug)
v0.4.4: Release 0.4.4Compare Source
What's Changed
Full Changelog: nonebot/nonebug@v0.4.3...v0.4.4
nat-n/poethepoet (poethepoet)
v0.46.0: 0.46.0Compare Source
Enhancements
Fixes
Experimental agent skill
This release ships an experimental agent skill that gives AI coding agents contextual knowledge of poe's task API when working in projects that use it. It works with any agent that supports the skills convention and aims to improve agent abilities when it comes to leveraging and authoring poe tasks.
Please try it out and provide feedback!
Two install methods:
Full Changelog: nat-n/poethepoet@v0.45.0...v0.46.0
v0.45.0: 0.45.0Compare Source
Enhancements
Fixes
New Contributors
Full Changelog: nat-n/poethepoet@v0.44.0...v0.45.0
v0.44.0: 0.44.0Compare Source
Enhancements
include#317 by @nat-n in #372Breaking changes**
includeentries, those second-order includes were silently ignored. They are now followed recursively using depth-first loading. This may cause previously ignored config files to be loaded, potentially introducing new tasks or environment variables. To preserve the old behavior for a specific include, setrecursive = falseon that include entry. See the include guide for details.Full Changelog: nat-n/poethepoet@v0.43.0...v0.44.0
v0.43.0: 0.43.0Compare Source
Enhancements
Breaking changes
This release includes a refactor of how task variables are managed, improving boolean arg semantics and introducing private
variables. These changes may affect a small number of existing configurations:
Boolean args now produce unset env vars when false. Previously
falsemapped to the string"False"; now the env var is removed entirely. This gives consistent falsy behavior across shells and parameter expansion operators (:-,:+). Tasks checking for the literal string"False"or usingos.environ["flag"]will need updating.Private env vars are filtered from subprocesses. Variables starting with
_and containing no uppercase characters (e.g._secret) are now treated as private — available for config-time interpolation but excluded from the task subprocess environment. This is unlikely to affect existing configurations, but any task that relies on a subprocess reading a_lowercaseenv var will need to rename it.Private arg option names strip leading underscores. An arg named
_flagwith no explicitoptionsnow generates--flaginstead of--_flag. A new validation rejects duplicate CLI options across args.See the migration guide for details and recommended fixes.
New Contributors
Full Changelog: nat-n/poethepoet@v0.42.1...v0.43.0
lundberg/respx (respx)
v0.23.1Compare Source
Fixed
paramspattern to stop working under some conditions, bydoing a strict detection of
ANYin multi items patterns (#313)CI
v0.23.0Compare Source
Fixed
datapattern with list value (#264)//in URL path by not usingurljoinwhenprepending path, thanks @lewiscollard and @Skeen (#302)
Anyto align with HTTPX, thanks @JacobHayes (#284)ANYinMuitiItemspatterns (#289)CI
Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.