Skip to content
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

Avoid losing type of UUID when serializing/deserializing #1575

Merged
merged 3 commits into from
Jul 17, 2022

Commits on Jul 14, 2022

  1. Avoid losing type of UUID when serializing/deserializing

    Serializing UUIDs as strs and deserializing them as strs can lead to
    somewhat obscure bugs such as the one that led to the creation of this
    PR in django-cacheback
    codeinthehole/django-cacheback#100 which some
    would call unexpected behaviour.
    
    After all, an UUID is altogether a different type from strs and if
    bytes got their own serializer/deserializer for UUID the same logic
    should apply.
    el-chogo committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    27ccb92 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cd8d888 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. Configuration menu
    Copy the full SHA
    6b89388 View commit details
    Browse the repository at this point in the history