Skip to content

Commit e556649

Browse files
author
Evan Sims
authored
Release 7.9.0 (#411)
1 parent e33686e commit e556649

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
# Changelog
22

3+
## [7.9.0](https://github.com/auth0/laravel-auth0/tree/7.8.2) (2023-06-15)
4+
5+
### Added
6+
7+
- 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))
8+
- `Auth0\Laravel\Guards\GuardAbstract` now extends `Illuminate\Contracts\Auth\Guard`. ([\#410](https://github.com/auth0/laravel-auth0/pull/410))
9+
10+
### Fixed
11+
12+
- 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))
13+
- Resolved surrounding quote characters not being trimmed from environment variables and `.env` files during processing. ([\#409](https://github.com/auth0/laravel-auth0/pull/409))
14+
315
## [7.8.1](https://github.com/auth0/laravel-auth0/tree/7.8.1) (2023-05-19)
416

517
### Fixed
618

7-
- 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))
19+
- 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))
820

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

src/ServiceAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class ServiceAbstract extends InstanceEntityAbstract
2222
*
2323
* @var string
2424
*/
25-
public const VERSION = '7.8.1';
25+
public const VERSION = '7.9.0';
2626

2727
/**
2828
* 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.

0 commit comments

Comments
 (0)