Skip to content

Commit

Permalink
Release 7.9.0 (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jun 16, 2023
1 parent e33686e commit e556649
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
# Changelog

## [7.9.0](https://github.com/auth0/laravel-auth0/tree/7.8.2) (2023-06-15)

### Added

- SDK configuration (`config/auth0.php`) now supports a `configurationPath` property for specifying a custom search path for `.auth0.*.json` and `.env*` files. ([\#407](https://github.com/auth0/laravel-auth0/pull/407))
- `Auth0\Laravel\Guards\GuardAbstract` now extends `Illuminate\Contracts\Auth\Guard`. ([\#410](https://github.com/auth0/laravel-auth0/pull/410))

### Fixed

- Resolved host environment variables not being loaded as expected when a `.env` file is also used. ([\#408](https://github.com/auth0/laravel-auth0/pull/408))
- Resolved surrounding quote characters not being trimmed from environment variables and `.env` files during processing. ([\#409](https://github.com/auth0/laravel-auth0/pull/409))

## [7.8.1](https://github.com/auth0/laravel-auth0/tree/7.8.1) (2023-05-19)

### Fixed

- Resolved an issue where parsing `.env` files could sometimes throw an exception when handling non-key-value pair strings. ([\#395](https://github.com/auth0/laravel-auth0/pull/395))
- Resolved an issue where parsing `.env` files could sometimes throw an exception when handling non-key-value pair strings. ([\#395](https://github.com/auth0/laravel-auth0/pull/395))

## [7.8.0](https://github.com/auth0/laravel-auth0/tree/7.8.0) (2023-05-18)

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.8.1';
public const VERSION = '7.9.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 e556649

Please sign in to comment.