From bc8bfe8b66ecb7856c9f9853810af8e846d7717a Mon Sep 17 00:00:00 2001 From: Sergei Maertens Date: Tue, 24 Sep 2024 12:27:46 +0200 Subject: [PATCH] :bookmark: Bump version to 2.7.8 and update release notes --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 15 +++++++++++++++ README.NL.rst | 2 +- README.rst | 2 +- package-lock.json | 4 ++-- package.json | 2 +- publiccode.yaml | 2 +- src/openforms/__init__.py | 2 +- 8 files changed, 23 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1ae4320ccd..088d724c87 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.7.7 +current_version = 2.7.8 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P
[a-z]+)\.(?P\d+))?
 serialize = 
 	{major}.{minor}.{patch}-{pre}.{build}
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 91c755f747..c00bf1c07b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,6 +2,21 @@
 Changelog
 =========
 
+2.7.8 (2024-09-23)
+==================
+
+Hotfix for 2.7.7 issue
+
+.. warning::
+
+    If you updated to 2.7.7 before, please update to 2.7.8 and then run the
+    ``/app/bin/fix_globalconfig_zip.py`` script to fix the misconfiguration.
+
+    If you update from a version older than 2.7.7, you don't need to run this script.
+
+* [:backend:`4658`] Fixed missing global configuration update, causing runtime crashes
+  when ZIP files are enabled in the global configuration.
+
 2.7.7 (2024-09-23)
 ==================
 
diff --git a/README.NL.rst b/README.NL.rst
index ee776e4c00..a0d999e536 100644
--- a/README.NL.rst
+++ b/README.NL.rst
@@ -2,7 +2,7 @@
 Open Formulieren
 ================
 
-:Version: 2.7.7
+:Version: 2.7.8
 :Source: https://github.com/open-formulieren/open-forms
 :Keywords: e-Formulieren, Common Ground, FormIO, API
 
diff --git a/README.rst b/README.rst
index 9618ab4e4d..3d4100f42b 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
 Open Forms
 ==========
 
-:Version: 2.7.7
+:Version: 2.7.8
 :Source: https://github.com/open-formulieren/open-forms
 :Keywords: e-Formulieren, Common Ground, FormIO, API
 
diff --git a/package-lock.json b/package-lock.json
index 7647be8225..ca1e7cdc3d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "openforms",
-  "version": "2.7.7",
+  "version": "2.7.8",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "openforms",
-      "version": "2.7.7",
+      "version": "2.7.8",
       "license": "UNLICENSED",
       "dependencies": {
         "@fortawesome/fontawesome-free": "^6.1.1",
diff --git a/package.json b/package.json
index 87026fe5ea..93482f25a1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "openforms",
-  "version": "2.7.7",
+  "version": "2.7.8",
   "description": "Open Forms",
   "main": "src/static/openforms/js/openforms.js",
   "directories": {
diff --git a/publiccode.yaml b/publiccode.yaml
index cb425c424d..9b114fbd7e 100644
--- a/publiccode.yaml
+++ b/publiccode.yaml
@@ -7,7 +7,7 @@ publiccodeYmlVersion: '0.2'
 name: Open Forms Builder and API
 url: 'http://github.com/open-formulieren/open-forms.git'
 softwareType: standalone/backend
-softwareVersion: 2.7.7
+softwareVersion: 2.7.8
 releaseDate: '2022-03-10'
 logo: 'https://github.com/open-formulieren/open-forms/blob/master/docs/logo.svg'
 platforms:
diff --git a/src/openforms/__init__.py b/src/openforms/__init__.py
index 67ba0ccb4b..f178f1d2e4 100644
--- a/src/openforms/__init__.py
+++ b/src/openforms/__init__.py
@@ -1,6 +1,6 @@
 from .celery import app as celery_app
 
 __all__ = ("celery_app",)
-__version__ = "2.7.7"
+__version__ = "2.7.8"
 __author__ = "Maykin Media"
 __homepage__ = "https://github.com/open-formulieren/open-forms"