Skip to content

Commit

Permalink
Bump to 7.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jul 24, 2023
1 parent 91477db commit 994b927
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [7.10.0](https://github.com/auth0/laravel-auth0/tree/7.9.1) (2023-07-24)

### Added

- Organization Name support added for Authentication API and token handling ¹

### Changed

- Guards are now registered with the priority middleware list.
- Bumped `auth0-php` dependency version range to `^8.7`.
- Updated telemetry to indicate new `laravel` package name (previously `laravel-auth0`.)

### Fixed

- Addressed issue where placeholder `AUTH0_` dotenv values could erroneously be interpreted as true configuration values.

> **Note**
> ¹ To use this feature, an Auth0 tenant must have support for it enabled. This feature is not yet available to all tenants.
## [7.9.1](https://github.com/auth0/laravel-auth0/tree/7.9.1) (2023-06-21)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"require": {
"php": "^8.0",
"ext-json": "*",
"auth0/auth0-php": "^8.6",
"auth0/auth0-php": "^8.7",
"illuminate/contracts": "^9 || ^10",
"illuminate/http": "^9 || ^10",
"illuminate/support": "^9 || ^10",
Expand Down
2 changes: 1 addition & 1 deletion src/Entities/InstanceEntityAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ protected function getTokenCachePool(): CacheItemPoolInterface
protected function setSdkTelemetry(): self
{
HttpTelemetry::setEnvProperty('Laravel', app()->version());
HttpTelemetry::setPackage('laravel-auth0', Service::VERSION);
HttpTelemetry::setPackage('laravel', Service::VERSION);

return $this;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class ServiceAbstract extends InstanceEntityAbstract
*
* @var string
*/
public const VERSION = '7.9.1';
public const VERSION = '7.10.0';

/**
* Decode a PSR-7 HTTP Response Message containing a JSON content body to a PHP array. Returns null if the response was not successful, or the response body was not JSON.
Expand Down

0 comments on commit 994b927

Please sign in to comment.