From 9f8fca44d44b2e7bae76c3e129bac678ff7e2d63 Mon Sep 17 00:00:00 2001 From: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com> Date: Sat, 15 Jun 2024 00:31:01 +0530 Subject: [PATCH 1/2] Update redis.config.php add dbindex for redis as comment. referenced from a6f2a3c commit Signed-off-by: Arjun Santhosh <139119101+Hujgo@users.noreply.github.com> --- .config/redis.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/redis.config.php b/.config/redis.config.php index 346457c5..2beff0ae 100644 --- a/.config/redis.config.php +++ b/.config/redis.config.php @@ -6,6 +6,7 @@ if (getenv('REDIS_HOST')) { 'redis' => array( 'host' => getenv('REDIS_HOST'), 'password' => getenv('REDIS_HOST_PASSWORD_FILE') && file_exists(getenv('REDIS_HOST_PASSWORD_FILE')) ? trim(file_get_contents(getenv('REDIS_HOST_PASSWORD_FILE'))) : (string) getenv('REDIS_HOST_PASSWORD'), + 'dbindex' => (int) getenv('REDIS_DB_INDEX'), ), ); From 4daafc8d2092b4187311a2a62d38eca37d58616f Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 13 Feb 2025 20:34:07 +0000 Subject: [PATCH 2/2] Bump stable to 30.0.6 Signed-off-by: J0WI --- generate-stackbrew-library.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate-stackbrew-library.sh b/generate-stackbrew-library.sh index 607ee45f..2ea11765 100755 --- a/generate-stackbrew-library.sh +++ b/generate-stackbrew-library.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -Eeuo pipefail -stable_channel='30.0.5' +stable_channel='30.0.6' self="$(basename "$BASH_SOURCE")" cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"