From df4805007e291769c1e99e4d1221b06b21e06074 Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Sun, 4 Aug 2024 18:55:35 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 5 +++++ tests/Grant/AuthCodeGrantTest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f0b78058..85c99ac6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [Unreleased] +### Fixed +- Auto-generated event emitter is now persisted. Previously, a new emitter was generated every time (PR #1428) +- Fixed bug where you could not omit a redirect uri even if one had not been specified during the auth request (PR #1428) + ## [9.0.0] - released 2024-05-13 ### Added - Device Authorization Grant added (PR #1074) diff --git a/tests/Grant/AuthCodeGrantTest.php b/tests/Grant/AuthCodeGrantTest.php index 1cfe1ce83..fc6ac07c3 100644 --- a/tests/Grant/AuthCodeGrantTest.php +++ b/tests/Grant/AuthCodeGrantTest.php @@ -1200,7 +1200,7 @@ public function testRespondToAccessTokenRequestRedirectUriMismatch(): void $grant->respondToAccessTokenRequest($request, new StubResponseType(), new DateInterval('PT10M')); } - public function testRespondToAccessTokenRequestUnecessaryRedirectUri(): void + public function testRejectAccessTokenRequestIfRedirectUriSpecifiedButNotInOriginalAuthCodeRequest(): void { $client = new ClientEntity();