You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/07/23 07:29:51 UTC

[skywalking-cli] 01/01: chore: add changelog for 0.3.0

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch release/0.3.0
in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git

commit 951cfe5c1884f06365131dacc891c072da184ee8
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Thu Jul 23 15:29:32 2020 +0800

    chore: add changelog for 0.3.0
---
 .github/workflows/go.yml | 10 ++--------
 CHANGES.md               | 16 ++++++++++++++++
 Makefile                 |  4 ++--
 go.mod                   |  1 +
 4 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 936d076..d655c4b 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -23,12 +23,10 @@ on:
       - master
 
 jobs:
-
   build:
     name: Build
     runs-on: ubuntu-latest
     steps:
-
       - name: Set up Go 1.13
         uses: actions/setup-go@v1
         with:
@@ -37,12 +35,8 @@ jobs:
 
       - name: Check out code into the Go module directory
         uses: actions/checkout@v2
-
-      - name: checkout submodules
-        shell: bash
-        run: |
-          git submodule sync --recursive
-          git -c protocol.version=2 submodule update --init --force --recursive --depth=1
+        with:
+          submodules: true
 
       - name: Check License
         run: make license
diff --git a/CHANGES.md b/CHANGES.md
index 3b535af..4dcd491 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -2,6 +2,22 @@ Changes by Version
 ==================
 Release Notes.
 
+0.3.0
+------------------
+
+### Features
+
+- Add health check command
+- Add `trace` command
+
+### Bug Fixes
+
+- Fix wrong metrics graphql path
+
+### Chores
+
+- Move tools setup into Makefile to easy the setup work locally
+
 0.2.0
 ------------------
 
diff --git a/Makefile b/Makefile
index 9ad1417..cd85de2 100644
--- a/Makefile
+++ b/Makefile
@@ -80,7 +80,7 @@ license: clean tools
 	$(GO_LICENSER) -d -licensor='Apache Software Foundation (ASF)' .
 
 .PHONY: verify
-verify: clean lint test license
+verify: clean license lint test
 
 .PHONY: fix
 fix: tools
@@ -126,7 +126,7 @@ release-bin: build
 	-tar -zcvf $(RELEASE_BIN).tgz $(RELEASE_BIN)
 	-rm -rf $(RELEASE_BIN)
 
-release: verify license release-src release-bin
+release: verify release-src release-bin
 	gpg --batch --yes --armor --detach-sig $(RELEASE_SRC).tgz
 	shasum -a 512 $(RELEASE_SRC).tgz > $(RELEASE_SRC).tgz.sha512
 	gpg --batch --yes --armor --detach-sig $(RELEASE_BIN).tgz
diff --git a/go.mod b/go.mod
index 67ae65d..f1bd056 100644
--- a/go.mod
+++ b/go.mod
@@ -3,6 +3,7 @@ module github.com/apache/skywalking-cli
 go 1.13
 
 require (
+	github.com/99designs/gqlgen v0.11.3 // indirect
 	github.com/gizak/termui/v3 v3.1.0
 	github.com/gobuffalo/packr/v2 v2.8.0
 	github.com/machinebox/graphql v0.2.2