From 964c5c5aca08a81164968b8d71eca6925cdbd935 Mon Sep 17 00:00:00 2001 From: David Lord Date: Tue, 23 May 2017 16:24:07 -0700 Subject: [PATCH] add changelog [ci skip] --- CHANGES | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index d243d66d..c37d3f7f 100644 --- a/CHANGES +++ b/CHANGES @@ -42,6 +42,10 @@ Major release, unreleased (`#2282`_) - Auto-detect zero-argument app factory called ``create_app`` or ``make_app`` from ``FLASK_APP``. (`#2297`_) +- Factory functions are not required to take a ``script_info`` parameter to + work with the ``flask`` command. If they take a single parameter or a + parameter named ``script_info``, the ``ScriptInfo`` object will be passed. + (`#2319`_) .. _#1489: https://github.com/pallets/flask/pull/1489 .. _#1898: https://github.com/pallets/flask/pull/1898 @@ -53,6 +57,7 @@ Major release, unreleased .. _#2259: https://github.com/pallets/flask/pull/2259 .. _#2282: https://github.com/pallets/flask/pull/2282 .. _#2297: https://github.com/pallets/flask/pull/2297 +.. _#2319: https://github.com/pallets/flask/pull/2319 Version 0.12.2 --------------