diff --git a/CHANGELOG b/CHANGELOG index 4c858c9da..4df1f926b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,23 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +1.1.3 (unreleased) +Upgrade instructions are available at +https://docs.funkwhale.audio/admin/upgrading.html + +Enhancements: + +- Test better tagging of Docker Images (#1505) + +Bugfixes: + +- Fix the scrobbler plugin submitting literal "None" as MusicBrainz ID (#1498) +- Add worker-src to nginx header to prevent issues (#1489) +- Only suggest typed tag once if it already exists +- Implement access control on the moderation views (#1494) +- Prevent open redirect on login (#1492) + + 1.1.2 (2021-05-19) ------------------ diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 9efdef3c1..2f679f824 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "1.1.2" +__version__ = "1.1.3" __version_info__ = tuple( [ int(num) if num.isdigit() else num diff --git a/changes/changelog.d/1303.Bugfix b/changes/changelog.d/1303.Bugfix deleted file mode 100644 index 9a77c1865..000000000 --- a/changes/changelog.d/1303.Bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix federation issues by increasing FUNKWHALE_WEB_WORKERS (#1303) diff --git a/changes/changelog.d/1498.bugfix b/changes/changelog.d/1498.bugfix new file mode 100644 index 000000000..5290c9e2a --- /dev/null +++ b/changes/changelog.d/1498.bugfix @@ -0,0 +1 @@ +Fix the scrobbler plugin submitting literal "None" as MusicBrainz ID (#1498)