-
Notifications
You must be signed in to change notification settings - Fork 154
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
feat: support abstract collections #532
feat: support abstract collections #532
Conversation
4c6ab39
to
7e19a59
Compare
Hey @george-zubrienko, |
Hey @PJCampi! I'll do it in the evening today - thanks a lot for keeping things in check! |
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.
LGTM, minor style comment - will auto-approve once you commit :)
5927478
to
2d0cd4f
Compare
@PJCampi released in 0.6.7 |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [dataclasses-json](https://togithub.com/lidatong/dataclasses-json) ([changelog](https://togithub.com/lidatong/dataclasses-json/releases)) | `0.6.6` -> `0.6.7` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/dataclasses-json/0.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/dataclasses-json/0.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/dataclasses-json/0.6.6/0.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/dataclasses-json/0.6.6/0.6.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>lidatong/dataclasses-json (dataclasses-json)</summary> ### [`v0.6.7`](https://togithub.com/lidatong/dataclasses-json/releases/tag/v0.6.7) [Compare Source](https://togithub.com/lidatong/dataclasses-json/compare/v0.6.6...v0.6.7) #### What's Changed - feat: support abstract collections by [@​PJCampi](https://togithub.com/PJCampi) in [https://github.com/lidatong/dataclasses-json/pull/532](https://togithub.com/lidatong/dataclasses-json/pull/532) - Warn about buggy type resolution by [@​DavidCain](https://togithub.com/DavidCain) in [https://github.com/lidatong/dataclasses-json/pull/529](https://togithub.com/lidatong/dataclasses-json/pull/529) #### New Contributors - [@​DavidCain](https://togithub.com/DavidCain) made their first contribution in [https://github.com/lidatong/dataclasses-json/pull/529](https://togithub.com/lidatong/dataclasses-json/pull/529) **Full Changelog**: lidatong/dataclasses-json@v0.6.6...v0.6.7 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ixm-one/pytest-cmake-presets). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZTpkZXBlbmRlbmNpZXMiXX0=--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Typing with abstract collections rather than concrete implementations typically make for a looser and contract based API.
This PR implements decoding to an abstract collections by selecting an implementation that conforms to the abstraction.