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 2022/07/06 07:23:52 UTC

[skywalking-python] branch rel/0.8.0 created (now 99570fe)

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

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


      at 99570fe  Draft release 0.8.0

This branch includes the following new commits:

     new 99570fe  Draft release 0.8.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 0.8.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.8.0
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit 99570fe3b70879015fe7b7abae30c3293a2ba27e
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Wed Jul 6 15:23:41 2022 +0800

    Draft release 0.8.0
---
 CHANGELOG.md | 31 +++++++++++++++++++++++--------
 setup.py     |  2 +-
 2 files changed, 24 insertions(+), 9 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 87d28dc..5b6736b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,9 @@
 ## Change Logs
 
-### 1.0.0 
+### 0.8.0
 - Feature:
+  - Update mySQL plugin to support two different parameter keys. (#186)
+  - Add a `SW_AGENT_LOG_REPORTER_SAFE_MODE` option to control the HTTP basic auth credential filter (#200)
 
 - Plugins:
   - Add Psycopg(3.x) support (#168)
@@ -21,15 +23,28 @@
   - Fix instance property wrongly shown as UNKNOWN in OAP (#194)
   - Fix multiple components inconsistently named on SkyWalking UI (#199)
   - Fix SW_AGENT_LOGGING_LEVEL not properly set during startup (#196)
+  - Unify the http tag name with other agents (#208)
+  - Remove namespace to instance properties and add pid property (#205)
+  - Fix the properties are not set correctly (#198)
+  - Improved ignore path regex (#210)
+  - Fix sw_psycopg2 register_type() (#211)
+  - Fix psycopg2 register_type() second arg default (#212)
+  - Enhance Traceback depth (#206)
+  - Set spans whose http code > 400 to error (#187)
 
 - Docs:
   - Add a FAQ doc on `how to use with uwsgi` (#188)
 
 - Others:
+  - Refactor current Python agent docs to serve on SkyWalking official website (#162)
+  - Refactor SkyWalking Python to use the CLI for CI instead of legacy setup (#165)
   - Add support for Python 3.10 (#167)
+  - Move flake configs all together (#169)
+  - Introduce another set of flake8 extensions (#174)
   - Add E2E test coverage for trace and logging (#199)
-  - Add a `SW_AGENT_LOG_REPORTER_SAFE_MODE` option to control the HTTP basic auth credential filter (#TBD)
   - Now Log reporter `cause_exception_depth` traceback limit defaults to 10
+  - Enable faster CI by categorical parallelism (#170)
+
 ### 0.7.0
 
 - Feature:
@@ -58,7 +73,7 @@
     - Fix module wrapt as normal install dependency (#123)
     - Explicit component inheritance (#132)
     - Provide dockerfile & images for easy integration in containerized scenarios (#159)
- 
+
 ### 0.6.0
 
 - Fixes:
@@ -105,7 +120,7 @@
     - PyMongo Plugin (#60)
     - Rabbitmq Plugin (#53)
     - Make plugin compatible with Django (#52)
-    
+
 - API
     - Add process propagation (#67)
     - Add tags to decorators (#65)
@@ -114,16 +129,16 @@
     - Add trace ignore (#59)
     - Support snapshot context (#56)
     - Support correlation context (#55)
-    
+
 - Chores and tests
     - Test: run multiple versions of supported libraries (#66)
     - Chore: add pull request template for plugin (#61)
     - Chore: add dev doc and reorganize the structure (#58)
     - Test: update test health check (#57)
     - Chore: add make goal to package release tar ball (#54)
-    
-    
-    
+
+
+
 ### 0.2.0
 
 - New plugins
diff --git a/setup.py b/setup.py
index 5683d3c..b890dc2 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ README = (HERE / 'README.md').read_text()
 
 setup(
     name='apache-skywalking',
-    version='0.7.0',
+    version='0.8.0',
     description='Python Agent for Apache SkyWalking',
     long_description=README,
     long_description_content_type='text/markdown',