diff --git a/CHANGELOG b/CHANGELOG index 64ac60c41..5e75dfa2f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,28 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +1.2.10 (2023-03-17) +------------------- + +Upgrade instructions are available at +https://docs.funkwhale.audio/admin/upgrading.html + +Bugfixes: + +- Fixes a security vulnerability that allows to download all media files without access control #2101 + +Contributors to our Issues: + +- Georg Krause +- JuniorJPDJ + +Special thanks to Conradowatz for reporting the vulnerability + +Committers: + +- JuniorJPDJ + + 1.2.9 (2022-11-25) ------------------ diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 24a67bf2e..f533e80c5 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "1.2.9" +__version__ = "1.2.10" __version_info__ = tuple( [ int(num) if num.isdigit() else num