From d30526e4cb00c764131b0349bd9eebe39b4ac06a Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Thu, 22 Sep 2022 08:00:39 -0500 Subject: [PATCH] Release 8.3.0 (#647) --- CHANGELOG.md | 15 ++++++++++++++- src/Auth0.php | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e49cee5..6b252b96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ -# CHANGELOG +# Change Log + +## [8.3.0](https://github.com/auth0/auth0-PHP/tree/8.3.0) (2022-09-22) +[Full Changelog](https://github.com/auth0/auth0-PHP/compare/8.2.1...8.3.0) + +**Added** +- [SDK-3636] Add PSR-14 Event Dispatcher, for ultra customizable session storage purposes [\#646](https://github.com/auth0/auth0-PHP/pull/646) ([evansims](https://github.com/evansims)) + +**Changed** +- [SDK-3633] Treat passing an empty string to SdkConfiguration as the default undefined value type of NULL [\#643](https://github.com/auth0/auth0-PHP/pull/643) ([evansims](https://github.com/evansims)) +- [SDK-3635] Enable configuration of SessionStore and CookieStore `samesite` property [\#645](https://github.com/auth0/auth0-PHP/pull/645) ([evansims](https://github.com/evansims)) +- [SDK-3634] Add hardcoded debugging flag to CookieStore to disable encryption of session cookies [\#644](https://github.com/auth0/auth0-PHP/pull/644) ([evansims](https://github.com/evansims)) +- [SDK-3632] Update `getRequestParameter()` filter to use FILTER_SANITIZE_FULL_SPECIAL_CHARS and allow passing extra filter options [\#642](https://github.com/auth0/auth0-PHP/pull/642) ([evansims](https://github.com/evansims)) +- [SDK-3631] Defer/batch "Set-Cookie" headers at `login()` for transient cookies, and `clear()` [\#641](https://github.com/auth0/auth0-PHP/pull/641) ([evansims](https://github.com/evansims)) ## [8.2.1](https://github.com/auth0/auth0-PHP/tree/8.2.1) (2022-06-06) diff --git a/src/Auth0.php b/src/Auth0.php index e07f5b53..5fa1acca 100644 --- a/src/Auth0.php +++ b/src/Auth0.php @@ -22,7 +22,7 @@ */ final class Auth0 implements Auth0Interface { - public const VERSION = '8.2.1'; + public const VERSION = '8.3.0'; /** * Instance of SdkConfiguration, for shared configuration across classes.