Skip to content

Latest commit

 

History

History
189 lines (108 loc) · 9.53 KB

CHANGELOG.md

File metadata and controls

189 lines (108 loc) · 9.53 KB

Changelog

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

0.3.5 - 2021-05-12

Security

0.3.4 - 2021-03-04

Fixed

  • Fix modified mark clearing on save for nested models (#88 by @Olegt0rr)

  • Don't replace default field description for ObjectId (#82 by @Olegt0rr)

Internals

0.3.3 - 2021-02-13

Fixed

  • Remove bypass_document_validation save option to avoid Not Authorized errors (#85 by @Olegt0rr)

  • Fix microseconds issue: use truncation instead of round (#100 by @erny)

  • Add py.typed to ship typing information for mypy (#101 by @art049)

  • Fix datetime field default example value naiveness (#103 by @art049)

Internals

0.3.2 - 2020-12-15

Added

Internals

0.3.1 - 2020-11-16

Added

Fixed

  • Fix setattr error on a manually initialized EmbeddedModel (#40 by @art049)

0.3.0 - 2020-11-09

Deprecated

  • Deprecate usage of __collection__ to customize the collection name. Prefer the collection Config option (more details)

Added

  • Allow parsing document with unset fields defaults (documentation) (#28 by @art049)

  • Integration with Pydantic Config class (#37 by @art049):

    • It's now possible to define custom json_encoders on the Models
    • Some other Config options provided by Pydantic are now available (more details)
  • Support CPython 3.9 (#32 by @art049)

  • Unpin pydantic to support 1.7.0 (#29 by @art049)

0.2.1 - 2020-10-25

Fixed

  • Fix combined use of skip and limit with engine.find (#25 by @art049)

0.2.0 - 2020-10-25

Deprecated

  • Deprecate AIOEngineDependency to prefer a global engine object, more details (#21 by @art049)

Added

Fixed

  • Fix FastAPI usage with References (#19 by @art049)

Docs

  • Adding a CONTRIBUTING.md file to the root directory with link to docs (#8 by @sanders41)
  • Raw Query Usage Documentation Fix (#10 by @adeelsohailahmed)
  • Update Filtering to include Bitwise Operator Warning (#24 by @adeelsohailahmed)

0.1.0 - 2020-10-19

Initial Release