- Release to PyPi
- Renamed package to leukeleu-drf-tus
- Major refactoring
- Fixed Django compatibility
- Fixed failing travis build
- Updated Django dependency and dropped support for Python 3.3.x (dirkmoors/drf-tus#9)
- Implemented per-view max file size setting (dirkmoors/drf-tus#8)
- Fixed bug that occured when pausing uploads (dirkmoors/drf-tus#7)
- Make the metadata 'filename' key a setting. (dirkmoors/drf-tus#2)
- Switch from (Positive)IntegerField to BigIntegerField for the upload_length and upload_offset fields (dirkmoors/drf-tus#3)
- Increase Django version support up to 1.11 (dirkmoors/drf-tus#4)
- Fix unicode errors (dirkmoors/drf-tus#5)
- Updated travis configuration
- Exchanged use of
base64.encodebytes
tobase64.b64encode
.
- Implemented
validate_filename
handler inTusCreateMixin
.
- Added missing migration and changed
max_length
to 255 for modelUpload
's attributeuploaded_file
- Updated default behaviour of the
get_header
handler inTusMiddleware
.
- Implemented handler for retrieving request headers in
TusMiddleware
.
- Updated
validate_chunk
signature
- Implemented
validate_chunk
handler method in TusPatchMixin - Implemented
validate_success_headers
handler method in TusCreateMixin
- Disabled chunk writing to disk
- Introduced TusUploadStreamParser
- Introduced setting to include serializer data in respons body
- Bugfixes
- Bugfixes
- Updated middleware, removed required header (bug!)
- Initial migration
- Renamed some parameters / classes
- Cleanup repository.
- First release on PyPI.