From 446e830e8f1e292189a4e74116cdab74e8fe18dc Mon Sep 17 00:00:00 2001 From: eeliu <27064129+eeliu@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:34:09 +0800 Subject: [PATCH] update v0.6.3 --- DOC/PHP/Readme-CN.md | 4 ++-- DOC/PHP/Readme-KR.md | 4 ++-- DOC/PHP/Readme.md | 4 ++-- testapps/flarum/flarum.dockerfile | 2 +- testapps/php_phpmyadmin/phpmyadmin.dockerfile | 2 +- testapps/php_wordpress/php-wordpress.dockerfile | 2 +- testapps/shopware/shopware.dockerfile | 2 +- testapps/thinkphp-php/thinkphp.dockerfile | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/DOC/PHP/Readme-CN.md b/DOC/PHP/Readme-CN.md index 6bab2bcb..da07820a 100644 --- a/DOC/PHP/Readme-CN.md +++ b/DOC/PHP/Readme-CN.md @@ -14,9 +14,9 @@ 1. 安装 `ext-pinpoint_php` 模块 - `pecl install pinpoint_php` + `pecl install pinpoint_php-0.5.3` or - `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/latest/install_pinpoint_php.sh | sh` + `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh` > On windows: download .dll from https://pecl.php.net/package/pinpoint_php or https://github.com/pinpoint-apm/pinpoint-c-agent/releases/latest diff --git a/DOC/PHP/Readme-KR.md b/DOC/PHP/Readme-KR.md index 1fad0ca0..eb2a2a15 100644 --- a/DOC/PHP/Readme-KR.md +++ b/DOC/PHP/Readme-KR.md @@ -14,9 +14,9 @@ 1. `ext-pinpoint_php` 모듈 설치 - `pecl install pinpoint_php` + `pecl install pinpoint_php-0.5.3` or - `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/latest/install_pinpoint_php.sh | sh` + `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh` > On windows: download .dll from https://pecl.php.net/package/pinpoint_php or https://github.com/pinpoint-apm/pinpoint-c-agent/releases/latest diff --git a/DOC/PHP/Readme.md b/DOC/PHP/Readme.md index 14a8916c..da67418b 100644 --- a/DOC/PHP/Readme.md +++ b/DOC/PHP/Readme.md @@ -19,9 +19,9 @@ #### Steps 1. Install `ext-pinpoint_php` - `pecl install pinpoint_php` + `pecl install pinpoint_php-0.5.3` or - `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/latest/install_pinpoint_php.sh | sh` + `curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh` > On windows: download .dll from https://pecl.php.net/package/pinpoint_php or https://github.com/pinpoint-apm/pinpoint-c-agent/releases/latest diff --git a/testapps/flarum/flarum.dockerfile b/testapps/flarum/flarum.dockerfile index c455bf66..aae28279 100644 --- a/testapps/flarum/flarum.dockerfile +++ b/testapps/flarum/flarum.dockerfile @@ -10,7 +10,7 @@ RUN apk update && apk add php8-dev build-base # RUN cd /pinpoint-c-agent/ && phpize && ./configure && make install # RUN INI_DIR=`php-config --ini-dir` && cp /pinpoint-c-agent/pinpoint_php.ini $INI_DIR -RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.0/install_pinpoint_php.sh | sh +RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh COPY testapps/flarum/site.php /flarum/app/site.php RUN cd /flarum/app/ && composer require -w pinpoint-apm/pinpoint-php-aop:v3.0.1 \ No newline at end of file diff --git a/testapps/php_phpmyadmin/phpmyadmin.dockerfile b/testapps/php_phpmyadmin/phpmyadmin.dockerfile index 0736f3ff..4bcd5bf5 100644 --- a/testapps/php_phpmyadmin/phpmyadmin.dockerfile +++ b/testapps/php_phpmyadmin/phpmyadmin.dockerfile @@ -14,7 +14,7 @@ RUN apt update && apt-get install -y \ # RUN cd /pinpoint-c-agent/ && phpize && ./configure && make install # RUN INI_DIR=`php-config --ini-dir` && cp /pinpoint-c-agent/pinpoint_php.ini $INI_DIR -RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.0/install_pinpoint_php.sh | sh +RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh COPY testapps/php_phpmyadmin/index.php /var/www/html/index.php ## install composer diff --git a/testapps/php_wordpress/php-wordpress.dockerfile b/testapps/php_wordpress/php-wordpress.dockerfile index 06591085..f61f96e0 100644 --- a/testapps/php_wordpress/php-wordpress.dockerfile +++ b/testapps/php_wordpress/php-wordpress.dockerfile @@ -11,7 +11,7 @@ FROM wordpress:beta-php8.1-apache # COPY install_pinpoint_php.sh /tmp/ # RUN sh /tmp/install_pinpoint_php.sh -RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.0/install_pinpoint_php.sh | sh +RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh COPY testapps/php_wordpress/wp-config.php /usr/src/wordpress/wp-config.php # install composer diff --git a/testapps/shopware/shopware.dockerfile b/testapps/shopware/shopware.dockerfile index 3fb2c92b..64e6041e 100644 --- a/testapps/shopware/shopware.dockerfile +++ b/testapps/shopware/shopware.dockerfile @@ -2,7 +2,7 @@ FROM shyim/shopware:6.4.20-php8.2 RUN apk update && apk add --virtual build-dependencies build-base git autoconf -RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.0/install_pinpoint_php.sh | sh +RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh ## install composer RUN composer self-update 2.4.4 diff --git a/testapps/thinkphp-php/thinkphp.dockerfile b/testapps/thinkphp-php/thinkphp.dockerfile index c0d22161..4dfde51a 100644 --- a/testapps/thinkphp-php/thinkphp.dockerfile +++ b/testapps/thinkphp-php/thinkphp.dockerfile @@ -7,7 +7,7 @@ RUN apt update && apt-get install -y \ git \ && docker-php-ext-install zip pdo pdo_mysql -RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.0/install_pinpoint_php.sh | sh +RUN curl -sL https://github.com/pinpoint-apm/pinpoint-c-agent/releases/download/v0.6.3/install_pinpoint_php.sh | sh COPY testapps/thinkphp-php/tp /app