Add DeprecatedDict mapping#243
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #243 +/- ##
==========================================
+ Coverage 94.59% 94.73% +0.14%
==========================================
Files 51 51
Lines 3883 4007 +124
==========================================
+ Hits 3673 3796 +123
- Misses 210 211 +1 ☔ View full report in Codecov by Harness. |
taranu
reviewed
Jul 8, 2026
DeprecatedDict is a dict that warns the first time a deprecated key is read or written through targeted single-key access, while leaving bulk operations (copy, iterate, serialize, merge) silent. It eases migrating a field out of a mapping and onto a typed attribute while keeping the old key readable during a deprecation period.
Member
|
@fred3m I'm confused as to how you deleted the PR template for this repo that was asking you to make sure you had included a news fragment for the release notes... |
Contributor
Author
|
Sorry, I didn't think that this was a release notes worthy addition. |
Member
|
For utils a whole new API is definitely release notes worthy 😄 |
Member
|
I'll try to remember to add a note about it next week when I make the v30 release. |
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.
DeprecatedDict is a dict that warns the first time a deprecated key is read or written through targeted single-key access, while leaving bulk operations (copy, iterate, serialize, merge) silent. It eases migrating a field out of a mapping and onto a typed attribute while keeping the old key readable during a deprecation period.