Releases: nguyenanhung/laravel-basic-auth
Releases · nguyenanhung/laravel-basic-auth
Release version 1.3.4
Full Changelog: v1.3.3...v1.3.4
Fix response CORS Origin
Before
return $next($request)
->header('Access - Control - Allow - Origin', $origin)
->header('Access - Control - Allow - Methods', 'GET, POST, PUT, DELETE, OPTIONS')
->header('Access - Control - Allow - Headers', 'Content - Type, Authorization');
After
return $next($request)
->header('Access-Control-Allow-Origin', $origin)
->header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, OPTIONS')
->header('Access-Control-Allow-Headers', 'Content-Type, Authorization');
Release version 1.3.3
Full Changelog: v1.3.2...v1.3.3
Release version 1.3.2
Full Changelog: v1.3.1...v1.3.2
Release version 1.3.1
Full Changelog: v1.3.0...v1.3.1
Release version 1.3.0
Full Changelog: v1.2.3...v1.3.0
- Add whitelist IPS
Release version 1.2.3
Full Changelog: v1.2.2...v1.2.3
Release version 1.2.2
Full Changelog: v1.2.1...v1.2.2
Release version 1.2.1
Full Changelog: v1.2.0...v1.2.1
Release version 1.2.0
Full Changelog: v1.1.0...v1.2.0
- Add
BasicAuthWithCors
Release version 1.1.0
Full Changelog: v1.0.1...v1.1.0