-
Notifications
You must be signed in to change notification settings - Fork 4
fix(deps): update dependency frozendict to ==2.4.* #214
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
base: main
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis pull request updates the Updated class diagram for frozendictclassDiagram
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."
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this 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!
02cf6fd to
2d57c17
Compare
2d57c17 to
a0c065b
Compare
a0c065b to
9b85840
Compare
9b85840 to
ac93485
Compare
ac93485 to
9a00e3e
Compare
This PR contains the following updates:
==2.3.*->==2.4.*Release Notes
Marco-Sulla/python-frozendict (frozendict)
v2.4.6Compare Source
set,setdefaultanddeletedoes always a shallow copy, as the C extension,tupleand the rest of the world.Full Changelog: Marco-Sulla/python-frozendict@v2.4.5...v2.4.6
v2.4.5Compare Source
What's Changed
set,setdefaultanddeletefor pure py impl, iffrozendictis hashableFull Changelog: Marco-Sulla/python-frozendict@v2.4.4...v2.4.5
v2.4.4: frozendict v2.4.4Compare 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.3Compare Source
Full Changelog: Marco-Sulla/python-frozendict@v2.4.2...v2.4.3
v2.4.2: frozendict v2.4.2Compare 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.1Compare Source
What's Changed
New Contributors
Full Changelog: Marco-Sulla/python-frozendict@v2.4.0...v2.4.1
v2.4.0: frozendict 2.4.0Compare 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.
This PR was generated by Mend Renovate. View the repository job log.