Merges branch 'main' into dev

isekai
Tim Nolte 4 years ago
commit c839083cf1
No known key found for this signature in database
GPG Key ID: 33E7CA1AD448F3B3

@ -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.

@ -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.

@ -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 ""

@ -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.

2
package-lock.json generated

@ -1,6 +1,6 @@
{
"name": "openid-connect-generic",
"version": "3.8.1",
"version": "3.8.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

@ -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": {

@ -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.

Loading…
Cancel
Save