From f54205b1216d7aa05a645f66efa46601f6a72911 Mon Sep 17 00:00:00 2001 From: Josh Crawford Date: Fri, 9 Aug 2024 21:20:28 +1000 Subject: [PATCH 1/2] Fix an issue with the Generic provider --- src/providers/Generic.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/providers/Generic.php b/src/providers/Generic.php index 160a846..bd39142 100644 --- a/src/providers/Generic.php +++ b/src/providers/Generic.php @@ -17,6 +17,11 @@ class Generic extends GenericProvider // Public Methods // ========================================================================= + public function getBaseApiUrl(): ?string + { + return $this->baseApiUrl; + } + public function getApiRequestQueryParams(Token $token): array { return [ From ff3d0905137490a751cb71c6e6369e864cf94d7c Mon Sep 17 00:00:00 2001 From: Josh Crawford Date: Fri, 9 Aug 2024 21:21:57 +1000 Subject: [PATCH 2/2] version 1.0.30 --- CHANGELOG.md | 5 +++++ composer.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b25871f..4356315 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.30 - 2024-08-09 + +### Fixed +- Fix an issue with the Generic provider. + ## 1.0.29 - 2024-08-09 ### Fixed diff --git a/composer.json b/composer.json index 2aa6f43..fcbd680 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "verbb/auth", "description": "A Craft CMS module to make working with authentication for third-parties a breeze.", - "version": "1.0.29", + "version": "1.0.30", "support": { "email": "support@verbb.io", "issues": "https://github.com/verbb/auth/issues?state=open",