From 0bf3c9bad684c8e37624f00bfe946417f7a630af Mon Sep 17 00:00:00 2001 From: robinvandermolen Date: Wed, 29 Jan 2025 12:51:32 +0100 Subject: [PATCH] :bookmark: Bump version to 2.8.4 and update changelog --- .bumpversion.cfg | 2 +- CHANGELOG.rst | 14 ++++++++++++-- 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, 20 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d6f51f39bd..da5fd41de1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.8.3 +current_version = 2.8.4 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 ad610b6281..60b02b4b47 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -2,6 +2,16 @@
 Changelog
 =========
 
+2.8.4 (2025-01-31)
+==================
+
+Regular bugfix release
+
+* [:backend:`5035`] Fixed duplicate values being sent by legacy Objects API registration
+  plugin.
+* [:backend:`5058`] Fixed race conditions and database errors being caused when editing
+  forms, originally because of :backend:`4900`.
+
 2.8.3 (2025-01-09)
 ==================
 
@@ -37,7 +47,7 @@ Regular bugfix release
 Regular bugfix release
 
 .. warning:: Manual intervention required
-    
+
     We fixed a bug that would mess with the default values of selectboxes components.
     A script is included to fix the forms that are affected - you need to run this
     after deploying the patch release.
@@ -61,7 +71,7 @@ Regular bugfix release
   filename.
 * [:backend:`4727`] Fixed crash when a user defined variable was changed to an array
   datatype.
-* [:backend:`4320`] Fixed ambiguous langugage in the summary PDF when the submission 
+* [:backend:`4320`] Fixed ambiguous langugage in the summary PDF when the submission
   still requires cosigning.
 
 2.8.1 (2024-10-29)
diff --git a/README.NL.rst b/README.NL.rst
index 8ba6cd75d9..81d198a2b6 100644
--- a/README.NL.rst
+++ b/README.NL.rst
@@ -2,7 +2,7 @@
 Open Formulieren
 ================
 
-:Version: 2.8.3
+:Version: 2.8.4
 :Source: https://github.com/open-formulieren/open-forms
 :Keywords: e-Formulieren, Common Ground, FormIO, API
 
diff --git a/README.rst b/README.rst
index c91ebfb2d5..fcc0953a98 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
 Open Forms
 ==========
 
-:Version: 2.8.3
+:Version: 2.8.4
 :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 7d238f2b2f..7518aa105a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "openforms",
-  "version": "2.8.3",
+  "version": "2.8.4",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
     "": {
       "name": "openforms",
-      "version": "2.8.3",
+      "version": "2.8.4",
       "license": "UNLICENSED",
       "dependencies": {
         "@fortawesome/fontawesome-free": "^6.1.1",
diff --git a/package.json b/package.json
index 87a812ab6d..ac56461eb6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "openforms",
-  "version": "2.8.3",
+  "version": "2.8.4",
   "description": "Open Forms",
   "main": "src/static/openforms/js/openforms.js",
   "directories": {
diff --git a/publiccode.yaml b/publiccode.yaml
index a0362fcf69..5f0bbf4741 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.8.3
+softwareVersion: 2.8.4
 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 a02d869607..9aa345a4cc 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.8.3"
+__version__ = "2.8.4"
 __author__ = "Maykin Media"
 __homepage__ = "https://github.com/open-formulieren/open-forms"