Skip to content

Commit 9a3c5dc

Browse files
authored
Prepare for version 1.0.0 release and fix typos in doc. (#108)
1 parent 5b107c4 commit 9a3c5dc

File tree

5 files changed

+49
-4
lines changed

5 files changed

+49
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ packages/
2020
/test/e2e/agent-test-tools/dist
2121
/t/servroot/
2222
go
23+
release/

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changes
22

3+
## 1.0.0
4+
5+
1. Add IgnoreSuffix feature.
6+
2. CI run lua test cases with luajit.
7+
3. Feat support update the peer before requesting outgoing.
8+
4. Use agent-test-tool docker image instead of building from source.
9+
5. Support to try to use `request-id` as `trace-id` when trace context absent.
10+
6. Stop reporting traces after the worker process begins to exit.
11+
7. Fix tag key from `http.status` to `http.status_code`.
12+
313
## 0.6.0
414

515
1. fix: `skywalking_tracer:finish()` will not be called in some case such as upstream timeout.

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Apache SkyWalking
2-
Copyright 2017-2022 The Apache Software Foundation
2+
Copyright 2017-2024 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Apache SkyWalking Nginx Agent
55

66
[![Twitter Follow](https://img.shields.io/twitter/follow/asfskywalking.svg?style=for-the-badge&label=Follow&logo=twitter)](https://twitter.com/AsfSkyWalking)
77

8-
![CI](https://github.com/apache/skywalking-nginx-lua/workflows/CI/badge.svg?branch=master)
8+
[![CI](https://github.com/apache/skywalking-nginx-lua/actions/workflows/ci.yaml/badge.svg)](https://github.com/apache/skywalking-nginx-lua/actions/workflows/ci.yaml)
99

1010

1111
[**SkyWalking**](https://github.com/apache/skywalking) Nginx Agent provides the native tracing capability for Nginx powered by Nginx LUA module.
@@ -154,8 +154,8 @@ Create 2 kinds of span API v1
154154
# Contact Us
155155
* Submit an [issue](https://github.com/apache/skywalking/issues) with `[NIGNX-LUA]` as the issue title prefix.
156156
* Mail list: **[email protected]**. Mail to `[email protected]`, follow the reply to subscribe the mail list.
157-
* Join `skywalking` channel at [Apache Slack](https://join.slack.com/t/the-asf/shared_invite/enQtNzc2ODE3MjI1MDk1LTAyZGJmNTg1NWZhNmVmOWZjMjA2MGUyOGY4MjE5ZGUwOTQxY2Q3MDBmNTM5YTllNGU4M2QyMzQ4M2U4ZjQ5YmY). If the link is not working, find the latest one at [Apache INFRA WIKI](https://cwiki.apache.org/confluence/display/INFRA/Slack+Guest+Invites).
158-
* QQ Group: 392443393(2000/2000, not available), 901167865(available)
157+
* Send `Request to join SkyWalking slack` mail to the mail list(`dev@skywalking.apache.org`), we will invite you in.
158+
* For Chinese speaker, send `[CN] Request to join SkyWalking slack` mail to the mail list(`[email protected]`), we will invite you in.
159159

160160
# Release Guide
161161
All committers should follow [Release Guide](release.md) to publish the official release.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
package = "skywalking-nginx-lua"
2+
version = "1.0.0-0"
3+
source = {
4+
url = "git+https://github.com/apache/skywalking-nginx-lua",
5+
tag = "v1.0.0",
6+
}
7+
8+
description = {
9+
summary = "The Nginx Lua agent for Apache SkyWalking",
10+
homepage = "https://github.com/apache/skywalking-nginx-lua",
11+
license = "Apache License 2.0"
12+
}
13+
14+
dependencies = {
15+
"lua-resty-http >= 0.15",
16+
"lua-resty-jit-uuid >= 0.0.7"
17+
}
18+
19+
build = {
20+
type = "builtin",
21+
modules = {
22+
["skywalking.client"] = "lib/skywalking/client.lua",
23+
["skywalking.constants"] = "lib/skywalking/constants.lua",
24+
["skywalking.correlation_context"] = "lib/skywalking/correlation_context.lua",
25+
["skywalking.management"] = "lib/skywalking/management.lua",
26+
["skywalking.segment_ref"] = "lib/skywalking/segment_ref.lua",
27+
["skywalking.segment"] = "lib/skywalking/segment.lua",
28+
["skywalking.span_layer"] = "lib/skywalking/span_layer.lua",
29+
["skywalking.span"] = "lib/skywalking/span.lua",
30+
["skywalking.tracer"] = "lib/skywalking/tracer.lua",
31+
["skywalking.tracing_context"] = "lib/skywalking/tracing_context.lua",
32+
["skywalking.util"] = "lib/skywalking/util.lua",
33+
}
34+
}

0 commit comments

Comments
 (0)