diff --git a/internal/plugins/mysql80/mysql80.go b/internal/plugins/mysql80/mysql80.go index 4fe1ed7d..9c3fae4c 100644 --- a/internal/plugins/mysql80/mysql80.go +++ b/internal/plugins/mysql80/mysql80.go @@ -4,7 +4,7 @@ var ( Name = "MySQL-8.0" Description = "MySQL 是最流行的关系型数据库管理系统之一,Oracle 旗下产品。(建议内存 > 2G 安装)" Slug = "mysql80" - Version = "8.0.35" + Version = "8.0.36" Requires = []string{} Excludes = []string{"mysql57"} Install = `bash /www/panel/scripts/mysql/install.sh 80` diff --git a/internal/plugins/php81/php81.go b/internal/plugins/php81/php81.go index f87ba573..cb9a1cc2 100644 --- a/internal/plugins/php81/php81.go +++ b/internal/plugins/php81/php81.go @@ -4,7 +4,7 @@ var ( Name = "PHP-8.1" Description = "PHP 是世界上最好的语言!" Slug = "php81" - Version = "8.1.26" + Version = "8.1.27" Requires = []string{} Excludes = []string{} Install = `bash /www/panel/scripts/php/install.sh 81` diff --git a/internal/plugins/php82/php82.go b/internal/plugins/php82/php82.go index 931f02f7..7896d6d5 100644 --- a/internal/plugins/php82/php82.go +++ b/internal/plugins/php82/php82.go @@ -4,7 +4,7 @@ var ( Name = "PHP-8.2" Description = "PHP 是世界上最好的语言!" Slug = "php82" - Version = "8.2.13" + Version = "8.2.16" Requires = []string{} Excludes = []string{} Install = `bash /www/panel/scripts/php/install.sh 82` diff --git a/internal/plugins/php83/php83.go b/internal/plugins/php83/php83.go index df222ff3..fed85990 100644 --- a/internal/plugins/php83/php83.go +++ b/internal/plugins/php83/php83.go @@ -4,7 +4,7 @@ var ( Name = "PHP-8.3" Description = "PHP 是世界上最好的语言!" Slug = "php83" - Version = "8.3.0" + Version = "8.3.3" Requires = []string{} Excludes = []string{} Install = `bash /www/panel/scripts/php/install.sh 83` diff --git a/internal/plugins/postgresql15/postgresql15.go b/internal/plugins/postgresql15/postgresql15.go index 19ef8ddc..28f6efc4 100644 --- a/internal/plugins/postgresql15/postgresql15.go +++ b/internal/plugins/postgresql15/postgresql15.go @@ -4,7 +4,7 @@ var ( Name = "PostgreSQL-15" Description = "PostgreSQL 是世界上最先进的开源关系数据库,在类似 BSD 与 MIT 许可的 PostgreSQL 许可下发行。" Slug = "postgresql15" - Version = "15.5" + Version = "15.6" Requires = []string{} Excludes = []string{"postgresql16"} Install = `bash /www/panel/scripts/postgresql/install.sh 15` diff --git a/internal/plugins/postgresql16/postgresql16.go b/internal/plugins/postgresql16/postgresql16.go index 5bea1449..44a0ce69 100644 --- a/internal/plugins/postgresql16/postgresql16.go +++ b/internal/plugins/postgresql16/postgresql16.go @@ -4,7 +4,7 @@ var ( Name = "PostgreSQL-16" Description = "PostgreSQL 是世界上最先进的开源关系数据库,在类似 BSD 与 MIT 许可的 PostgreSQL 许可下发行。" Slug = "postgresql16" - Version = "16.1" + Version = "16.2" Requires = []string{} Excludes = []string{"postgresql15"} Install = `bash /www/panel/scripts/postgresql/install.sh 16` diff --git a/internal/plugins/redis/redis.go b/internal/plugins/redis/redis.go index bc7bcc7e..2f82c542 100644 --- a/internal/plugins/redis/redis.go +++ b/internal/plugins/redis/redis.go @@ -4,7 +4,7 @@ var ( Name = "Redis" Description = "Redis 是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。" Slug = "redis" - Version = "7.2.3" + Version = "7.2.4" Requires = []string{} Excludes = []string{} Install = `bash /www/panel/scripts/redis/install.sh` diff --git a/scripts/mysql/install.sh b/scripts/mysql/install.sh index 7ecc12c5..7856c8ea 100644 --- a/scripts/mysql/install.sh +++ b/scripts/mysql/install.sh @@ -32,7 +32,7 @@ source ${setupPath}/panel/scripts/calculate_j.sh j=$(calculate_j) if [[ "${1}" == "80" ]]; then - mysqlVersion="8.0.35" + mysqlVersion="8.0.36" j=$(calculate_j2) elif [[ "${1}" == "57" ]]; then mysqlVersion="5.7.44" diff --git a/scripts/mysql/update.sh b/scripts/mysql/update.sh index 7257e709..36a53ff4 100644 --- a/scripts/mysql/update.sh +++ b/scripts/mysql/update.sh @@ -33,7 +33,7 @@ source ${setupPath}/panel/scripts/calculate_j.sh j=$(calculate_j) if [[ "${1}" == "80" ]]; then - mysqlVersion="8.0.35" + mysqlVersion="8.0.36" j=$(calculate_j2) elif [[ "${1}" == "57" ]]; then mysqlVersion="5.7.44" diff --git a/scripts/openresty/install.sh b/scripts/openresty/install.sh index 29db29a2..c23b7a0d 100644 --- a/scripts/openresty/install.sh +++ b/scripts/openresty/install.sh @@ -25,7 +25,6 @@ downloadUrl="https://git.haozi.net/opensource/download/-/raw/main/panel/openrest setupPath="/www" openrestyPath="${setupPath}/server/openresty" openrestyVersion="1.25.3.1" -cpuCore=$(cat /proc/cpuinfo | grep "processor" | wc -l) source ${setupPath}/panel/scripts/calculate_j.sh j=$(calculate_j) diff --git a/scripts/php/install.sh b/scripts/php/install.sh index 5271f4cd..b0c3b62c 100644 --- a/scripts/php/install.sh +++ b/scripts/php/install.sh @@ -65,11 +65,11 @@ if [ "${phpVersion}" == "74" ]; then elif [ "${phpVersion}" == "80" ]; then phpVersionCode="8.0.30" elif [ "${phpVersion}" == "81" ]; then - phpVersionCode="8.1.26" + phpVersionCode="8.1.27" elif [ "${phpVersion}" == "82" ]; then - phpVersionCode="8.2.13" + phpVersionCode="8.2.16" elif [ "${phpVersion}" == "83" ]; then - phpVersionCode="8.3.0" + phpVersionCode="8.3.3" else echo -e $HR echo "错误:PHP-${phpVersion}不支持,请检查版本号是否正确。" diff --git a/scripts/postgresql/install.sh b/scripts/postgresql/install.sh index eb2b8e32..750cc797 100644 --- a/scripts/postgresql/install.sh +++ b/scripts/postgresql/install.sh @@ -31,9 +31,9 @@ source ${setupPath}/panel/scripts/calculate_j.sh j=$(calculate_j) if [[ "${1}" == "15" ]]; then - postgresqlVersion="15.5" + postgresqlVersion="15.6" elif [[ "${1}" == "16" ]]; then - postgresqlVersion="16.1" + postgresqlVersion="16.2" else echo -e $HR echo "错误:不支持的 PostgreSQL 版本!" diff --git a/scripts/postgresql/update.sh b/scripts/postgresql/update.sh index 0bd6dfc2..6addc00c 100644 --- a/scripts/postgresql/update.sh +++ b/scripts/postgresql/update.sh @@ -31,9 +31,9 @@ source ${setupPath}/panel/scripts/calculate_j.sh j=$(calculate_j) if [[ "${1}" == "15" ]]; then - postgresqlVersion="15.5" + postgresqlVersion="15.6" elif [[ "${1}" == "16" ]]; then - postgresqlVersion="16.1" + postgresqlVersion="16.2" else echo -e $HR echo "错误:不支持的 PostgreSQL 版本!" diff --git a/scripts/redis/install.sh b/scripts/redis/install.sh index 9819ee3d..af155270 100644 --- a/scripts/redis/install.sh +++ b/scripts/redis/install.sh @@ -24,7 +24,7 @@ OS=$(source /etc/os-release && { [[ "$ID" == "debian" ]] && echo "debian"; } || downloadUrl="https://git.haozi.net/opensource/download/-/raw/main/panel/redis" setupPath="/www" redisPath="${setupPath}/server/redis" -redisVersion="7.2.3" +redisVersion="7.2.4" cpuCore=$(cat /proc/cpuinfo | grep "processor" | wc -l) if ! id -u "redis" > /dev/null 2>&1; then diff --git a/scripts/redis/update.sh b/scripts/redis/update.sh index aa891cad..7077dab3 100644 --- a/scripts/redis/update.sh +++ b/scripts/redis/update.sh @@ -24,7 +24,7 @@ OS=$(source /etc/os-release && { [[ "$ID" == "debian" ]] && echo "debian"; } || downloadUrl="https://git.haozi.net/opensource/download/-/raw/main/panel/redis" setupPath="/www" redisPath="${setupPath}/server/redis" -redisVersion="7.2.3" +redisVersion="7.2.4" cpuCore=$(cat /proc/cpuinfo | grep "processor" | wc -l) # 读取信息