Releases: amol-/depot
Releases · amol-/depot
Version 0.11.0
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
- @redjax made their first contribution in https://github.com/amol-/depot/pull/85
Full Changelog: 0.10.0...0.11.0
Version 0.10.0
What's Changed
- Added support for Google Cloud Storage by @maz1987in in https://github.com/amol-/depot/pull/80
- support subdirectory by @maz1987in in https://github.com/amol-/depot/pull/76
- feat(sqlalchemy): set cache_ok to False by @olemoign in https://github.com/amol-/depot/pull/78
- Fixing support for S3 on BOTO3 and BOTO and ACLs by @amol- in https://github.com/amol-/depot/pull/81
- Boto has been deprecated in favour of BOTO3
- Allow backups to different storages through the usage of FileStorage.replace by @amol- in https://github.com/amol-/depot/pull/82
Full Changelog: 0.9.0...0.10.0
0.9.0
0.8.0
0.7.1
0.7.0
0.5.0
depot.io.boto3.S3Storage
now provides support for accessing S3 withboto3
.
The previously existingdepot.io.awss3.S3Storage
can still be used to store
files on S3 usingboto
.- 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 throughtox -e docs
- DEPOT is now tested against Python 3.6