From 095d182c5e72439747ad6bb81e747634e045081d Mon Sep 17 00:00:00 2001 From: heyanlong Date: Tue, 11 Feb 2020 12:35:37 +0800 Subject: [PATCH] Release 3.2.5 --- agent/cmd/main.go | 3 +- package-template.xml | 16 ++++- package.xml | 153 ++++++++++++++++++++++++------------------- php_skywalking.h | 2 +- 4 files changed, 101 insertions(+), 73 deletions(-) diff --git a/agent/cmd/main.go b/agent/cmd/main.go index 3df1924..bd43c8e 100644 --- a/agent/cmd/main.go +++ b/agent/cmd/main.go @@ -20,8 +20,9 @@ func main() { app := cli.NewApp() app.Name = "sky_php_agent" app.Usage = "the skywalking trace sending agent" + app.Version = "3.2.5" app.Flags = []cli.Flag{ - &cli.StringSliceFlag{Name: "grpc", Usage: "SkyWalking collector grpc address", Value: cli.NewStringSlice("127.0.0.1:11800", "127.0.0.2:11800")}, + &cli.StringSliceFlag{Name: "grpc", Usage: "SkyWalking collector grpc address", Value: cli.NewStringSlice("127.0.0.1:11800")}, &cli.StringFlag{Name: "socket", Usage: "Pipeline for communicating with PHP", Value: "/var/run/sky-agent.sock"}, &cli.IntFlag{Name: "send-rate", Usage: "Send trace 1 second by default", Value: 1}, } diff --git a/package-template.xml b/package-template.xml index 09457fb..a3c59e8 100644 --- a/package-template.xml +++ b/package-template.xml @@ -26,7 +26,7 @@ Apache2.0 - Support php7.4 + Fix the empty field bug in span refs for skywalking v6. @@ -44,9 +44,21 @@ skywalking - skywalking + + + 3.2.5 + 3.2.5 + + + stable + stable + + + Fix the empty field bug in span refs for SkyWalking v6. + + 3.2.4 diff --git a/package.xml b/package.xml index f1d70fe..a3c830c 100644 --- a/package.xml +++ b/package.xml @@ -15,10 +15,10 @@ yanlong@php.net yes - 2019-12-09 + 2020-02-11 - 3.2.4 - 3.2.4 + 3.2.5 + 3.2.5 stable @@ -26,7 +26,7 @@ Apache2.0 - Support php7.4 + Fix the empty field bug in span refs for skywalking v6. @@ -34,12 +34,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -53,59 +80,33 @@ + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -141,6 +142,7 @@ + @@ -155,19 +157,32 @@ skywalking - - - - 3.2.4 - 3.2.4 - - - stable - stable - - -Support php7.4 - - - - + + + + 3.2.5 + 3.2.5 + + + stable + stable + + + Fix the empty field bug in span refs for SkyWalking v6. + + + + + 3.2.4 + 3.2.4 + + + stable + stable + + + Support php7.4 + + + + \ No newline at end of file diff --git a/php_skywalking.h b/php_skywalking.h index 591842b..3b53390 100644 --- a/php_skywalking.h +++ b/php_skywalking.h @@ -24,7 +24,7 @@ extern zend_module_entry skywalking_module_entry; #define phpext_skywalking_ptr &skywalking_module_entry -#define PHP_SKYWALKING_VERSION "3.2.4" /* Replace with version number for your extension */ +#define PHP_SKYWALKING_VERSION "3.2.5" /* Replace with version number for your extension */ #ifdef PHP_WIN32 # define PHP_SKYWALKING_API __declspec(dllexport) -- GitLab