Skip to content

Commit

Permalink
Merge pull request #32 from maykinmedia/release/0.2.0
Browse files Browse the repository at this point in the history
📝release 0.2.0
  • Loading branch information
Coperh authored Oct 4, 2024
2 parents 170b29e + f61bb6f commit 45f34cf
Show file tree
Hide file tree
Showing 6 changed files with 32 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 = 0.1.0
current_version = 0.2.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
31 changes: 27 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@ Change history
0.2.0
=====

*?? ??, 2024*
*October 04, 2024*

**New features**

* updated open-api-framework to 0.8.0, which includes adding CSRF, CSP and HSTS settings (#438).
* [#31] Updated open-api-framework to 0.8.1, which includes adding CSRF, CSP and HSTS settings (#438).
All new environment variables are added to the `documentation <https://objects-and-objecttypes-api.readthedocs.io/en/latest/installation/config.html>`_
* [#15] Add import export to item admin
* [#7] Add OIDC login

.. warning::

``SECURE_HSTS_SECONDS`` has been added with a default of 31536000 seconds, ensure that
before upgrading to this version of open-api-framework, your entire application is served
over HTTPS, otherwise this setting can break parts of your application (see https://docs.djangoproject.com/en/4.2/ref/middleware/#http-strict-transport-security)


.. warning::

Deployment tooling updates required - additional containers needed.
Expand All @@ -27,7 +28,29 @@ Change history

.. warning::

Two factor authentication was added (by default it is enabled, to disable it, set the ``DISABLE_2FA`` envvar to ``True``)
Two factor authentication was added (by default it is enabled, to disable it, set the ``DISABLE_2FA`` envvar to ``True``

**Bugfixes and QOL**

* [#29] Fixed npm vulnerabilities
* [#21] Add missing pyquery dependency
* [#18] Fix help-text icon layout in the admin

**Documentation**

* [#19] Document env vars

**Project maintenance**

* [#28] Update pip in stage 3 of dockerfile
* [#27] Moved setuptools installation in dockerfile
* [#26] Update open-api-framework
* [#25] Update setup tools
* [#24] Upgrade webob
* [#23] Upgrade django version
* [#22] Add keycloak docker
* [#20] Update dependencies and fixed broken oidc tests
* [#17] Refactor base settings

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

:Version: 0.1.0
:Version: 0.2.0
:Source: https://github.com/maykinmedia/referentielijsten
:Keywords: referentielijsten, stamtabellen

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 @@
Referentielijsten API
=====================

:Version: 0.1.0
:Version: 0.2.0
:Source: https://github.com/maykinmedia/referentielijsten
:Keywords: referentielijsten, stamtabellen

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": "referentielijsten",
"version": "0.1.0",
"version": "0.2.0",
"description": "Referentielijsten API project",
"main": "src/static/referentielijsten/js/referentielijsten.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/referentielijsten/__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__ = "0.1.0"
__version__ = "0.2.0"
__author__ = "Maykin"
__homepage__ = "https://github.com/maykinmedia/referentielijsten"

0 comments on commit 45f34cf

Please sign in to comment.