Releases: affordablemobiles/GServerlessSupportLaravel
Releases · affordablemobiles/GServerlessSupportLaravel
View Pre-Compiler: Fix Blade extensions
v9.0.41 php-cs-fixer
Database: IAM Authentication
Use IAM authentication for Cloud SQL MySQL:
Assuming DatabaseServiceProvider
is loaded, in config/database.php
:
use A1comms\GaeSupportLaravel\Database\Auth\IAMAuthentication;
return [
....
'connections' => [
...
'mysql' => [
'driver' => 'mysql',
...
'username' => static fn () => env('DB_USERNAME', app(IAMAuthentication::class)->username()),
'password' => static fn () => env('DB_PASSWORD', app(IAMAuthentication::class)->password()),
...
],
...
],
];
Fix TraceID Logging for Un-Traced Requests
v9.0.39 php-cs-fixer
fix traceId logging
v6.0.41 fix opencensus traceId logging
Auth: Cloud Identity Groups check
v9.0.38 Auth: Cloud Identity Groups check
Task Queue: retry on task submit
v9.0.37 php-cs-fixer
Auth: FIX custom user provider for viaRequest
v9.0.36 Auth: FIX custom user provider for viaRequest
make PushQueue more flexible
v9.0.35 make PushQueue more flexible
is_gae_development with artisan
v9.0.34 is_gae_development with artisan
DB Service Provider on Development
v9.0.33 no DB cache on development