Releases: auth0/auth0-PHP
Releases · auth0/auth0-PHP
8.3.2
8.3.1
Changed
Fixed
Note: Previously in some circumstances, cookie secrets were not always being required in strategies where they should have been required. This has been resolved as part of the fixes in this release. If you are suddenly prompted to configure a cookie secret in an app that doesn't use sessions/cookies, please ensure you are using the correct strategy: https://github.com/auth0/auth0-PHP/tree/8.3.1#configuration-strategies
8.3.0
Added
Changed
- Treat passing an empty string to SdkConfiguration as the default undefined value type of NULL #643 (evansims)
- Enable configuration of SessionStore and CookieStore
samesite
property #645 (evansims) - Add hardcoded debugging flag to CookieStore to disable encryption of session cookies #644 (evansims)
- Update
getRequestParameter()
filter to use FILTER_SANITIZE_FULL_SPECIAL_CHARS and allow passing extra filter options #642 (evansims) - Defer/batch "Set-Cookie" headers at
login()
for transient cookies, andclear()
#641 (evansims)
8.2.1
Fixed
- Fixed an issue in
Auth0\SDK\Configuration\SdkConfiguration
wherecustomDomain
was not properly formatted in some configurations, leading to inconsistencies in certain SDK functions, such as Token validation.customDomain
is now formatted identically todomain
. #633 (evansims)
Closed Issues
- Resolves #630 (barasimumatik)
8.2.0
Many thanks to our community contributors for this release: elbebass, fullstackfool, jeromefitzpatrick, marko-ilic and sepiariver.
Added
- Add bearer token extraction helper,
Auth0\SDK\Auth0::getBearerToken()
#620 (evansims) - Add configuration strategy constants, e.g.
Auth0\SDK\Configuration\SdkConfiguration::STRATEGY_API
#619 (evansims)
Changed
- Throw
Auth0\SDK\Exception\InvalidTokenException
on JsonException #614 (marko-ilic) - Throw
Auth0\SDK\Exception\NetworkException
when Management API credential exchange fails #608 (sepiariver)
Documentation Contributions
- Correct the new method name for get_authorize_link() for 8.x in UPGRADE.md #623 (jeromefitzpatrick)
- Remove PHP 7.3 README note (deprecated) #610 (evansims)
- Update CONTRIBUTING.md guidance #609 (sepiariver)
- Update README.md guidance on
management
configuration strategy (domain
is required) #604 (fullstackfool) - Correct README.md typos in Management API example #602 (elbebass)
Other Improvements