Releases: rafalp/Misago
0.39.1
0.39.0
Misago 0.39 is a feature release, delivering a new plugin system that is much more powerful and easier to work with than the old one. This release also marks a starting point for our effort to remove React.js from Misago's codebase, with the 0.39 release removing a React.js from the categories page, making it fully customizable with Django templates, as it should be.
This release also moves Misago's admin assets build pipeline from Webpack to Vite.
Changelog
0.39.0 beta 1
This is a first beta release of Misago 0.39, which introduces a new plugin system to Misago.
0.38.1
0.38
Misago 0.38 is a bugfix release addressing immediate issues found in the Misago 0.37 release:
Changelog
- Updates Django LTS version used from from 3.2 to 4.2 which supports Python 3.12.
- Replaces
django-redis
dependency withredis-py
. - Changes
CACHE
backend from 3rd party one to built indjango.core.cache.backends.redis.RedisCache
. - Removes deprecated
USE_L10N
fromsettings.py
. - Makes cache for JavaScript translations (
django-i18n.js
inurls.py
) invalidate with Misago version or locale changes. - Removes deprecated
debug_toolbar.panels.logging.LoggingPanel
. - Replaces development build of admin's JavaScript and CSS files with minified ones.
- Fixes admin's JavaScript files to don't break Django's
collecstatic
. - Fixes crash on 404 error when request is made with AJAX.
0.38.0.rc4
This is a bugfix release that fixes crash on 404 page when request was made with AJAX.
0.38.0.rc1
Misago 0.38.0 RC 1 is a maintenance release that updates Django version to 4.2 LTS.
Changelog
- Replaced
django-redis
dependency withredis-py
- Changed
CACHE
backend todjango.core.cache.backends.redis.RedisCache
- Removed deprecated
USE_L10N
fromsettings.py
- Made locale cache for
django-i18n.js
inurls.py
invalidate with Misago version and locale change - Removed
debug_toolbar.panels.logging.LoggingPanel
fromsettings.py
0.38.0.rc3
This release removes faulty source maps for admin assets that crash Django's collectstatic
0.38.0.rc2
Changelog
- Replace dev build of admin assets with production ones.
0.37
Misago 0.37 is a maintenance release that adds context markers to all translation strings in Misago. This is a breaking change, but it resolves the issue with ambiguous translations, where multiple concepts represented with single word in english language had single translate message, making proper translation to language where different words are used impossible.
In addition this release updates Misago to use Python 3.12 and updates its dependencies.