WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit b8bad0c

Browse files
authored
Overhaul licenses, prepare for 0.11.0 (#165)
1 parent 080c268 commit b8bad0c

File tree

308 files changed

+32819
-61
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+32819
-61
lines changed

.github/workflows/license-checker.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,19 @@ jobs:
3131
steps:
3232
- uses: actions/checkout@v2
3333
- name: Check License Header
34-
uses: apache/skywalking-eyes@main
34+
uses: apache/skywalking-eyes@d38fe0561d1140b010bddccb5fbfa3db7c12caf1
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
- name: Setup Go
38+
uses: actions/setup-go@v3
3739
with:
38-
log: info
40+
go-version: "1.16"
41+
- name: Check Dependencies License
42+
run: |
43+
go install github.com/apache/skywalking-eyes/cmd/license-eye@d38fe0561d1140b010bddccb5fbfa3db7c12caf1
44+
license-eye dependency resolve --summary ./dist/LICENSE.tpl --output ./dist/licenses || exit 1
45+
if [ ! -z "$(git diff -U0 ./dist)" ]; then
46+
echo "LICENSE file is not updated correctly"
47+
git diff -U0 ./dist
48+
exit 1
49+
fi

.licenserc.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,14 @@ header:
3434
- 'pkg/display/graph/flamegraph/flamegraph.html'
3535

3636
comment: on-failure
37+
38+
dependency:
39+
files:
40+
- go.mod
41+
licenses:
42+
- name: github.com/kr/logfmt
43+
license: MIT
44+
- name: github.com/pascaldekloe/goe
45+
license: CC0-1.0
46+
- name: github.com/chzyer/logex
47+
license: MIT

CHANGES.md

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,31 @@ Release Notes.
66
------------------
77

88
### Features
9-
10-
- Update the `profiling ebpf create` task relate to the service level.(#141)
11-
- Update the sub-command `process list/get` to add the `labels` field.(#141)
12-
- Add the sub-command `profiling ebpf create prepare` to query data for prepare creating task.(#141)
13-
- Add the sub-command `process estimate scale` to estimate the process scale.(#142)
14-
- Update the `process list` to must be provided the instance and duration.(#144)
15-
- Remove `layer` field in the `instance` and `process` commands for 9.1.0 GraphQL query protocol's breaking changes (#149)
16-
- Remove `duration` flag in `profiling ebpf schedules`.(#150)
17-
- [Breaking Change] Remove `total` field in `trace list` and `logs list` commands.(#152)
18-
- [Breaking Change] Remove `total` field in `event list`, `browser logs list`, `alarm list` commands.(#153)
19-
- Add `aggregate` flag in `profiling ebpf analysis` commands.(#154)
20-
- Add the sub-command `profiling ebpf create network` and `profiling ebpf keep network` to create and keep the network eBPF profiling task.(#158)
21-
- Add the sub-command `dependency process` to query the process relation.(#158)
22-
- Support query the metrics of process relation.(#158)
23-
- Add the sub-command `metrics sorted` and `metrics sampled-record` to query the sorted metrics/records.(#163)
9+
## What's Changed
10+
11+
* Add `.github/scripts` to release source tarball by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/140
12+
* Let the eBPF profiling could performs by service level by @mrproliu in https://github.com/apache/skywalking-cli/pull/141
13+
* Add the sub-command for estimate the process scale by @mrproliu in https://github.com/apache/skywalking-cli/pull/142
14+
* feature: update install.sh version regex by @Alexxxing in https://github.com/apache/skywalking-cli/pull/143
15+
* Update the commands relate to the process by @mrproliu in https://github.com/apache/skywalking-cli/pull/144
16+
* Add layer to event related commands by @fgksgf in https://github.com/apache/skywalking-cli/pull/145
17+
* Add layer to events.graphql by @fgksgf in https://github.com/apache/skywalking-cli/pull/146
18+
* Add layer field to alarms.graphql by @fgksgf in https://github.com/apache/skywalking-cli/pull/147
19+
* Upgrade crypto lib to fix cve by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/148
20+
* Remove `layer` field in the `instance` and `process` commands by @mrproliu in https://github.com/apache/skywalking-cli/pull/149
21+
* Remove `duration` flag in `profiling ebpf schedules` by @mrproliu in https://github.com/apache/skywalking-cli/pull/150
22+
* Remove `total` field in `trace list` and `logs list` commands by @mrproliu in https://github.com/apache/skywalking-cli/pull/152
23+
* Remove `total` field in `event list`, `browser logs`, `alarm list` commands. by @mrproliu in https://github.com/apache/skywalking-cli/pull/153
24+
* Add `aggregate` flag in `profiling ebpf analysis` commands by @mrproliu in https://github.com/apache/skywalking-cli/pull/154
25+
* event: fix event query should query all types by default by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/155
26+
* Fix a possible lint error and update CI lint version by @JarvisG495 in https://github.com/apache/skywalking-cli/pull/156
27+
* Add commands for support network profiling by @mrproliu in https://github.com/apache/skywalking-cli/pull/158
28+
* Add the components field in the process relation by @mrproliu in https://github.com/apache/skywalking-cli/pull/159
29+
* Trim license headers in query string by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/160
30+
* Bump up dependency swck version to fix CVE by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/161
31+
* Bump up swck dependency for transitive dep upgrade by @kezhenxu94 in https://github.com/apache/skywalking-cli/pull/162
32+
* Add the sub-commands for query sorted metrics/records by @mrproliu in https://github.com/apache/skywalking-cli/pull/163
33+
* Add compatibility documentation by @mrproliu in https://github.com/apache/skywalking-cli/pull/164
2434

2535
0.10.0
2636
------------------

0 commit comments

Comments
 (0)