Skip to content

Releases: amol-/depot

Version 0.11.0

22 Feb 21:35
Compare
Choose a tag to compare

What's Changed

  • Officially support Python 3.12
  • Addressed deprecation of Image.ANTIALIAS in Pillow, Image.LANCZOS is used instead
  • TurboGears2 is no longer needed to run tests
  • Depot is now compatible with multipart module or other replacements of cgi.FieldStorage
  • Fixed an open file leak in UploadedImageWithThumb
  • Fixed an open file leak in WithThumbnailFilter
  • Update manager.py by @redjax in https://github.com/amol-/depot/pull/85

New Contributors

Full Changelog: 0.10.0...0.11.0

Version 0.10.0

15 Jun 13:11
b82db33
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.9.0...0.10.0

0.9.0

11 Dec 23:01
Compare
Choose a tag to compare
  • Support for SQLAlchemy 1.4 and 2.0
  • Support for SQLAlchemy objects deleted with .delete(synchronize_session="fetch")
  • Tests migrated to unittest

0.8.0

27 Jul 18:26
Compare
Choose a tag to compare
  • Replaced unidecode dependency with anyascii to better cope with MIT License

0.7.1

26 Nov 09:07
Compare
Choose a tag to compare
  • Fix a bug in AWS-S3 support for unicode filenames.

0.7.0

13 Aug 22:04
Compare
Choose a tag to compare

0.5.0

07 May 09:27
Compare
Choose a tag to compare
  • depot.io.boto3.S3Storage now provides support for accessing S3 with boto3.
    The previously existing depot.io.awss3.S3Storage can still be used to store
    files on S3 using boto.
  • SQLAlchemy integration now handles deletion of files on rollback when session
    is not flushed. Previously flushing the session was required before a rollback too.
  • It is now possible to run tests through tox and build docs through tox -e docs
  • DEPOT is now tested against Python 3.6