Skip to content

Commit

Permalink
Merge pull request #3676 from open-formulieren/release/2.4.2
Browse files Browse the repository at this point in the history
Release 2.4.2
  • Loading branch information
sergei-maertens authored Dec 8, 2023
2 parents 4405d69 + bcdf17e commit 0c2e21d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = False
current_version = 2.4.1
current_version = 2.4.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<pre>[a-z]+)\.(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{pre}.{build}
Expand Down
2 changes: 1 addition & 1 deletion .sdk-release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0-post.0
2.0.1
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
Changelog
=========

2.4.2 (2023-12-08)
==================

Periodic bugfix release

* [#3625] Fixed crashes during StUF response parsing when certain ``nil`` values are
present.
* Updated CSP ``frame-ancestors`` directive to be consistent with the ``X-Frame-Options``
configuration.
* [#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.
* [#3647] Fixed a backend (logic check) crash when non-parsable time, date or datetime
values are passed. The values are now ignored as if nothing was submitted.

2.4.1 (2023-11-14)
==================

Expand Down
2 changes: 1 addition & 1 deletion README.NL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Formulieren
================

:Version: 2.4.1
:Version: 2.4.2
:Source: https://github.com/open-formulieren/open-forms
:Keywords: e-Formulieren, Common Ground, FormIO, API

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Open Forms
==========

:Version: 2.4.1
:Version: 2.4.2
:Source: https://github.com/open-formulieren/open-forms
:Keywords: e-Formulieren, Common Ground, FormIO, API

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openforms",
"version": "2.4.1",
"version": "2.4.2",
"description": "Open Forms",
"main": "src/static/openforms/js/openforms.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion publiccode.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.1
softwareVersion: 2.4.2
releaseDate: '2022-03-10'
logo: 'https://github.com/open-formulieren/open-forms/blob/master/docs/logo.svg'
platforms:
Expand Down
2 changes: 1 addition & 1 deletion src/openforms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .celery import app as celery_app

__all__ = ("celery_app",)
__version__ = "2.4.1"
__version__ = "2.4.2"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/open-formulieren/open-forms"

0 comments on commit 0c2e21d

Please sign in to comment.