Path to this page:
Subject: CVS commit: pkgsrc/www/py-flask
From: Adam Ciarcinski
Date: 2019-05-19 09:59:50
Message id: 20190519075950.AF820FB16@cvs.NetBSD.org
Log Message:
py-flask: updated to 1.0.3
Version 1.0.3
- :func:send_file encodes filenames as ASCII instead of Latin-1
(ISO-8859-1). This fixes compatibility with Gunicorn, which is
stricter about header encodings than PEP 3333.
- Allow custom CLIs using FlaskGroup to set the debug flag without
it always being overwritten based on environment variables.
- flask --version outputs Werkzeug's version and simplifies the
Python version.
- :func:send_file handles an attachment_filename that is a
native Python 2 string (bytes) with UTF-8 coded bytes.
- A catch-all error handler registered for HTTPException will not
handle RoutingExcpetion, which is used internally during
routing. This fixes the unexpected behavior that had been introduced
in 1.0.
- Passing the json argument to app.test_client does not
push/pop an extra app context.
Files: