Releases: Kinto/kinto-attachment
Releases · Kinto/kinto-attachment
6.0.1
Bug fixes
- Fix support of kinto >= 12
6.0.0
Breaking changes
- Do not allow any file extension by default. Now allow documents+images+text+data (Fix #130)
To allow more extensions (see pyramid storage extensions configuration), use something like kinto.attachment.extensions = default+video
Bug fixes
- Fix heartbeat when allowed file types is not
any
(Fix #148)
5.0.0
Breaking changes
- Gzip
Content-Encoding
is not used anymore when uploading on S3 (fixes #144)
Internal changes
- Heartbeat now uses
utils.save_file()
for better detection of configuration or deployment errors (fixes #146)
4.0.0
Breaking changes
- Gzip
Content-Encoding
is now always enabled when uploading on S3 (fixes #139)
- Overriding settings via the querystring (eg.
?gzipped
, randomize
, use_content_encoding
) is not possible anymore
Internal changes
- Refactor reading of settings
3.0.1
Bug fix
- Do not delete attachment when record is deleted if
keep_old_files
setting is true (#137)
3.0.0
Breaking changes
- The collection specific
use_content_encoding
setting must now be separated with .
instead of _
.
(eg. use kinto.attachment.resources.bid.cid.use_content_encoding
instead of kinto.attachment.resources.bid_cid.use_content_encoding
) (fixes #134)
2.1.0
New features
- Add support for the
Content-Encoding
header with the S3Backend (#132)
2.0.1
Bug fixes
- Set request parameters before instantiating a record resource. (#127)
2.0.0
Breaking changes
- Remove Python 2.7 support and upgrade to Python 3.5. (#125)
1.1.2
Bug fixes
- Fix invalid request when attaching a file on non UUID record id (#122)