From 1085b12045cf2062390cabd20f3f04a486bc48fb Mon Sep 17 00:00:00 2001 From: HarrisChu <1726587+HarrisChu@users.noreply.github.com> Date: Mon, 14 Feb 2022 16:17:55 +0800 Subject: [PATCH 1/4] release v3 --- go.mod | 2 +- go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index fcaec7d..9613f8f 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/vesoft-inc/k6-plugin go 1.16 require ( - github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220119024722-ab348afbb79d + github.com/vesoft-inc/nebula-go/v3 v3.0.0 go.k6.io/k6 v0.33.0 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect ) diff --git a/go.sum b/go.sum index c0f96f6..417cac9 100644 --- a/go.sum +++ b/go.sum @@ -326,6 +326,8 @@ github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyC github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50wTf68f99/Zt14pr046Tgt3Lp2vLyFZKzbFXTOabXw= github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220119024722-ab348afbb79d h1:spO7OAtYI1wiqBiJ9417pKhqx0IkqFAFdFQFPm4JIrs= github.com/vesoft-inc/nebula-go/v3 v3.0.0-20220119024722-ab348afbb79d/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s= +github.com/vesoft-inc/nebula-go/v3 v3.0.0 h1:ii5T3vps4xAQZkzPvGn6NuiUWlH/rm1zdIS5VTEA71A= +github.com/vesoft-inc/nebula-go/v3 v3.0.0/go.mod h1:+sXv05jYQBARdTbTcIEsWVXCnF/6ttOlDK35xQ6m54s= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= From a1f765b6c5fbe88fef5e3964051d537f825ba853 Mon Sep 17 00:00:00 2001 From: HarrisChu <1726587+HarrisChu@users.noreply.github.com> Date: Mon, 14 Feb 2022 16:19:39 +0800 Subject: [PATCH 2/4] release --- Makefile | 2 +- register.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ecfb6e4..01b13f8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ all: build pairs := darwin/amd64 linux/amd64 linux/arm64 GOPATH ?= ~/go export GO111MODULE=on -VERSION ?= v0.0.8 +VERSION ?= v0.0.9 build: go install github.com/k6io/xk6/cmd/xk6@v0.4.1 diff --git a/register.go b/register.go index 6b6cafc..c504342 100644 --- a/register.go +++ b/register.go @@ -4,7 +4,7 @@ import ( "go.k6.io/k6/js/modules" ) -const version = "v0.0.6" +const version = "v0.0.9" func init() { modules.Register("k6/x/nebulagraph", New()) From 2396efe247aab735d5cf6c0d3300dfecf3d0e666 Mon Sep 17 00:00:00 2001 From: HarrisChu <1726587+HarrisChu@users.noreply.github.com> Date: Mon, 14 Feb 2022 16:28:06 +0800 Subject: [PATCH 3/4] add doc --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b03b9d3..9e82196 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ There are the version correspondence between k6-plugin and Nebula: | k6-plugin Version | Nebula Version | |:-----------------:|:--------------:| | v0.0.8 | 2.5.0, 2.5.1, 2.6.0, 2.6.1 | +| v0.0.9 | 3.0.0 | | master | nightly | ## Build From 5487c3fee51796804b65f689ae2dee6d451aeef7 Mon Sep 17 00:00:00 2001 From: HarrisChu <1726587+HarrisChu@users.noreply.github.com> Date: Mon, 14 Feb 2022 16:45:51 +0800 Subject: [PATCH 4/4] fix --- .github/workflows/pr.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 98e3936..6730722 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -2,8 +2,10 @@ name: pull_request on: pull_request: + types: [synchronize, reopened] branches: - master + - "release-[0-9]+.*" paths-ignore: - "**.md" - ".gitignore"