Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added brotli compression support #1938

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Nov 10, 2021

  1. added brotli compression support

    brotli compression can be enabled just like gzip compression by setting ``'tools.br.on': True,``
    
    ``tools.br`` may also be combined with ``'tools.gzip`` - the client can then decide which encoding is accepted.
    
    If both ``gzip`` and ``br`` tools are enabled and both ``gzip`` and ``br`` are accepted encodings, ``br`` will be chosen over ``gzip`` - unless ``gzip`` has a higher ``qvalue``
    mpf82 committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    3c8db2d View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. Update

    Changed default compression level for brotli from 5 to 4
    
    Fixed an issue where the wrong compression level might be used if both gzip and brotli compression are enabled.
    
    Changed brotli context from 'TOOLS.BROTLI' to 'TOOLS.BR' to be consistent with the tool name.
    mpf82 committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    89121de View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2021

  1. Fixed default compression level in tests

    Tests now use the correct default compression level for brotli (which was changed from 5 to 4 in a previous commit)
    mpf82 committed Nov 12, 2021
    Configuration menu
    Copy the full SHA
    810610e View commit details
    Browse the repository at this point in the history