Skip to content

Commit 0c54f7f

Browse files
authored
Adding prepare for release script and documentations (#49)
1 parent d7f0680 commit 0c54f7f

33 files changed

+1333
-5
lines changed

CHANGES.md

+22
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,25 @@ Release Notes.
44

55
0.1.0
66
------------------
7+
8+
#### Features
9+
* Initialize the agent core and user import library.
10+
* Support gRPC reporter for management, tracing protocols.
11+
* Automatic detect the log frameworks and inject the log context.
12+
13+
#### Plugins
14+
* Support [Gin](https://github.com/gin-gonic/gin) framework.
15+
* Support [Native HTTP](https://pkg.go.dev/net/http) server and client framework.
16+
* Support [Go Restful](https://github.com/emicklei/go-restful) v3 framework.
17+
* Support [Dubbo](https://github.com/apache/dubbo-go) server and client framework.
18+
* Support [Kratos](github.com/go-kratos/kratos) v2 server and client framework.
19+
* Support [Go-Micro](https://github.com/go-micro/go-micro) v4 server and client framework.
20+
* Support [GORM](https://github.com/go-gorm/gorm) v2 database client framework.
21+
* Support [MySQL Driver](https://github.com/go-gorm/mysql) detection.
22+
23+
#### Documentation
24+
* Initialize the documentation.
25+
26+
#### Issues and PR
27+
- All issues are [here](https://github.com/apache/skywalking/milestone/176?closed=1)
28+
- All and pull requests are [here](https://github.com/apache/skywalking-go/milestone/1?closed=1)

LICENSE

+93-4
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,103 @@
203203
=======================================================================
204204
Apache SkyWalking Go Subcomponents:
205205

206-
The Apache SkyWalking Go project contains subcomponents with separate copyright
206+
Apache SkyWalking Go project contains subcomponents with separate copyright
207207
notices and license terms. Your use of the source code for the these
208208
subcomponents is subject to the terms and conditions of the following
209209
licenses.
210210

211211
========================================================================
212-
Apache 2.0 licenses
212+
Apache-2.0 licenses
213213
========================================================================
214214

215-
The following components are provided under the Apache License. See project link for details.
216-
The text of each license is the standard Apache 2.0 license.
215+
The following components are provided under the Apache-2.0 License. See project link for details.
216+
The text of each license is also included at licenses/license-[project].txt.
217+
218+
cloud.google.com/go v0.110.0 Apache-2.0
219+
github.com/OneOfOne/xxhash v1.2.2 Apache-2.0
220+
github.com/census-instrumentation/opencensus-proto v0.4.1 Apache-2.0
221+
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe Apache-2.0
222+
github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b Apache-2.0
223+
github.com/envoyproxy/go-control-plane v0.10.3 Apache-2.0
224+
github.com/envoyproxy/protoc-gen-validate v0.9.1 Apache-2.0
225+
github.com/golang/glog v1.0.0 Apache-2.0
226+
github.com/golang/mock v1.6.0 Apache-2.0
227+
github.com/prometheus/client_model v0.2.0 Apache-2.0
228+
go.opentelemetry.io/proto/otlp v0.15.0 Apache-2.0
229+
google.golang.org/appengine v1.6.7 Apache-2.0
230+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 Apache-2.0
231+
google.golang.org/grpc v1.46.2 Apache-2.0
232+
gopkg.in/yaml.v2 v2.4.0 Apache-2.0
233+
skywalking.apache.org/repo/goapi v0.0.0-20230314034821-0c5a44bb767a Apache-2.0
234+
235+
========================================================================
236+
MIT licenses
237+
========================================================================
238+
239+
The following components are provided under the MIT License. See project link for details.
240+
The text of each license is also included at licenses/license-[project].txt.
241+
242+
github.com/BurntSushi/toml v0.3.1 MIT
243+
github.com/antihax/optional v1.0.0 MIT
244+
github.com/cespare/xxhash v1.1.0 MIT
245+
github.com/client9/misspell v0.3.4 MIT
246+
github.com/stretchr/objx v0.5.0 MIT
247+
github.com/stretchr/testify v1.8.2 MIT
248+
github.com/yuin/goldmark v1.4.13 MIT
249+
honnef.co/go/tools v0.0.1-2020.1.4 MIT
250+
251+
========================================================================
252+
ISC licenses
253+
========================================================================
254+
255+
The following components are provided under the ISC License. See project link for details.
256+
The text of each license is also included at licenses/license-[project].txt.
257+
258+
github.com/davecgh/go-spew v1.1.1 ISC
259+
260+
========================================================================
261+
MIT and BSD-3-Clause licenses
262+
========================================================================
263+
264+
The following components are provided under the MIT and BSD-3-Clause License. See project link for details.
265+
The text of each license is also included at licenses/license-[project].txt.
266+
267+
github.com/ghodss/yaml v1.0.0 MIT and BSD-3-Clause
268+
269+
========================================================================
270+
BSD-2-Clause licenses
271+
========================================================================
272+
273+
The following components are provided under the BSD-2-Clause License. See project link for details.
274+
The text of each license is also included at licenses/license-[project].txt.
275+
276+
github.com/pkg/errors v0.9.1 BSD-2-Clause
277+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c BSD-2-Clause
278+
279+
========================================================================
280+
BSD-3-Clause licenses
281+
========================================================================
282+
283+
The following components are provided under the BSD-3-Clause License. See project link for details.
284+
The text of each license is also included at licenses/license-[project].txt.
285+
286+
github.com/golang/protobuf v1.5.3 BSD-3-Clause
287+
github.com/google/go-cmp v0.5.9 BSD-3-Clause
288+
github.com/google/uuid v1.3.0 BSD-3-Clause
289+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 BSD-3-Clause
290+
github.com/pmezard/go-difflib v1.0.0 BSD-3-Clause
291+
github.com/rogpeppe/fastuuid v1.2.0 BSD-3-Clause
292+
github.com/spaolacci/murmur3 v1.1.0 BSD-3-Clause
293+
golang.org/x/crypto v0.9.0 BSD-3-Clause
294+
golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5 BSD-3-Clause
295+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 BSD-3-Clause
296+
golang.org/x/mod v0.9.0 BSD-3-Clause
297+
golang.org/x/net v0.10.0 BSD-3-Clause
298+
golang.org/x/oauth2 v0.6.0 BSD-3-Clause
299+
golang.org/x/sync v0.1.0 BSD-3-Clause
300+
golang.org/x/sys v0.8.0 BSD-3-Clause
301+
golang.org/x/term v0.8.0 BSD-3-Clause
302+
golang.org/x/text v0.9.0 BSD-3-Clause
303+
golang.org/x/tools v0.7.0 BSD-3-Clause
304+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 BSD-3-Clause
305+
google.golang.org/protobuf v1.30.0 BSD-3-Clause

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,9 @@ check:
8585

8686
.PHONY: build
8787
build:
88-
@make -C tools/go-agent build
88+
@make -C tools/go-agent build
89+
90+
.PHONE: release
91+
release:
92+
/bin/sh tools/release/create_bin_release.sh
93+
/bin/sh tools/release/create_source_release.sh

0 commit comments

Comments
 (0)