Skip to content

Releases: affordablemobiles/GServerlessSupportLaravel

View Pre-Compiler: Fix Blade extensions

07 Nov 12:16
Compare
Choose a tag to compare

Database: IAM Authentication

13 Sep 12:36
Compare
Choose a tag to compare

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

20 Feb 11:57
Compare
Choose a tag to compare

fix traceId logging

20 Feb 12:24
Compare
Choose a tag to compare
v6.0.41

fix opencensus traceId logging

Auth: Cloud Identity Groups check

08 Feb 13:37
Compare
Choose a tag to compare
v9.0.38

Auth: Cloud Identity Groups check

Task Queue: retry on task submit

02 Feb 14:21
Compare
Choose a tag to compare
v9.0.37

php-cs-fixer

Auth: FIX custom user provider for viaRequest

14 Dec 15:30
Compare
Choose a tag to compare
v9.0.36

Auth: FIX custom user provider for viaRequest

make PushQueue more flexible

14 Dec 12:05
Compare
Choose a tag to compare
v9.0.35

make PushQueue more flexible

is_gae_development with artisan

16 Nov 13:26
Compare
Choose a tag to compare
v9.0.34

is_gae_development with artisan

DB Service Provider on Development

14 Nov 17:25
Compare
Choose a tag to compare
v9.0.33

no DB cache on development