File tree 3 files changed +21
-16
lines changed
3 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -29,24 +29,29 @@ endif::[]
29
29
//===== Bug fixes
30
30
//
31
31
32
- === Unreleased
32
+ [[release-notes-6.x]]
33
+ === Python Agent version 6.x
33
34
34
- // Unreleased changes go here
35
- // When the next release happens, nest these changes under the "Python Agent version 6.x" heading
36
- //[float]
37
- //===== Features
38
- //
39
- //[float]
40
- //===== Bug fixes
35
+ [[release-notes-6.20.0]]
36
+ ==== 6.20.0 - 2024-01-10
41
37
42
38
[float]
43
- ===== Pending Deprecations
39
+ ===== Features
44
40
45
- * The log shipping LoggingHandler will be removed in version 7.0.0 of the agent.
41
+ * Async support for dbapi2 (starting with psycopg) {pull}1944[#1944]
42
+ * Add object name to procedure call spans in dbapi2 {pull}1938[#1938]
43
+ * Add support for python 3.10 and 3.11 lambda runtimes
46
44
45
+ [float]
46
+ ===== Bug fixes
47
47
48
- [[release-notes-6.x]]
49
- === Python Agent version 6.x
48
+ * Fix asyncpg support for 0.29+ {pull}1935[#1935]
49
+ * Fix dbapi2 signature extraction to handle square brackets in table name {pull}1947[#1947]
50
+
51
+ [float]
52
+ ===== Pending Deprecations
53
+
54
+ * The log shipping LoggingHandler will be removed in version 7.0.0 of the agent.
50
55
51
56
[[release-notes-6.19.0]]
52
57
==== 6.19.0 - 2023-10-11
Original file line number Diff line number Diff line change 47
47
class LoggingHandler (logging .Handler ):
48
48
def __init__ (self , * args , ** kwargs ) -> None :
49
49
warnings .warn (
50
- "The LoggingHandler will be deprecated in v7.0 of the agent. "
51
- "Please use `log_ecs_reformatting` and ship the logs with Elastic "
52
- "Agent or Filebeat instead. "
50
+ "The LoggingHandler is deprecated and will be removed in v7.0 of "
51
+ "the agent. Please use `log_ecs_reformatting` and ship the logs "
52
+ "with Elastic Agent or Filebeat instead. "
53
53
"https://www.elastic.co/guide/en/apm/agent/python/current/logs.html" ,
54
54
PendingDeprecationWarning ,
55
55
)
Original file line number Diff line number Diff line change 28
28
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
29
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
30
31
- __version__ = (6 , 19 , 0 )
31
+ __version__ = (6 , 20 , 0 )
32
32
VERSION = "." .join (map (str , __version__ ))
You can’t perform that action at this time.
0 commit comments