File tree Expand file tree Collapse file tree 3 files changed +21
-16
lines changed Expand file tree Collapse file tree 3 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -29,24 +29,29 @@ endif::[]
2929//===== Bug fixes
3030//
3131
32- === Unreleased
32+ [[release-notes-6.x]]
33+ === Python Agent version 6.x
3334
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
4137
4238[float]
43- ===== Pending Deprecations
39+ ===== Features
4440
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
4644
45+ [float]
46+ ===== Bug fixes
4747
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.
5055
5156[[release-notes-6.19.0]]
5257==== 6.19.0 - 2023-10-11
Original file line number Diff line number Diff line change 4747class LoggingHandler (logging .Handler ):
4848 def __init__ (self , * args , ** kwargs ) -> None :
4949 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. "
5353 "https://www.elastic.co/guide/en/apm/agent/python/current/logs.html" ,
5454 PendingDeprecationWarning ,
5555 )
Original file line number Diff line number Diff line change 2828# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030
31- __version__ = (6 , 19 , 0 )
31+ __version__ = (6 , 20 , 0 )
3232VERSION = "." .join (map (str , __version__ ))
You can’t perform that action at this time.
0 commit comments