From 2cd5d5fc2958c6d1b57d224406c293f88af50444 Mon Sep 17 00:00:00 2001 From: Luis Gonzalez Date: Sun, 29 May 2022 14:15:06 -0500 Subject: [PATCH 1/3] Upgrade JWT Package This old version needs to be upgraded to avoid problems with other dependencies like Laravel Passport. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f5af2cd..db8e44e 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "phpseclib/phpseclib": "~2.0", "google/cloud-tasks": "^1.10", "thecodingmachine/safe": "^1.0|^2.0", - "firebase/php-jwt": "^5.0" + "firebase/php-jwt": "^5.5||^6.0" }, "require-dev": { "orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0", From f02d4bd8952ca506b2928ca2db4fba627f29de68 Mon Sep 17 00:00:00 2001 From: Marick van Tuil Date: Sun, 19 Jun 2022 12:49:12 +0200 Subject: [PATCH 2/3] Remove firebase/php-jwt require It is no longer needed to target a specific version as google/auth now supports both 5.x and 6.x of firebase/php-jwt --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index db8e44e..c01c313 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,7 @@ "ext-json": "*", "phpseclib/phpseclib": "~2.0", "google/cloud-tasks": "^1.10", - "thecodingmachine/safe": "^1.0|^2.0", - "firebase/php-jwt": "^5.5||^6.0" + "thecodingmachine/safe": "^1.0|^2.0" }, "require-dev": { "orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0", From 4ce3b84d310656e59d2382f6d3a2175ace3c16b0 Mon Sep 17 00:00:00 2001 From: Marick van Tuil Date: Sun, 19 Jun 2022 12:52:30 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20689c0..170bcaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 3.1.3 - 2022-06-19 + +**Fixed** + +- Fixed JWT 5.x/6.x constraint problems + ## 3.1.2 - 2022-04-24 **Fixed**