From 247ce67097066fe9126512b9ac585729abfe1233 Mon Sep 17 00:00:00 2001 From: Pavel Savushkin Date: Fri, 12 Mar 2021 02:00:10 +0200 Subject: [PATCH] fix(AST extension): bump version due to php 8.0 support According to the changelog of the extension version should be bumped to support PHP 8.0 Closes 2859 --- env-example | 2 +- workspace/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/env-example b/env-example index cf64e75..6a8d9ef 100644 --- a/env-example +++ b/env-example @@ -185,7 +185,7 @@ WORKSPACE_INSTALL_AUDIOWAVEFORM=false WORKSPACE_INSTALL_WKHTMLTOPDF=false WORKSPACE_INSTALL_GNU_PARALLEL=false WORKSPACE_INSTALL_AST=true -WORKSPACE_AST_VERSION=1.0.3 +WORKSPACE_AST_VERSION=1.0.10 WORKSPACE_BROWSERSYNC_HOST_PORT=3000 WORKSPACE_BROWSERSYNC_UI_HOST_PORT=3001 WORKSPACE_VUE_CLI_SERVE_HOST_PORT=8080 diff --git a/workspace/Dockerfile b/workspace/Dockerfile index c6c5105..23b196e 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -635,7 +635,7 @@ RUN if [ ${INSTALL_INOTIFY} = true ]; then \ ########################################################################### ARG INSTALL_AST=false -ARG AST_VERSION=1.0.3 +ARG AST_VERSION=1.0.10 ENV AST_VERSION ${AST_VERSION} RUN if [ ${INSTALL_AST} = true ]; then \ @@ -1428,7 +1428,7 @@ RUN if [ ${INSTALL_WKHTMLTOPDF} = true ]; then \ libx11-dev \ libjpeg62 \ libxtst6 \ - fontconfig \ + fontconfig \ libjpeg-turbo8-dev \ xfonts-base \ xfonts-75dpi \