Skip to content

Releases: olssonm/l5-very-basic-auth

v6.1

27 Sep 12:51
f22a1ef
Compare
Choose a tag to compare

Fix for an issue with a random password upon setup.

Laravel 6.0

05 Sep 14:51
3a23285
Compare
Choose a tag to compare

Compatibility check for the newly released Laravel 6.0.

Support dropped for versions prior to Laravel 5.8. PHP 7.1 is now also required (note, PHP 7.2 is required for Laravel 6.0).

For other versions of Laravel, please check the v5.6-tag.

v5.6

02 Jul 07:18
b38c92a
Compare
Choose a tag to compare

Allows for the use of inline credentials, as such:

Route::get('/', [
    'as' => 'start',
    'uses' => 'StartController@index',
    'middleware' => 'auth.very_basic:username,password'
]);

See #25 for discussion.

v5.5

28 Feb 10:10
25172f3
Compare
Choose a tag to compare

Laravel 5.8 update

v5.4

17 Jan 08:06
2ec228e
Compare
Choose a tag to compare

The package now checks if the request expects a JSON-response; if so it will automatically provide one.

v5.3

05 Sep 15:33
9d5690d
Compare
Choose a tag to compare

Laravel 5.7 update

v5.2

07 Jun 07:07
f2e3c6e
Compare
Choose a tag to compare

Support for the realm-attribute that hopefully fixes some minor issues with Internet Explorer (thanks faiare)!

If updating from a previous version you will have to add realm to your config to be able to edit the value (check out the config stub) – a default value is set however.

Also some other cleanup and improvements.

v1.2.2

29 Mar 11:30
e275b60
Compare
Choose a tag to compare

Compatibility fix when using Laravel 5.2 and PHP7.x as a combo.

v5.1

16 Mar 12:28
e2cd1b9
Compare
Choose a tag to compare

New option for wildcard in the envs-array (thank you @amenk for your contribution!)

Fix for inefficient dependancy installation with Composer (sorry if the package took way too long to install). Also fixed the test suit with some better tests and more coverage.

v5.0

09 Feb 08:14
2848e9d
Compare
Choose a tag to compare

Lararel 5.6 update

Minor tweaks to make sure the package is usable for Laravel 5.4, 5.5 and 5.6. Also a new Travis CI-matrix for easier testing for future Laravel updates.