Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.7.0 #721

Merged
merged 2 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ body:
label: SDK Version
description: What version of our SDK are you running? (`composer show | grep auth0/auth0-php`)
options:
- 8.7
- 8.6
- 8.5
- 8.4
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [8.7.0](https://github.com/auth0/auth0-PHP/tree/8.7.0) - 2023-07-20

**Added**

- Organization Name support added for Authentication API and token handling ¹ ([#719](https://github.com/auth0/auth0-PHP/pull/719))

> **Note**
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.

## [8.6.0](https://github.com/auth0/auth0-PHP/tree/8.6.0) - 2023-05-02

**Added**
Expand All @@ -11,7 +20,8 @@
- `Auth0\SDK\Configuration\SdkConfiguration` has been updated to accept a `pushedAuthorizationRequest` boolean to enable this feature.
- `Auth0\SDK\Auth0::isAuthenticated()` has been added as a shortcut method. It is an alias for `getCredentials() !== null`.

¹ **Note:** To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
> **Note**
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.

## [8.5.0](https://github.com/auth0/auth0-PHP/tree/8.5.0) - 2023-03-27

Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class Auth0 implements Auth0Interface
/**
* @var string
*/
public const VERSION = '8.6.0';
public const VERSION = '8.7.0';

/**
* Authentication Client.
Expand Down
Loading