Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

v0.2.1

Compare
Choose a tag to compare
@eliblock eliblock released this 28 Apr 19:34
· 31 commits to main since this release
b48e3f4
  • Split schema into location and load. Users should now import this package using either

    from vaccine_feed_ingest_schema import location

    or

    from vaccine_feed_ingest_schema import load

    The current method of importing (schema includes both location and load) has been maintained for compatibility, but a deprecation warning has been added. In a future major release, schema will be removed.

  • Configure pydantic to:

    • strip whitespace from string values
    • error if undefined attributes are added to a class
    • error on assignment if the value does not match the desired type
    • store enums as strings - this will enable easier migration to future enum-enforced values
  • Set all attributes on Address to be optional (previously, only street2 was optional).

Note: v0.2.0 was skipped.