Skip to content
Snippets Groups Projects
Commit 27f9c2e8 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'release-3.1.1' into 'master'

Release 3.1.1

See merge request !1274
parents 2859e420 53423eaf
No related branches found
No related tags found
1 merge request!1274Release 3.1.1
Pipeline #134897 failed
......@@ -9,19 +9,22 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
`3.1.1` - 2023-07-01
--------------------
Fixed
~~~~~
* Progress page didn't work properly.
* About page failed to load for apps with an unknown licence.
* Partial permission checking on the person query was fixed.
* QUeries for persons with partial permissions failed.
* Some pages couldn't be scrolled when a task progress popup was open.
* Notification query failed on admin users without persons.
* Querying for notification caused unnecessary database requests.
* Loading bar didn't disappear on some pages after loading was finished.
* Support newer versions of django-oauth-toolkit.
`3.1`_ - 2022-05-30
`3.1`_ - 2023-05-30
-------------------
Changed
......@@ -41,7 +44,7 @@ Fixed
* Polling behavior of the whoAmI and permission queries was improved.
* Confirmation e-mail contained a wrong link.
`3.0`_ - 2022-05-11
`3.0`_ - 2023-05-11
-------------------
Added
......@@ -84,7 +87,7 @@ Fixed
* Backend cleanup task for Celery wasn't working.
* URLs in invitation email were broken.
* Invitation view didn't work.
* Invitation emails were using wrong styling.
* Invitation emails were using wrong styling.
* GraphQL queries and mutations did not log exceptions.
`3.0b3`_ - 2023-03-19
......@@ -1178,3 +1181,4 @@ Fixed
.. _3.0b3: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.0b3
.. _3.0: https://edugit.org/AlekSIS/official/AlekSIS-Core/-/tags/3.0
.. _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
......@@ -88,7 +88,7 @@ export default {
},
computed: {
unreadNotifications() {
return this.myNotifications.filter(n => !n.read);
return this.myNotifications.filter((n) => !n.read);
},
},
};
......
......@@ -25,13 +25,13 @@ django.setup()
# -- Project information -----------------------------------------------------
project = "AlekSIS-Core"
copyright = "2019-2022 The AlekSIS team"
copyright = "2019-2023 The AlekSIS team"
author = "The AlekSIS Team"
# The short X.Y version
version = "3.1"
# The full version, including alpha/beta/rc tags
release = "3.1.1.dev0"
release = "3.1.2.dev0"
# -- General configuration ---------------------------------------------------
......
[tool.poetry]
name = "AlekSIS-Core"
version = "3.1.1.dev0"
version = "3.1.2.dev0"
packages = [
{ include = "aleksis" }
]
......@@ -135,6 +135,7 @@ sentry = ["sentry-sdk"]
[tool.poetry.dev-dependencies]
aleksis-builddeps = {version=">=2023.1.dev0", allow-prereleases=true}
selenium = "<4.10.0"
uwsgi = "^2.0"
[tool.poetry.scripts]
......
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