Merge branch 'release/0.18.3'

merge-requests/757/head 0.18.3
Eliot Berriot 2019-03-21 10:41:29 +01:00
commit 78734a86e3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
22 zmienionych plików z 52 dodań i 33 usunięć

Wyświetl plik

@ -10,6 +10,57 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
.. towncrier
0.18.3 (2019-03-21)
-------------------
Upgrade instructions are available at
https://docs.funkwhale.audio/index.html
Avoid mixed content when deploying mono-container behind proxy [Manual action required]
---------------------------------------------------------------------------------------
*You are only concerned if you use the mono-container docker deployment behind a reverse proxy*
Because of `an issue in our mono-container configuration <https://github.com/thetarkus/docker-funkwhale/issues/19>`_, users deploying Funkwhale via docker
using our `funkwhale/all-in-one` image could face some mixed content warnings (and possibly other troubles)
when browsing the Web UI.
This is fixed in this release, but on existing deployments, you'll need to add ``NESTED_PROXY=1`` in your container
environment (either in your ``.env`` file, or via your container management tool), then recreate your funkwhale container.
Enhancements:
- Added title on hover for truncated content (#766)
- Ask for confirmation before leaving upload page if there is a an upload in process (#630)
- Exclude in-place imported files from quota computation (#570)
- Truncate filename in library file table to ensure correct display of the table. (#735)
Bugfixes:
- Avoid mixed content when deploying mono-container behind HTTPS proxy (thetarkus/docker-funkwhale#19)
- Display new notifications immediatly on notifications page (#729)
- Ensure cover art from uploaded files is picked up properly on existing albums (#757)
- Fixed a crash when federating a track with unspecified position
- Fixed broken Activity and Actor modules in django admin (#767)
- Fixed broken sample apache configuration (#764)
- Fixed constant and unpredictable reordering during file upload (#716)
- Fixed delivering of local activities causing unintended side effects, such as rollbacking changes (#737)
- Fixed escaping issues in translated strings (#652)
- Fixed saving moderation policy when clicking on "Cancel" (#751)
- i18n: Update page title when changing the App's language. (#511)
- Include disc number in Subsonic responses (#765)
- Do not send notification when rejecting a follow on a local library (#743)
Documentation:
- Added documentation on mono-container docker upgrade (#713)
- Added documentation to set up let's encrypt certificate (#745)
0.18.2 (2019-02-13)
-------------------

Wyświetl plik

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "0.18.2"
__version__ = "0.18.3"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num

Wyświetl plik

@ -1 +0,0 @@
i18n: Update page title when changing the App's language. (#511)

Wyświetl plik

@ -1 +0,0 @@
Exclude in-place imported files from quota computation (#570)

Wyświetl plik

@ -1 +0,0 @@
Ask for confirmation before leaving upload page if there is a an upload in process (#630)

Wyświetl plik

@ -1 +0,0 @@
Fixed escaping issues in translated strings (#652)

Wyświetl plik

@ -1 +0,0 @@
Added documentation on mono-container docker upgrade (#713)

Wyświetl plik

@ -1 +0,0 @@
Fixed constant and unpredictable reordering during file upload (#716)

Wyświetl plik

@ -1 +0,0 @@
Display new notifications immediatly on notifications page (#729)

Wyświetl plik

@ -1 +0,0 @@
Truncate filename in library file table to ensure correct display of the table. (#735)

Wyświetl plik

@ -1 +0,0 @@
Fixed delivering of local activities causing unintended side effects, such as rollbacking changes (#737)

Wyświetl plik

@ -1 +0,0 @@
Do not send notification when rejecting a follow on a local library (#743)

Wyświetl plik

@ -1 +0,0 @@
Added documentation to set up let's encrypt certificate (#745)

Wyświetl plik

@ -1 +0,0 @@
Fixed saving moderation policy when clicking on "Cancel" (#751)

Wyświetl plik

@ -1 +0,0 @@
Ensure cover art from uploaded files is picked up properly on existing albums (#757)

Wyświetl plik

@ -1 +0,0 @@
Fixed broken sample apache configuration (#764)

Wyświetl plik

@ -1 +0,0 @@
Include disc number in Subsonic responses (#765)

Wyświetl plik

@ -1 +0,0 @@
Added title on hover for truncated content (#766)

Wyświetl plik

@ -1 +0,0 @@
Fixed broken Activity and Actor modules in django admin (#767)

Wyświetl plik

@ -1 +0,0 @@
Avoid mixed content when deploying mono-container behind HTTPS proxy (thetarkus/docker-funkwhale#19)

Wyświetl plik

@ -1 +0,0 @@
Fixed a crash when federating a track with unspecified position

Wyświetl plik

@ -5,16 +5,3 @@ Next release notes
Those release notes refer to the current development branch and are reset
after each release.
Avoid mixed content when deploying mono-container behind proxy [Manual action required]
---------------------------------------------------------------------------------------------
*You are only concerned if you use the mono-container docker deployment behind a reverse proxy*
Because of `an issue in our mono-container configuration <https://github.com/thetarkus/docker-funkwhale/issues/19>`_, users deploying Funkwhale via docker
using our `funkwhale/all-in-one` image could face some mixed content warnings (and possibly other troubles)
when browsing the Web UI.
This is fixed in this release, but on existing deployments, you'll need to add ``NESTED_PROXY=1`` in your container
environment (either in your ``.env`` file, or via your container management tool), then recreate your funkwhale container.