Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: ioxiocom/firedantic

0.2.2

29 Apr 12:10
f21be21

Choose a tag to compare

0.2.2 - 2021-04-29

Added

  • Helpers for truncating collections

Changed

  • Make the filter optional for find and find_one

0.2.1

31 Mar 12:01
ed3beda

Choose a tag to compare

0.2.1 - 2021-03-31

Changed

  • Update google-cloud-firestore to 2.1.0 that supports async with firestore
    emulator. Using an officially released version of google-cloud-firestore
    from PyPI will also make it possible to get this release of firedantic
    uploaded to PyPI.

0.2.0

31 Mar 12:01
72bfcc2

Choose a tag to compare

0.2.0 - 2021-03-29

Added

  • New AsyncModel that supports async and await syntax.

Changed

  • Refactor file structure; models.py no longer exists, so make sure to import
    Model directly from firedantic: from firedantic import Model
  • Update google-cloud-firestore. The 2.0.2 version has an issue
    with running in async mode against the emulator
    ,
    that has been fixed in the git master, but not included in any official
    release yet. Using the latest master (pinned to the commit hash). In case you
    are using poetry to install firedantic, please be aware that poetry has an
    issue with updating from a pypi package to a git
    commit
    .
    The simplest work-around is to after updating firedantic (and thus also
    google-cloud-firestore) delete the virtualenv and then run poetry install
    again
  • Update pydantic to 1.8.1 and grpcio to 1.36.1
  • Fixes for Mypy errors and warnings
  • Updated examples in README