Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2025

This PR contains the following updates:

Package Change Age Confidence
frozendict ==2.3.* -> ==2.4.* age confidence

Release Notes

Marco-Sulla/python-frozendict (frozendict)

v2.4.6

Compare Source

  • Added pure py wheel for Python 3.13
  • Now set, setdefault and delete does always a shallow copy, as the C extension, tuple and the rest of the world.

Full Changelog: Marco-Sulla/python-frozendict@v2.4.5...v2.4.6

v2.4.5

Compare Source

What's Changed

Full Changelog: Marco-Sulla/python-frozendict@v2.4.4...v2.4.5

v2.4.4: frozendict v2.4.4

Compare Source

Added typing for deepfreeze, register and unregister (see #​99)

Full Changelog: Marco-Sulla/python-frozendict@v2.4.3...v2.4.4

v2.4.3: frozendict v2.4.3

Compare Source

  • Now enums are not modified by deepfreeze (see #​98)

Full Changelog: Marco-Sulla/python-frozendict@v2.4.2...v2.4.3

v2.4.2: frozendict v2.4.2

Compare Source

deepfreeze doesn't change anymore the original object, by @​kenodegard in #​97

Full Changelog: Marco-Sulla/python-frozendict@v2.4.1...v2.4.2

v2.4.1: frozendict v2.4.1

Compare Source

What's Changed

New Contributors

Full Changelog: Marco-Sulla/python-frozendict@v2.4.0...v2.4.1

v2.4.0: frozendict 2.4.0

Compare Source

Implemented deepfreeze, a function that let you transform any object, nested at any level, in a frozen one. Check the docs.

Full Changelog: Marco-Sulla/python-frozendict@v2.3.10...v2.4.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@sourcery-ai
Copy link

sourcery-ai bot commented Mar 26, 2025

Reviewer's Guide by Sourcery

This pull request updates the frozendict dependency to version 2.4.*. The changes are reflected in pyproject.toml and uv.lock.

Updated class diagram for frozendict

classDiagram
    class frozendict {
        <<class>>
        +__init__(self, arg: Iterable = None, /, **kwargs) : None
        +copy() : frozendict
        +__hash__() : int
        +__repr__() : str
        +__bool__() : bool
        +__len__() : int
        +__iter__() : Iterator
        +__contains__(key) : bool
        +get(key, default = None)
        +items() : ItemsView
        +keys() : KeysView
        +values() : ValuesView
        +deepfreeze(obj)
        +register(type, converter)
        +unregister(type)
        +set(key, value) : frozendict
        +setdefault(key, value) : frozendict
        +delete(key) : frozendict
    }
    note for frozendict "frozendict v2.4.* includes performance improvements to set, setdefault, and delete methods, typing for deepfreeze, register and unregister, and a deepfreeze function that transforms any object into a frozen one."
Loading

File-Level Changes

Change Details Files
The pull request updates the frozendict dependency from version 2.3.* to 2.4.*.
  • Updated the frozendict dependency version in pyproject.toml.
  • Updated the frozendict dependency version in uv.lock.
pyproject.toml
uv.lock

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!

@renovate renovate bot force-pushed the renovate/frozendict-2.x branch from 02cf6fd to 2d57c17 Compare April 8, 2025 13:13
@renovate renovate bot force-pushed the renovate/frozendict-2.x branch from 2d57c17 to a0c065b Compare July 21, 2025 19:28
@renovate renovate bot force-pushed the renovate/frozendict-2.x branch from a0c065b to 9b85840 Compare August 10, 2025 13:14
@renovate renovate bot force-pushed the renovate/frozendict-2.x branch from 9b85840 to ac93485 Compare August 19, 2025 12:47
@renovate renovate bot changed the title fix(deps): update dependency frozendict to ==2.4.* chore(deps): update dependency frozendict to ==2.4.* Aug 19, 2025
@renovate renovate bot force-pushed the renovate/frozendict-2.x branch from ac93485 to 9a00e3e Compare August 24, 2025 10:39
@renovate renovate bot changed the title chore(deps): update dependency frozendict to ==2.4.* fix(deps): update dependency frozendict to ==2.4.* Aug 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant