From df4f153749be5382ffa87fd79ef8cc5b8302a1e4 Mon Sep 17 00:00:00 2001 From: Enrique Chavez Date: Tue, 5 Mar 2019 17:50:02 -0600 Subject: [PATCH] Cookies && Token compatibility - Fix the root problem with gutenberg infinite loops and allow the token validation/generation if the WP cookie exists. - More info (https://github.com/Tmeister/wp-api-jwt-auth/pull/138) - Props: https://github.com/andrzejpiotrowski --- jwt-auth.php | 2 +- readme.txt | 13 ++++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/jwt-auth.php b/jwt-auth.php index 641637e..3b5878a 100755 --- a/jwt-auth.php +++ b/jwt-auth.php @@ -15,7 +15,7 @@ * Plugin Name: JWT Authentication for WP-API * Plugin URI: https://enriquechavez.co * Description: Extends the WP REST API using JSON Web Tokens Authentication as an authentication method. - * Version: 1.2.5 + * Version: 1.2.6 * Author: Enrique Chavez * Author URI: https://enriquechavez.co * License: GPL-2.0+ diff --git a/readme.txt b/readme.txt index b047d12..fa45072 100755 --- a/readme.txt +++ b/readme.txt @@ -1,12 +1,12 @@ === JWT Authentication for WP REST API === Contributors: tmeister -Donate link: https://enriquechavez.co +Donate link: https://www.paypal.me/wpchavez Tags: wp-json, jwt, json web authentication, wp-api Requires at least: 4.2 -Tested up to: 5.0 +Tested up to: 5.1 Requires PHP: 5.3.0 -Stable tag: 1.2.5 +Stable tag: 1.2.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -341,6 +341,13 @@ $data = array( ###Please read how to configured the plugin https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/ == Changelog == += 1.2.6 = +* Cookies && Token compatibility +* Fix the root problem with gutenberg infinite loops and allow the token validation/generation if the WP cookie exists. +* More info (https://github.com/Tmeister/wp-api-jwt-auth/pull/138) +* Props: https://github.com/andrzejpiotrowski + + = 1.2.5 = * Add Gutenberg Compatibility * More info (https://github.com/Tmeister/wp-api-jwt-auth/issues/126)