From c35580ea4d1ebb037f119be35d782b0f41507f58 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Fri, 24 Aug 2018 10:44:46 +0100 Subject: [PATCH] Bump version to 43.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ dmutils/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 877a8187..b56107c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ Records breaking changes from major version bumps +## 43.0.0 + +PR [#447](https://github.com/alphagov/digitalmarketplace-utils/pull/447) + +This bump removes any handling of [FeatureFlags](https://pypi.org/project/Flask-FeatureFlags/) (in e.g. app init code) +and removes FeatureFlags as a dependency. + +Specifically, `dmutils.flask_init.init_app(...)` no longer accepts a `feature_flags` argument and performs no +initialization of FeatureFlags for the app. + +`dmutils.status.enabled_since(...)` has been removed. + +`dmutils.status.get_app_status(...)` no longer adds a `flags` key to its json dictionary. + +The dependency on Flask has been upgraded to Flask 0.12, so potentially apps are going to have to make changes +in concordance with http://flask.pocoo.org/docs/0.12/changelog/ + ## 42.0.0 PR [#400](https://github.com/alphagov/digitalmarketplace-utils/pull/400) diff --git a/dmutils/__init__.py b/dmutils/__init__.py index 7bea801d..5c54ece3 100644 --- a/dmutils/__init__.py +++ b/dmutils/__init__.py @@ -2,4 +2,4 @@ from .flask_init import init_app, init_manager -__version__ = '42.8.2' +__version__ = '43.0.0'