Skip to content

Commit 9e8678d

Browse files
authored
Merge pull request #161 from wp-graphql/release/v0.5.2
Release/v0.5.2
2 parents 443a1bd + 25f8435 commit 9e8678d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Auth.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,8 +584,6 @@ public static function validate_token( $token = null, $refresh = false ) {
584584
*/
585585
JWT::$leeway = 60;
586586

587-
codecept_debug( [ 'tokenYo' => $token ] );
588-
589587
try {
590588
$token = ! empty( $token ) ? JWT::decode( $token, new Key( self::get_secret_key(), 'HS256') ) : null;
591589
} catch ( Exception $exception ) {

wp-graphql-jwt-authentication.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author URI: https://www.wpgraphql.com
88
* Text Domain: wp-graphql-jwt-authentication-jwt-authentication
99
* Domain Path: /languages
10-
* Version: 0.5.1
10+
* Version: 0.5.2
1111
* Requires at least: 4.7.0
1212
* Tested up to: 4.8.3
1313
* Requires PHP: 5.5
@@ -113,7 +113,7 @@ public function __wakeup() {
113113
private function setup_constants() {
114114
// Plugin version.
115115
if ( ! defined( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION' ) ) {
116-
define( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION', '0.5.1' );
116+
define( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION', '0.5.2' );
117117
}
118118

119119
// Plugin Folder Path.

0 commit comments

Comments
 (0)