Skip to content

Tags: codingjoe/django-stdimage

Tags

6.0.2

Toggle 6.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix deepcopy & pickle for unsaved model instances & empty image fields (

#324)

6.0.1

Toggle 6.0.1's commit message
Fix #229 -- Delete old file after validation is passed

Previously files were deleted even if the from validation failed.

Co-Authored-By: codingjoe <[email protected]>

6.0.0

Toggle 6.0.0's commit message
Add deprecation warning and migration notes.

5.3.3

Toggle 5.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update release action

5.3.2

Toggle 5.3.2's commit message
Bump black from 22.1.0 to 22.3.0

Bumps [black](https://github.com/psf/black) from 22.1.0 to 22.3.0.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@22.1.0...22.3.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

5.3.1

Toggle 5.3.1's commit message
Fix multiple jpeg file conversion

5.3.0

Toggle 5.3.0's commit message
Remove progressbar dependency

5.2.1

Toggle 5.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix #224 -- delete_orphans independent from blank (#225)

5.2.0

Toggle 5.2.0's commit message
Remove travis-ci badge

5.1.1

Toggle 5.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Set file stream curstor to zero position after running validators (#218)

The `BaseSizeValidator` read the file stream to create an in memory Pillow Image object. In reading the file, the file streams cursor was set to the end. Therefore, the validator left the file in a different state than receiving it. This patch sets the cursor back to zero after reading the file.