From 953093795869beb658bdd9be9442188f39e62b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20H=C3=B6gberg?= Date: Wed, 29 May 2019 16:12:30 +0200 Subject: [PATCH 1/4] Add DYNAMODB_ENDPOINT to the cache config (#5034) This adds the DYNAMODB_ENDPOINT environment variable to the dynamodb store of the cache cofig. Its usage is implemented in the framework as laravel/framework#28600 --- config/cache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cache.php b/config/cache.php index 30f0cae2..46751e62 100644 --- a/config/cache.php +++ b/config/cache.php @@ -82,6 +82,7 @@ return [ 'secret' => env('AWS_SECRET_ACCESS_KEY'), 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + 'endpoint' => env('DYNAMODB_ENDPOINT'), ], ], From bf60f7f74f9578902650c30887190f86515a1037 Mon Sep 17 00:00:00 2001 From: Antoni Siek Date: Thu, 30 May 2019 18:22:45 +0200 Subject: [PATCH 2/4] Added support for new redis URL property in config/database.php (#5037) Regarding laravel/framework#28612 --- config/database.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/database.php b/config/database.php index 0cf54458..7f5150ae 100644 --- a/config/database.php +++ b/config/database.php @@ -127,6 +127,7 @@ return [ ], 'default' => [ + 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'password' => env('REDIS_PASSWORD', null), 'port' => env('REDIS_PORT', 6379), @@ -134,6 +135,7 @@ return [ ], 'cache' => [ + 'url' => env('REDIS_URL'), 'host' => env('REDIS_HOST', '127.0.0.1'), 'password' => env('REDIS_PASSWORD', null), 'port' => env('REDIS_PORT', 6379), From 014a1f0f5e1e757b8669c2ae6e78c49fc8b2978d Mon Sep 17 00:00:00 2001 From: ziming Date: Fri, 31 May 2019 20:54:50 +0800 Subject: [PATCH 3/4] Update axios package (#5038) Update axios in package.json to ^0.19 so that I don't get security vulnerability notification emails from Github when I push to my laravel project repos even though ^0.18 covers 0.19 as well --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 52311d25..568c8d78 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" }, "devDependencies": { - "axios": "^0.18", + "axios": "^0.19", "bootstrap": "^4.1.0", "cross-env": "^5.1", "jquery": "^3.2", From 6f3d68f67f3dab0e0d853719696ede8dfd9cc4e1 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 4 Jun 2019 08:10:26 -0500 Subject: [PATCH 4/4] use generic default db config --- .env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index d058c34e..604b401f 100644 --- a/.env.example +++ b/.env.example @@ -9,9 +9,9 @@ LOG_CHANNEL=stack DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 -DB_DATABASE=homestead -DB_USERNAME=homestead -DB_PASSWORD=secret +DB_DATABASE=laravel +DB_USERNAME=root +DB_PASSWORD= BROADCAST_DRIVER=log CACHE_DRIVER=file