Skip to content

Commit

Permalink
Merge pull request #161 from wp-graphql/release/v0.5.2
Browse files Browse the repository at this point in the history
Release/v0.5.2
  • Loading branch information
jasonbahl authored May 16, 2022
2 parents 443a1bd + 25f8435 commit 9e8678d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/Auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,6 @@ public static function validate_token( $token = null, $refresh = false ) {
*/
JWT::$leeway = 60;

codecept_debug( [ 'tokenYo' => $token ] );

try {
$token = ! empty( $token ) ? JWT::decode( $token, new Key( self::get_secret_key(), 'HS256') ) : null;
} catch ( Exception $exception ) {
Expand Down
4 changes: 2 additions & 2 deletions wp-graphql-jwt-authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: https://www.wpgraphql.com
* Text Domain: wp-graphql-jwt-authentication-jwt-authentication
* Domain Path: /languages
* Version: 0.5.1
* Version: 0.5.2
* Requires at least: 4.7.0
* Tested up to: 4.8.3
* Requires PHP: 5.5
Expand Down Expand Up @@ -113,7 +113,7 @@ public function __wakeup() {
private function setup_constants() {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION' ) ) {
define( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION', '0.5.1' );
define( 'WPGRAPHQL_JWT_AUTHENTICATION_VERSION', '0.5.2' );
}

// Plugin Folder Path.
Expand Down

0 comments on commit 9e8678d

Please sign in to comment.