From 1d2801642466e99c053c9cc0cc3c1fbcad2de613 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Tue, 5 May 2020 23:33:06 -0400 Subject: [PATCH] Mark v2.4.1 --- CHANGELOG.md | 12 ++++++++++++ CTFd/__init__.py | 2 +- docs/conf.py | 2 +- package.json | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ac1700..08aa381 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +2.4.1 / 2020-05-06 +================== + +**Admin Panel** +* Fix issue where admins couldn't update the "Account Creation" email +* Fix issue where the Submissions page in the Admin Panel could not be paginated correctly + +**Miscellaneous** +* Add `SQLALCHEMY_ENGINE_OPTIONS` to `config.py` with a slightly higher default `max_overflow` setting for `SQLALCHEMY_MAX_OVERFLOW`. This can be overridden with the `SQLALCHEMY_MAX_OVERFLOW` envvar +* Add `node_modules/` to `.dockerignore` + + 2.4.0 / 2020-05-04 ================== diff --git a/CTFd/__init__.py b/CTFd/__init__.py index 3837e7b..72f3361 100644 --- a/CTFd/__init__.py +++ b/CTFd/__init__.py @@ -31,7 +31,7 @@ if sys.version_info[0] < 3: reload(sys) # noqa: F821 sys.setdefaultencoding("utf-8") -__version__ = "2.4.0" +__version__ = "2.4.1" class CTFdRequest(Request): diff --git a/docs/conf.py b/docs/conf.py index 51d9e9a..576d68b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = u"Kevin Chung" # The short X.Y version version = u"" # The full version, including alpha/beta/rc tags -release = u"2.4.0" +release = u"2.4.1" # -- General configuration --------------------------------------------------- diff --git a/package.json b/package.json index 0849215..43b4d93 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ctfd", - "version": "2.4.0", + "version": "2.4.1", "description": "CTFd is a Capture The Flag framework focusing on ease of use and customizability. It comes with everything you need to run a CTF and it's easy to customize with plugins and themes.", "main": "index.js", "directories": {