-
Notifications
You must be signed in to change notification settings - Fork 159
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
Fixes recursive dict encoding #394
Fixes recursive dict encoding #394
Conversation
Wouldn't this still fail on dicts and lists with more than one level of nesting? I believe this type check should be done in |
You are absolutely right. I have now fixed it and changed the test to catch this case as well. |
@matt035343 could you sync your branch with master, so CI runs again w/o py3.6? |
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [dataclasses-json](https://togithub.com/lidatong/dataclasses-json) | `0.5.7` -> `0.5.8` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>lidatong/dataclasses-json</summary> ### [`v0.5.8`](https://togithub.com/lidatong/dataclasses-json/releases/tag/v0.5.8) [Compare Source](https://togithub.com/lidatong/dataclasses-json/compare/v0.5.7...v0.5.8) #### What's Changed - [#​341](https://togithub.com/lidatong/dataclasses-json/issues/341): Fixes for type-parameters without arguments by [@​USSX-Hares](https://togithub.com/USSX-Hares) in [https://github.com/lidatong/dataclasses-json/pull/346](https://togithub.com/lidatong/dataclasses-json/pull/346) - ci: disable 3.6 by [@​lidatong](https://togithub.com/lidatong) in [https://github.com/lidatong/dataclasses-json/pull/400](https://togithub.com/lidatong/dataclasses-json/pull/400) - ci: bump gh action by [@​lidatong](https://togithub.com/lidatong) in [https://github.com/lidatong/dataclasses-json/pull/403](https://togithub.com/lidatong/dataclasses-json/pull/403) - Update usage of mypy.main in test following updates to mypy package by [@​rpmcginty](https://togithub.com/rpmcginty) in [https://github.com/lidatong/dataclasses-json/pull/374](https://togithub.com/lidatong/dataclasses-json/pull/374) - Fixes recursive dict encoding by [@​matt035343](https://togithub.com/matt035343) in [https://github.com/lidatong/dataclasses-json/pull/394](https://togithub.com/lidatong/dataclasses-json/pull/394) - Removes unused type variables in api.py by [@​matt035343](https://togithub.com/matt035343) in [https://github.com/lidatong/dataclasses-json/pull/415](https://togithub.com/lidatong/dataclasses-json/pull/415) - Documentation: added example of global_config by [@​nr23](https://togithub.com/nr23) in [https://github.com/lidatong/dataclasses-json/pull/189](https://togithub.com/lidatong/dataclasses-json/pull/189) - ci: add publish to gh action workflow by [@​lidatong](https://togithub.com/lidatong) in [https://github.com/lidatong/dataclasses-json/pull/421](https://togithub.com/lidatong/dataclasses-json/pull/421) #### New Contributors - [@​rpmcginty](https://togithub.com/rpmcginty) made their first contribution in [https://github.com/lidatong/dataclasses-json/pull/374](https://togithub.com/lidatong/dataclasses-json/pull/374) - [@​matt035343](https://togithub.com/matt035343) made their first contribution in [https://github.com/lidatong/dataclasses-json/pull/394](https://togithub.com/lidatong/dataclasses-json/pull/394) - [@​nr23](https://togithub.com/nr23) made their first contribution in [https://github.com/lidatong/dataclasses-json/pull/189](https://togithub.com/lidatong/dataclasses-json/pull/189) **Full Changelog**: lidatong/dataclasses-json@v0.5.7...v0.5.8 </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://app.renovatebot.com/dashboard#github/ixm-one/pytest-cmake-presets). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Fixes #391, please refer to this issue for a detailed description of what is fixed in this pull request.
I implemented both a fix to the encoding and added tests that will capture the behaviour.