Skip to content

Latest commit

 

History

History
59 lines (36 loc) · 2.38 KB

CHANGELOG.md

File metadata and controls

59 lines (36 loc) · 2.38 KB

Changelog

All notable changes to flask-compress will be documented in this file.

1.15 (2024-04-24)

  • Add support of Zstandard compression.

1.14 (2023-09-11)

1.13 (2022-09-21)

  • Re-enable compression for streaming, but hide it behind a new option COMPRESS_STREAMS that defaults to True. See #36

1.12 (2022-04-28)

  • Disable compression when response is streamed, see #31

1.11 (2022-03-01)

  • When compression is enabled, accept-encoding is always added to the Vary header, fixes #28

1.10.0 (2021-06-15)

  • Automate the release process with GitHub Actions
  • Use setuptools_scm to manage package versions
  • The layout is now an actual package rather than a single module
  • Clean up unused files

1.9.0 (2021-02-12)

  • Add support for the identity value in accept-encoding, fixes #19

1.8.0 (2020-11-03)

  • Support ETag header as defined in RFC7232 #17
  • Implement per-view compression #14

1.7.0 (2020-10-09)

  • The following parameters to control Brotli compression are now available: #10
    • COMPRESS_BR_MODE
    • COMPRESS_BR_LEVEL
    • COMPRESS_BR_WINDOW
    • COMPRESS_BR_BLOCK
  • Add deflate support, with COMPRESS_DEFLATE_LEVEL to control compression level (default is -1) #8
  • The default quality level for Brotli is now 4, which provides compression comparable to gzip at the default setting, while reducing the time required versus the Brotli default of 11

1.6.0 (2020-10-05)

  • Support for multiple compression algorithms and quality factors #7
  • Modified default compression settings to use Brotli when available before gzip

1.5.0 (2020-05-09)

  • Add Brotli support #1