Skip to content

Commit

Permalink
Prepare for version 1.0.0 release and fix typos in doc. (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
wuwen5 authored Aug 16, 2024
1 parent 5b107c4 commit 9a3c5dc
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ packages/
/test/e2e/agent-test-tools/dist
/t/servroot/
go
release/
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -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/).
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Apache SkyWalking Nginx Agent

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

![CI](https://github.com/apache/skywalking-nginx-lua/workflows/CI/badge.svg?branch=master)
[![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)


[**SkyWalking**](https://github.com/apache/skywalking) Nginx Agent provides the native tracing capability for Nginx powered by Nginx LUA module.
Expand Down Expand Up @@ -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(`dev@skywalking.apache.org`), 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.
Expand Down
34 changes: 34 additions & 0 deletions rockspec/skywalking-nginx-lua-1.0.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -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",
}
}

0 comments on commit 9a3c5dc

Please sign in to comment.