Skip to content
Snippets Groups Projects
Verified Commit 237b6384 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'master' into refactor/calendar-overview

parents eb61cf73 e0b705ca
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
Pipeline #146892 failed
......@@ -38,13 +38,37 @@ Changed
Fixed
~~~~~
* GraphQL mutations did not return errors in case of exceptions.
* Group GraphQL queries failed when queried by owner or member.
* Nav submenu items could not be distinguished from regular ones.
`3.1.5`_ - 2023-09-02
---------------------
Fixed
~~~~~
* [Docs] A required package was not listed
* Migrations failed in some cases
`3.1.4`_ - 2023-07-20
---------------------
Fixed
~~~~~
* Extensible form was broken due to a missing import.
`3.1.3`_ – 2023-07-18
---------------------
Fixed
~~~~~
* [Docker] The build could silently continue even if frontend bundling failed, resulting
in an incomplete AlekSIS frontend app.
* GraphQL mutations did not return errors in case of exceptions.
* Rendering of "simple" PDF templates failed when used with S3 storage.
* Log messages on some loggers did not contain log message
* Group GraphQL queries failed when queried by owner or member.
* Nav submenu items could not be distinguished from regular ones.
`3.1.2`_ - 2023-07-05
---------------------
......@@ -1235,3 +1259,5 @@ Fixed
.. _3.1: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.1
.. _3.1.1: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.1.1
.. _3.1.2: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.1.2
.. _3.1.3: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.1.3
.. _3.1.4: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.1.4
......@@ -25,7 +25,7 @@ class Migration(migrations.Migration):
recorder = migrations.recorder
applied = False
try:
applied = recorder.MigrationRecorder.Migration.objects.filter(app="core", name="0046_add_room_model").exists()
applied = recorder.MigrationRecorder.Migration.objects.filter(app="core", name="0047_add_room_model").exists()
except ProgrammingError:
applied = False
if not applied:
......
......@@ -141,7 +141,7 @@ from `yarnpkg`, collect static files, and migrate the database to the final sche
You only need to install these additional dependencies if installing the meta-package:
.. code-block:: shell
apt install libmariadb-dev libldap2-dev libsasl2-dev
apt install libmariadb-dev libldap2-dev libsasl2-dev pkg-config
After that, you can install the aleksis meta-package, or only `aleksis-core`:
......
......@@ -87,7 +87,7 @@ django-celery-beat = "^2.2.0"
django-celery-email = "^3.0.0"
django-jsonstore = "^0.5.0"
django-polymorphic = "^3.0.0"
django-colorfield = "^0.9.0"
django-colorfield = "^0.10.0"
django-bleach = "^3.0.0"
django-guardian = "^2.2.0"
rules = "^3.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment