From 8ecabb0e09df243070387cc672edfbdfe7e83c68 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Sat, 17 Jun 2023 21:55:17 +0200 Subject: [PATCH] Use the beta versions of uv --- MAINTAINERS.md | 5 +++++ install-php-extensions | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 6f303be..18e9423 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -115,6 +115,11 @@ The `pdo_sqlsrv` and `sqlsrv` PHP extensions require the Microsoft ODBC Driver f On Alpine Linux there's no way to automatically install its latest version, so we install it manually. We need to monitor new releases at https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server#alpine18 +### uv + +The only available versions of the `uv` PHP extension are all beta. +We should switch to the stable release once it will be available. + ## xdiff The `xdiff` PHP extension uses the LibXDiff library. diff --git a/install-php-extensions b/install-php-extensions index 649fd51..28cda99 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -3579,6 +3579,11 @@ installRemoteModule() { fi fi ;; + uv) + if test -z "$installRemoteModule_version"; then + installRemoteModule_version=beta + fi + ;; xdebug) if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 500; then