Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update python dev-dependencies #314

Merged
merged 1 commit into from
Dec 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
inline-snapshot (changelog) >=0.14.0 -> >=0.16.0 age adoption passing confidence
nonebug (source) >=0.4.2 -> >=0.4.3 age adoption passing confidence
poethepoet >=0.31.0 -> >=0.31.1 age adoption passing confidence

Release Notes

15r10nk/inline-snapshot (inline-snapshot)

v0.16.0

Compare Source

Added

  • inline_snapshot.extra.warns to captures warnings and compares them against expected warnings.
    def test_warns():
        with warns(snapshot([(8, "UserWarning: some problem")]), include_line=True):
            warn("some problem")

v0.15.1

Compare Source

Fixed

  • solved a bug caused by a variable inside a snapshot (#​148)

v0.15.0

Compare Source

Added

  • snapshots inside snapshots are now supported.

    assert get_schema() == snapshot(
        [
            {
                "name": "var_1",
                "type": snapshot("int") if version < 2 else snapshot("string"),
            }
        ]
    )
  • runtime values can now be part of snapshots.

    from inline_snapshot import snapshot, Is
    
    current_version = "1.5"
    assert request() == snapshot(
        {"data": "page data", "version": Is(current_version)}
    )
  • f-strings can now also be used within snapshots, but are currently not fixed by inline-snapshot.

Changed

  • dirty-equals expressions are now treated like runtime values or snapshots within snapshots and are not modified by inline-snapshot.

Fixed

  • inline-snapshot checks now if the given command line flags (--inline-snapshot=...) are valid

  • Example(...).run_pytest(raise=snapshot(...)) uses now the flags from the current run and not the flags from the Example.

v0.14.2

Compare Source

Fixed

  • do not crash when handling raw f-strings (rf"",RF"",...) (#​143)

v0.14.1

Compare Source

Fixed

  • Don't crash for snapshots like snapshot(f"") (#​139)
    It first appeared with pytest-8.3.4, but already existed before for cpython-3.11.
    f-strings in snapshots are currently not official supported, but they should not lead to crashes.

  • skip formatting if black returns an error (#​138)

nonebot/nonebug (nonebug)

v0.4.3: Release 0.4.3

Compare Source

What's Changed

Full Changelog: nonebot/nonebug@v0.4.2...v0.4.3

nat-n/poethepoet (poethepoet)

v0.31.1: 0.31.1

Compare Source

Fixes

Full Changelog: nat-n/poethepoet@v0.31.0...v0.31.1


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Dec 5, 2024
Copy link

codecov bot commented Dec 5, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 92.77%. Comparing base (18164bf) to head (8cb4001).
Report is 1 commits behind head on main.

✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #314   +/-   ##
=======================================
  Coverage   92.77%   92.77%           
=======================================
  Files          41       41           
  Lines        2201     2201           
=======================================
  Hits         2042     2042           
  Misses        159      159           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/python-dev-dependencies branch 3 times, most recently from a80094f to 17d2835 Compare December 10, 2024 22:00
@he0119 he0119 enabled auto-merge (squash) December 11, 2024 12:17
@renovate renovate bot force-pushed the renovate/python-dev-dependencies branch from 17d2835 to 8cb4001 Compare December 12, 2024 07:51
@he0119 he0119 merged commit 9a1cbac into main Dec 12, 2024
6 of 7 checks passed
@he0119 he0119 deleted the renovate/python-dev-dependencies branch December 12, 2024 07:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant