This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git
The following commit(s) were added to refs/heads/master by this push:
new 9a3c5dc Prepare for version 1.0.0 release and fix typos in doc. (#108)
9a3c5dc is described below
commit 9a3c5dca2f8537418b2b4887980e05aa151f0f7d
Author: wuwen <[email protected]>
AuthorDate: Fri Aug 16 18:36:53 2024 +0800
Prepare for version 1.0.0 release and fix typos in doc. (#108)
---
.gitignore | 1 +
CHANGES.md | 10 ++++++++
NOTICE | 2 +-
README.md | 6 ++---
rockspec/skywalking-nginx-lua-1.0.0-0.rockspec | 34 ++++++++++++++++++++++++++
5 files changed, 49 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore
index ff457e4..5cdacad 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,3 +20,4 @@ packages/
/test/e2e/agent-test-tools/dist
/t/servroot/
go
+release/
diff --git a/CHANGES.md b/CHANGES.md
index df4ffb4..e2dcdd9 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,15 @@
# Changes
+## 1.0.0
+
+1. Add IgnoreSuffix feature.
+2. CI run lua test cases with luajit.
+3. Feat support update the peer before requesting outgoing.
+4. Use agent-test-tool docker image instead of building from source.
+5. Support to try to use `request-id` as `trace-id` when trace context absent.
+6. Stop reporting traces after the worker process begins to exit.
+7. Fix tag key from `http.status` to `http.status_code`.
+
## 0.6.0
1. fix: `skywalking_tracer:finish()` will not be called in some case such as
upstream timeout.
diff --git a/NOTICE b/NOTICE
index cf67c8d..04d6ba5 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
Apache SkyWalking
-Copyright 2017-2022 The Apache Software Foundation
+Copyright 2017-2024 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/README.md b/README.md
index 9f30f44..c781f01 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Apache SkyWalking Nginx Agent
[](https://twitter.com/AsfSkyWalking)
-
+[](https://github.com/apache/skywalking-nginx-lua/actions/workflows/ci.yaml)
[**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
# Contact Us
* Submit an [issue](https://github.com/apache/skywalking/issues) with
`[NIGNX-LUA]` as the issue title prefix.
* Mail list: **[email protected]**. Mail to
`[email protected]`, follow the reply to subscribe the mail
list.
-* 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).
-* QQ Group: 392443393(2000/2000, not available), 901167865(available)
+* Send `Request to join SkyWalking slack` mail to the mail
list(`[email protected]`), we will invite you in.
+* For Chinese speaker, send `[CN] Request to join SkyWalking slack` mail to
the mail list(`[email protected]`), we will invite you in.
# Release Guide
All committers should follow [Release Guide](release.md) to publish the
official release.
diff --git a/rockspec/skywalking-nginx-lua-1.0.0-0.rockspec
b/rockspec/skywalking-nginx-lua-1.0.0-0.rockspec
new file mode 100644
index 0000000..5ecbc7e
--- /dev/null
+++ b/rockspec/skywalking-nginx-lua-1.0.0-0.rockspec
@@ -0,0 +1,34 @@
+package = "skywalking-nginx-lua"
+version = "1.0.0-0"
+source = {
+ url = "git+https://github.com/apache/skywalking-nginx-lua",
+ tag = "v1.0.0",
+}
+
+description = {
+ summary = "The Nginx Lua agent for Apache SkyWalking",
+ homepage = "https://github.com/apache/skywalking-nginx-lua",
+ license = "Apache License 2.0"
+}
+
+dependencies = {
+ "lua-resty-http >= 0.15",
+ "lua-resty-jit-uuid >= 0.0.7"
+}
+
+build = {
+ type = "builtin",
+ modules = {
+ ["skywalking.client"] = "lib/skywalking/client.lua",
+ ["skywalking.constants"] = "lib/skywalking/constants.lua",
+ ["skywalking.correlation_context"] =
"lib/skywalking/correlation_context.lua",
+ ["skywalking.management"] = "lib/skywalking/management.lua",
+ ["skywalking.segment_ref"] = "lib/skywalking/segment_ref.lua",
+ ["skywalking.segment"] = "lib/skywalking/segment.lua",
+ ["skywalking.span_layer"] = "lib/skywalking/span_layer.lua",
+ ["skywalking.span"] = "lib/skywalking/span.lua",
+ ["skywalking.tracer"] = "lib/skywalking/tracer.lua",
+ ["skywalking.tracing_context"] = "lib/skywalking/tracing_context.lua",
+ ["skywalking.util"] = "lib/skywalking/util.lua",
+ }
+}