You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/08/31 08:09:24 UTC

[skywalking-python] branch rel/0.7.0 created (now d94d2b4)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch rel/0.7.0
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git.


      at d94d2b4  Draft release notes for 0.7.0

This branch includes the following new commits:

     new d94d2b4  Draft release notes for 0.7.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[skywalking-python] 01/01: Draft release notes for 0.7.0

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch rel/0.7.0
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit d94d2b49831e75f150a627ace98a51412eb75d7a
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Aug 31 16:05:40 2021 +0800

    Draft release notes for 0.7.0
---
 CHANGELOG.md | 25 ++++++++++++++++++++++---
 setup.py     |  2 +-
 2 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4e09b10..f9a6c34 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,13 +4,32 @@
 
 - Feature:
     - Support collecting and reporting logs to backend (#147)
+    - Support profiling Python method level performance (#127
     - Add a new `sw-python` CLI that enables agent non-intrusive integration (#156)
-
-- New plugins:
-    - Falcon Plugin (#146)
+    - Add exponential reconnection backoff strategy when OAP is down (#157)
+    - Suport ignoring traces by http method (#143)
+    - `NoopSpan` on queue full, propagation downstream (#141)
+    - Support agent namespace. (#126)
+    - Added `grpc.max_connection_age_grace_ms` (#130)
+    - Support secure connection option for GRPC and HTTP (#134)
+
+- Plugins:
+    - Add Falcon Plugin (#146)
+    - Update `sw_pymongo.py` to be compatible with cluster mode (#150)
+    - Add Python celery plugin (#125)
+    - Support tornado5+ and tornado6+ (#119)
+    - Add psycopg plugin (#122)
 
 - Fixes:
     - Now properly removes HTTP basic auth credentials from segments and logs (#152)
+    - Remove HTTP basic auth credentials from log, stacktrace, segment (#152)
+    - Fix `@trace` decorator not work (#136)
+    - Fix grpc disconnect, add `SW_AGENT_MAX_BUFFER_SIZE` to control buffer queue size (#138)
+
+- Others:
+    - chore: bump up `requests` version to avoid license issue (#142)
+    - fix module wrapt as normal install dependancy (#123)
+    - Explicit component inheritance (#132)
  
 ### 0.6.0
 
diff --git a/setup.py b/setup.py
index 0a7bf60..6922879 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ README = (HERE / "README.md").read_text()
 
 setup(
     name="apache-skywalking",
-    version="0.6.0",
+    version="0.7.0",
     description="Python Agent for Apache SkyWalking",
     long_description=README,
     long_description_content_type="text/markdown",