Skip to content

Commit 4b0ea9d

Browse files
Merge pull request #3771 from open-formulieren/release/2.3.6
Prepare release 2.3.6
2 parents 3e17edd + f33efd8 commit 4b0ea9d

8 files changed

+25
-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 = 2.3.5
4+
current_version = 2.3.6
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

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
Changelog
33
=========
44

5+
2.3.6 (2024-01-12)
6+
==================
7+
8+
Periodic bugfix release
9+
10+
* [#3656] Fixed incorrect DigiD error messages being shown when using OIDC-based plugins.
11+
* [#3692] Fixed crash when using OIDC DigiD login while logged into the admin interface.
12+
* [#3744] Fixed conditionally marking a postcode component as required/optional.
13+
14+
.. note:: We cannot automatically fix existing logic rules. For affected forms, you
15+
can remove and re-add the logic rule action to modify the 'required' state.
16+
17+
* [#3704] Fixed the family members component not retrieving the partners when using
18+
StUF-BG as data source.
19+
* [#2710] Added missing initials (voorletters) prefill option for StUF-BG plugin.
20+
* Fixed failing docs build by disabling/changing some link checks.
21+
522
2.3.5 (2023-12-12)
623
==================
724

README.NL.rst

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

5-
:Version: 2.3.5
5+
:Version: 2.3.6
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: 2.3.5
5+
:Version: 2.3.6
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": "2.3.5",
3+
"version": "2.3.6",
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: 2.3.5
10+
softwareVersion: 2.3.6
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__ = "2.3.5"
4+
__version__ = "2.3.6"
55
__author__ = "Maykin Media"
66
__homepage__ = "https://github.com/open-formulieren/open-forms"

0 commit comments

Comments
 (0)