Skip to content

Commit

Permalink
Merge pull request #633 from open-formulieren/release/2.1.0
Browse files Browse the repository at this point in the history
Release 2.1.0
  • Loading branch information
sergei-maertens authored Jan 25, 2024
2 parents 300e246 + cd5615c commit d396ad3
Show file tree
Hide file tree
Showing 10 changed files with 65 additions and 7 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.1.0-alpha.0
current_version = 2.1.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
53 changes: 53 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,59 @@
SDK Changelog
=============

2.1.0 (2024-01-25)
==================

Feature release - all the changes from 2.1.0-alpha.0 are also included!

New features
------------

* [#3607] Added a new component type ``addressNL``, taking postcode and house number,
which supports validation against the BRK. This component may replace the address
auto-complete (based on ``textfield``) in the future.

* Updated some literals to be more accessible

* [#3690] Update texts for authentication plugin outages to be B1-level.
* [#619] Update texts in the map component to be B1-level.

* ⚠️ We have adapted more NL Design System components for our SDK, please review the
`2.1.0 upgrade notes`_. If you're developing your own theme, this
may break some styling. Users of the default Open Forms theme (even if you tweak some
design tokens in the backend) are not affected.

* [#471] Refactored the ``FormStepSummary`` to make use of ``DataList`` and
``Heading2`` components.
* [3178] Reworked the layout scaffolding to support NL DS principles - appearance
can now be configured through design tokens.
* We now expect an outer wrapper with the class name ``utrecht-document``, any CMS
making use of embedding should ensure this class is applied in a form container (
ideally you apply this to the ``html`` or ``body`` element).

* [#3726] Reworked the payment and confirmation page flows - it is now more obvious that
the user still needs to be pay (if payment is relevant).
* [#3778] Content components displayed on the summary do not display a name/label, to be
consistent with email and PDF summary.

Bugfixes
--------

* [#3671] Fixed max date validation when "today" is included.

Project maintenance
-------------------

* Upgraded the development tooling to Node 20 (LTS).
* Upgraded playwright to be compatible with Debian 12.
* Upgraded dependencies to reduce the amount of warnings during ``yarn install``.
* [#584] Added mobile snapshots to Storybook and Chromatic configuration to run visual
regression tests on multiple viewports.
* Marked the ``stable/1.3.x`` release branch as end-of-life.
* [#614] The Leaflet Dutch coordinate system code is replaced with a reusable library.

.. _2.1.0 upgrade notes: https://open-formulieren.github.io/open-forms-sdk/?path=/docs/developers-upgrade-notes-2-1-0--docs

2.0.2 (2024-01-12)
==================

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 SDK
====================

:Version: 2.1.0-alpha.0
:Version: 2.1.0
:Source: https://github.com/open-formulieren/open-forms-sdk
: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 SDK
==============

:Version: 2.1.0-alpha.0
:Version: 2.1.0
:Source: https://github.com/open-formulieren/open-forms-sdk
:Keywords: e-Formulieren, Common Ground, FormIO, API

Expand Down
4 changes: 4 additions & 0 deletions docker/ci/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"gitRef": "main",
"tag": "latest"
},
{
"gitRef": "stable/2.1.x",
"tag": null
},
{
"gitRef": "stable/2.0.x",
"tag": null
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-formulieren/sdk",
"version": "2.1.0-alpha.0",
"version": "2.1.0",
"private": true,
"main": "dist/open-forms-sdk.js",
"exports": {
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 SDK
url: 'http://github.com/open-formulieren/open-forms-sdk.git'
softwareType: standalone/frontend
softwareVersion: 2.1.0-alpha.0
softwareVersion: 2.1.0
releaseDate: 't.b.d.'
logo: 'https://github.com/open-formulieren/open-forms/blob/master/docs/logo.svg'
platforms:
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/compiled/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"7+0/Hz": [
{
"type": 0,
"value": "Betalen"
"value": "Payment"
}
],
"7Fk8NY": [
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"originalDefault": "You must declare the form to be filled out truthfully before submitting"
},
"7+0/Hz": {
"defaultMessage": "Betalen",
"defaultMessage": "Payment",
"description": "On succesful completion title but payment required",
"originalDefault": "Betalen"
},
Expand Down
1 change: 1 addition & 0 deletions src/i18n/messages/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
"7+0/Hz": {
"defaultMessage": "Betalen",
"description": "On succesful completion title but payment required",
"isTranslated": true,
"originalDefault": "Betalen"
},
"7Fk8NY": {
Expand Down

0 comments on commit d396ad3

Please sign in to comment.