Skip to content

Commit 2a34a56

Browse files
🔖 Bump to 3.0.3 and update changelog
1 parent 10ca46c commit 2a34a56

8 files changed

+17
-8
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = False
33
tag = False
4-
current_version = 3.0.3
4+
current_version = 3.0.4
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre>[a-z]+)\.(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{pre}.{build}

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ Changelog
66

77
The Dutch version of this changelog can be found :ref:`here <changelog-nl>`.
88

9+
3.0.4 (2025-02-06)
10+
==================
11+
12+
Hotfix release for performance problems in the admin.
13+
14+
* [:backend:`5084`] Fixed the performance issues when saving form steps/definitions with
15+
large numbers of components (30-100), especially if they are reusable form definitions
16+
used in many (20+) forms. This was caused by an earlier patch for :backend:`5058`.
17+
918
3.0.3 (2025-02-05)
1019
==================
1120

README.NL.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Open Formulieren
33
================
44

5-
:Version: 3.0.3
5+
:Version: 3.0.4
66
:Source: https://github.com/open-formulieren/open-forms
77
:Keywords: e-Formulieren, Common Ground, FormIO, API
88

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Open Forms
33
==========
44

5-
:Version: 3.0.3
5+
:Version: 3.0.4
66
:Source: https://github.com/open-formulieren/open-forms
77
:Keywords: e-Formulieren, Common Ground, FormIO, API
88

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openforms",
3-
"version": "3.0.3",
3+
"version": "3.0.4",
44
"description": "Open Forms",
55
"main": "src/static/openforms/js/openforms.js",
66
"directories": {

publiccode.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publiccodeYmlVersion: '0.2'
77
name: Open Forms Builder and API
88
url: 'http://github.com/open-formulieren/open-forms.git'
99
softwareType: standalone/backend
10-
softwareVersion: 3.0.3
10+
softwareVersion: 3.0.4
1111
releaseDate: '2022-03-10'
1212
logo: 'https://github.com/open-formulieren/open-forms/blob/master/docs/logo.svg'
1313
platforms:

src/openforms/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .celery import app as celery_app
22

33
__all__ = ("celery_app",)
4-
__version__ = "3.0.3"
4+
__version__ = "3.0.4"
55
__author__ = "Maykin Media"
66
__homepage__ = "https://github.com/open-formulieren/open-forms"

0 commit comments

Comments
 (0)