diff --git a/agent/cmd/main.go b/agent/cmd/main.go index 3df19248c4dde751ef912be7a0d574ce7930de8f..bd43c8e87d4297fa5af35903654977ad28a9fc6d 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 09457fbf3ad21195a6ae0010860e939dffbde608..a3c59e8ed99b804523fe13b455e4374b754e24e1 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 f1d70fe2f9f7c66ddda9e2e019777a3edf7be6e5..a3c830c94bdffdf477783c940d0f663a4c195881 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 591842be524cd289cf1059254010b7f698071333..3b53390e8a851db1535f842ff426beb709e71bf4 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)