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

Duplicate of #959 #961

Merged
merged 17 commits into from
Dec 1, 2023
Merged

Duplicate of #959 #961

merged 17 commits into from
Dec 1, 2023

Commits on Nov 26, 2023

  1. Make the type of the sprites column in pokemon_v2_pokemonsprites `j…

    …sonb`
    
    This is so Hasura automatically transforms the field into an array
    instead of a JSON encoded in a string.
    
    Migration was generated by the `makemigrations` command.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    218864d View commit details
    Browse the repository at this point in the history
  2. Stop encoding sprites when inserting them on the database

    Since the column is now jsonb, we need to stop encoding it or it gets
    inserted as a string rather than a JSON object.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    fa14336 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6ff2c0c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    49d970f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    30e8a01 View commit details
    Browse the repository at this point in the history
  6. Update Django to version 3.1

    Some third-party packages had to be updated and some new settings were
    added due to `manage.py` not running.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    8f716cd View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d1e2d9c View commit details
    Browse the repository at this point in the history
  8. Format missing files

    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    db33cfc View commit details
    Browse the repository at this point in the history
  9. Remove root __init__.py file

    This was preventing the tests from running.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    45efd07 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d57fd5a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0dcaf0d View commit details
    Browse the repository at this point in the history
  12. Use JSONField instead of CharField for sprites

    The models affected were PokemonFormSprites and ItemSprites. This was
    done to ensure they are properly returned when querying those tables
    with Hasura.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    76f7a34 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    61c2185 View commit details
    Browse the repository at this point in the history
  14. Fix tests for sprites

    Moved the declaration of sprite_data variables closer to their actual
    usage.
    simonorono committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    b3d6608 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. refactor: merge migrations

    Naramsim committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    b348e60 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f7f2be7 View commit details
    Browse the repository at this point in the history
  3. cicd: run on PRs

    Naramsim committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    35f4712 View commit details
    Browse the repository at this point in the history