From c8575bbc0fb7091e92f316628940acf3790f04da Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Fri, 21 Sep 2018 18:16:48 -0700 Subject: [PATCH] v2.1.21 --- CHANGELOG.md | 17 +++++++++++++++++ plexpy/logger.py | 1 - plexpy/version.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0d60c09..db3d2d8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## v2.1.21 (2018-09-21) + +* Notifications: + * Fix: Content Rating notification condition always evaluating to True. (Thanks @Arcanemagus) + * Fix: Script arguments not showing substituted values in the notification logs. +* UI: + * New: Unsupported browser warning when using IE or Edge. + * Fix: Misaligned refresh image icon in album search results. (Thanks @Sheigutn) + * Fix: Music history showing as pre-Tautulli in stream info modal. +* Other: + * Fix: Typo in Systemd init script group value. (Thanks @ldumont) + * Fix: Execute permissions in Fedora/CentOS and Systemd init scripts. (Thanks @wilmardo) + * Fix: Systemd init script instructions per Linux distro. (Thanks @samwiseg00) + * Change: Fallback to Tautulli data directory if logs/backup/cache/newsletter directories are not writable. + * Change: Check for alternative reverse proxy headers if X-Forwarded-Host is missing. + + ## v2.1.20 (2018-09-05) * No changes. diff --git a/plexpy/logger.py b/plexpy/logger.py index 7b530d58..2345e139 100644 --- a/plexpy/logger.py +++ b/plexpy/logger.py @@ -137,7 +137,6 @@ class PlexTokenFilter(logging.Filter): def __init__(self): pass - def filter(self, record): try: tokens = re.findall(r'X-Plex-Token(?:=|%3D)([a-zA-Z0-9]+)', record.msg) diff --git a/plexpy/version.py b/plexpy/version.py index 1e09edc8..3a73961f 100644 --- a/plexpy/version.py +++ b/plexpy/version.py @@ -1,2 +1,2 @@ PLEXPY_BRANCH = "master" -PLEXPY_RELEASE_VERSION = "v2.1.20" +PLEXPY_RELEASE_VERSION = "v2.1.21"