diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 98b08277e6..f135b318ba 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.7.10 +current_version = 2.7.11 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P
[a-z]+)\.(?P\d+))?
 serialize = 
 	{major}.{minor}.{patch}-{pre}.{build}
diff --git a/.sdk-release b/.sdk-release
index 3f684d2d90..cc6c9a491e 100644
--- a/.sdk-release
+++ b/.sdk-release
@@ -1 +1 @@
-2.3.4
+2.3.5
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index be3c51f1a4..e2b0f56469 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,6 +2,32 @@
 Changelog
 =========
 
+2.7.11 (2025-01-09)
+===================
+
+Final bugfix release in the ``2.7.x`` series.
+
+* [:backend:`4795`] Fixed not always being able to upload ``.msg`` files.
+* [:backend:`4900`] Fixed submission value variables recoupling for reusable form
+  definitions.
+* [:backend:`4579`] Fixed wrong steps being blocked when logic uses the "trigger from
+  step" option.
+* [:backend:`4825`] Fixed logging to only log empty retrieved data for the
+  authentication flow that is used in the submission.
+* [:backend:`4863`] Fixed authentication flow of an employee via OIDC.
+* [:backend:`4955`] Fixed the order of coordinates in Objects API and in ZGW APIs.
+* [:backend:`4821`] Fixed email digest for addressNL component, in combination with BRK
+  validator.
+* [:backend:`4886`] Fixed certain variants of CSV files not passing validation.
+* [:backend:`4949`] Fixed modal close button on dark mode.
+* [:backend:`4832`] Fixed json schema matcher in Objects API.
+* [:backend:`4824`] Ensured that the form variables are in line with the state of the
+  form definitions after saving a form.
+* [:backend:`4874`] Updated Dockerfile with missing scripts.
+* Bumped packages to their latest (security) releases.
+* [:backend:`4862`] Fixed unintended hashing of identifying attributes when the cosigner
+  logs out.
+
 2.7.10 (2024-11-25)
 ===================
 
diff --git a/README.NL.rst b/README.NL.rst
index 17ffc85417..b6baedf705 100644
--- a/README.NL.rst
+++ b/README.NL.rst
@@ -2,7 +2,7 @@
 Open Formulieren
 ================
 
-:Version: 2.7.10
+:Version: 2.7.11
 :Source: https://github.com/open-formulieren/open-forms
 :Keywords: e-Formulieren, Common Ground, FormIO, API
 
diff --git a/README.rst b/README.rst
index 35d40dec4c..40006a8549 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
 Open Forms
 ==========
 
-:Version: 2.7.10
+:Version: 2.7.11
 :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 d727812fb2..fe4f45d6cb 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "openforms",
-  "version": "2.7.10",
+  "version": "2.7.11",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "openforms",
-      "version": "2.7.10",
+      "version": "2.7.11",
       "license": "UNLICENSED",
       "dependencies": {
         "@fortawesome/fontawesome-free": "^6.1.1",
diff --git a/package.json b/package.json
index d3242cadd9..22713a6e85 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "openforms",
-  "version": "2.7.10",
+  "version": "2.7.11",
   "description": "Open Forms",
   "main": "src/static/openforms/js/openforms.js",
   "directories": {
diff --git a/publiccode.yaml b/publiccode.yaml
index 7399c27a91..a32ac446af 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.10
+softwareVersion: 2.7.11
 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 66089e4e0e..1919830886 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.10"
+__version__ = "2.7.11"
 __author__ = "Maykin Media"
 __homepage__ = "https://github.com/open-formulieren/open-forms"