diff --git a/CHANGELOG.md b/CHANGELOG.md index 26520fa..57f42df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # OpenId Connect Generic Changelog +3.8.2 + +* Fix: @timnolte - Fixed reported XSS vulnerability on WordPress login screen. + 3.8.1 * Fix: @timnolte - Prevent SSO redirect on password protected posts. diff --git a/README.md b/README.md index e8dad46..5263396 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **Tags:** security, login, oauth2, openidconnect, apps, authentication, autologin, sso **Requires at least:** 4.9 **Tested up to:** 5.6 -**Stable tag:** 3.8.1 +**Stable tag:** 3.8.2 **Requires PHP:** 7.1 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -51,6 +51,10 @@ On the settings page for this plugin (Dashboard > Settings > OpenID Connect Gene ## Changelog ## +### 3.8.2 ### + +* Fix: @timnolte - Fixed reported XSS vulnerability on WordPress login screen. + ### 3.8.1 ### * Fix: @timnolte - Prevent SSO redirect on password protected posts. diff --git a/languages/openid-connect-generic.pot b/languages/openid-connect-generic.pot index a9af9f7..ed55852 100644 --- a/languages/openid-connect-generic.pot +++ b/languages/openid-connect-generic.pot @@ -2,10 +2,10 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: OpenID Connect Generic 3.8.1\n" +"Project-Id-Version: OpenID Connect Generic 3.8.2\n" "Report-Msgid-Bugs-To: " "https://github.com/daggerhart/openid-connect-generic/issues\n" -"POT-Creation-Date: 2021-03-22 16:22:00+00:00\n" +"POT-Creation-Date: 2021-03-24 13:50:19+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -137,11 +137,11 @@ msgstr "" msgid "Unauthorized access." msgstr "" -#: includes/openid-connect-generic-login-form.php:157 +#: includes/openid-connect-generic-login-form.php:158 msgid "ERROR (%1$s)" msgstr "" -#: includes/openid-connect-generic-login-form.php:173 +#: includes/openid-connect-generic-login-form.php:174 msgid "Login with OpenID Connect" msgstr "" diff --git a/openid-connect-generic.php b/openid-connect-generic.php index 3d16edd..a6ea4fc 100644 --- a/openid-connect-generic.php +++ b/openid-connect-generic.php @@ -16,7 +16,7 @@ * Plugin Name: OpenID Connect Generic * Plugin URI: https://github.com/daggerhart/openid-connect-generic * Description: Connect to an OpenID Connect generic client using Authorization Code Flow. - * Version: 3.8.1 + * Version: 3.8.2 * Author: daggerhart * Author URI: http://www.daggerhart.com * Text Domain: daggerhart-openid-connect-generic @@ -80,7 +80,7 @@ class OpenID_Connect_Generic { * * @var */ - const VERSION = '3.8.1'; + const VERSION = '3.8.2'; /** * Plugin settings. diff --git a/package-lock.json b/package-lock.json index c50a7e3..92c31b5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "openid-connect-generic", - "version": "3.8.1", + "version": "3.8.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 065d119..53b818d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openid-connect-generic", - "version": "3.8.1", + "version": "3.8.2", "description": "OpenID Connect generic WordPress plugin.", "main": "Gruntfile.js", "repository": { diff --git a/readme.txt b/readme.txt index 5d90497..0a7586a 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://www.daggerhart.com/ Tags: security, login, oauth2, openidconnect, apps, authentication, autologin, sso Requires at least: 4.9 Tested up to: 5.6 -Stable tag: 3.8.1 +Stable tag: 3.8.2 Requires PHP: 7.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -51,6 +51,10 @@ On the settings page for this plugin (Dashboard > Settings > OpenID Connect Gene == Changelog == += 3.8.2 = + +* Fix: @timnolte - Fixed reported XSS vulnerability on WordPress login screen. + = 3.8.1 = * Fix: @timnolte - Prevent SSO redirect on password protected posts.