diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ccdb00145e58d584b9cf8f23051a6e29881a36ed..4a0dc901e6639897d87424054f27e45af886b36d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,10 +9,27 @@ and this project adheres to `Semantic Versioning`_. Unreleased ---------- +Breaking changes +~~~~~~~~~~~~~~~~ + +* The frontend is being rewritten as a Vue.js application compeltely separated from + the backend. This requires changes to deployments. The admin docs have been updated + accordingly. Administrators need to make sure to read the updated guide before + upgrading AlekSIS-Core to this version! + +Deprecated +~~~~~~~~~~ + +* All frontends using Django views and Django templates are deprecated and support + for them will be removed in AlekSIS-Core 4.0. All frontend code must be written in + Vue.js and be properly separated from the backend. In the same spirit, all backend + features must expose GraphQL APIs for the frontendd to use + Added ~~~~~ -* Introduce GraphQL API +* Introduce GraphQL API and Vue.js frontend implementation +* Introduce webpack bundling for frontend code Fixed ~~~~~ diff --git a/docs/conf.py b/docs/conf.py index 5d7a78f8e5caf4f590838c22d19ae6615be9da12..191cb1be10bf7d7a169f12961639a2063c4f5a00 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,7 +31,7 @@ author = "The AlekSIS Team" # The short X.Y version version = "3.0" # The full version, including alpha/beta/rc tags -release = "3.0.dev0" +release = "3.0.dev1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 1ed39af7a2dc3df00da7ff9fa8f5acdf3a855126..9ed899fdac465c955c0adf457c79832ad9912f70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "AlekSIS-Core" -version = "3.0.dev0" +version = "3.0.dev1" packages = [ { include = "aleksis" } ]