From 8f1e9a08ef41714df2591d8b0138ac957d0a026b Mon Sep 17 00:00:00 2001 From: Sergei Maertens Date: Tue, 12 Dec 2023 16:27:46 +0100 Subject: [PATCH] :bookmark: Bump version to 2.3.5 and update changelog --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 13 +++++++++++++ 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, 21 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 720588734a..dfe9151237 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.3.4 +current_version = 2.3.5 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 abae8eb943..99b1699415 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,6 +2,19 @@
 Changelog
 =========
 
+2.3.5 (2023-12-12)
+==================
+
+Periodic bugfix release
+
+* [#3625] Fixed crashes during StUF response parsing when certain ``nil`` values are
+  present.
+* [#3605] Fixed unintended number localization in StUF/SOAP messages.
+* [#3613] Fixed submission resume flow not sending the user through the authentication
+  flow again when they authenticated for forms that have optional authentication. This
+  unfortunately resulted in hashed BSNs being sent to registration backends, which we
+  can not recover/translate back to the plain-text values.
+
 2.3.4 (2023-11-09)
 ==================
 
diff --git a/README.NL.rst b/README.NL.rst
index 45940c6cf7..be77aa8100 100644
--- a/README.NL.rst
+++ b/README.NL.rst
@@ -2,7 +2,7 @@
 Open Formulieren
 ================
 
-:Version: 2.3.4
+:Version: 2.3.5
 :Source: https://github.com/open-formulieren/open-forms
 :Keywords: e-Formulieren, Common Ground, FormIO, API
 
diff --git a/README.rst b/README.rst
index f388137a75..31c223b80f 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
 Open Forms
 ==========
 
-:Version: 2.3.4
+:Version: 2.3.5
 :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 0fc787c38c..8b482e0e18 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "openforms",
-  "version": "2.3.4",
+  "version": "2.3.5",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "openforms",
-      "version": "2.3.3",
+      "version": "2.3.5",
       "license": "UNLICENSED",
       "dependencies": {
         "@fortawesome/fontawesome-free": "^6.1.1",
diff --git a/package.json b/package.json
index bc3b2e60ce..9dbb0edd84 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "openforms",
-  "version": "2.3.4",
+  "version": "2.3.5",
   "description": "Open Forms",
   "main": "src/static/openforms/js/openforms.js",
   "directories": {
diff --git a/publiccode.yaml b/publiccode.yaml
index e7565eb4d3..a27abcce7e 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.3.4
+softwareVersion: 2.3.5
 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 0705976eb7..e4738c7479 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.3.4"
+__version__ = "2.3.5"
 __author__ = "Maykin Media"
 __homepage__ = "https://github.com/open-formulieren/open-forms"