Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.0.0 alpha.0 #4784

Merged
merged 6 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8.0
current_version = 3.0.0-alpha.0
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.4.0
2.5.0-alpha.0
54 changes: 54 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,60 @@
Changelog
=========

3.0.0-alpha.0 (2024-10-25)
==========================

This is an alpha release, meaning it is not finished yet or suitable for production use.

Detailed changes
----------------

**Breaking changes**

* [:backend:`4375`] Removed environment variable ``DISABLE_SENDING_HIDDEN_FIELDS`` for
Objects API.

**New features**

* [:backend:`4546`] Added configuration options for soft-required validation of (file upload)
fields to the form designer.
* [:backend:`4709`] Improved the error feedback if unexpected errors happening during form
saving in the form designer.
* [:backend:`4524`, :backend:`4675`] Selecting a form variable is now more user friendly.
Variables are logically grouped and a search box was added.
* [:backend:`4764`] You can now use a form variable as the source of the submission price
to be paid.

**Bugfixes**

* [:backend:`3705`] Ensure timestamps are consistently displayed in the correct timezone
in the admin interface.
* [:backend:`4600`] Fixed not all the content on the page getting translated after changing
the form language.
* [:backend:`4659`] Fixed ``null`` default values for text-based fields.
* [:backend:`4733`] Fixed a segmentation fault that could occur in dev environments.
* [:backend:`4711`] Fixed broken submission form row styling.
* [:backend:`4695`] Fixed performance regression in Objects API (legacy) validation.
* [:backend:`4628`] Fixed a crash when copying a form with a "block next step" logic
action.
* [:backend:`4713`] Fixed pre-request hook not running for all "Haal Centraal BRP
Personen bevragen" operations (fixes Token Exchange extension).
* [:backend:`3629`] Fixed submission bulk export crashing when the form has repeating
groups.

* [:backend:`4528`] Fixed vague error/log out situation when logging in with OIDC.
* [:backend:`4744`] Fixed a performance regression in the logic check calls and general
submission processing.
* [:backend:`4774`] Fixed ``textfield`` data not being converted to a string when
numeric data is received from a prefill plugin.

**Project maintenance**

* Updated Trivy image scanning CI pipeline.
* [:backend:`4588`] Reduced code duplication in payment related code.
* [:backend:`4721`] Updated the screenshots in the documentation for prefill and the
Objects API manual.

2.6.15 (2024-10-08)
===================

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.8.0
:Version: 3.0.0-alpha.0
: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.8.0
:Version: 3.0.0-alpha.0
: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.8.0",
"version": "3.0.0-alpha.0",
"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.8.0
softwareVersion: 3.0.0-alpha.0
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/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: Open Forms API
version: 2.8.1
version: 3.0.0-alpha.0
description: |2

Open Forms provides an API to manage multi-page or multi-step forms.
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.8.0"
__version__ = "3.0.0-alpha.0"
__author__ = "Maykin Media"
__homepage__ = "https://github.com/open-formulieren/open-forms"
2 changes: 1 addition & 1 deletion src/openforms/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@
and it plays nice with other available components.
"""

API_VERSION = "2.8.1"
API_VERSION = "3.0.0-alpha.0"

SPECTACULAR_SETTINGS = {
"SCHEMA_PATH_PREFIX": "/api/v2",
Expand Down
Loading
Loading