Skip to content

Commit 4f56612

Browse files
authoredJan 10, 2024
update CHANGELOG and bump version to 6.20.0 (#1949)
1 parent 01f1624 commit 4f56612

File tree

3 files changed

+21
-16
lines changed

3 files changed

+21
-16
lines changed
 

‎CHANGELOG.asciidoc

+17-12
Original file line numberDiff line numberDiff 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

‎elasticapm/handlers/logging.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
class 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
)

‎elasticapm/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
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)
3232
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)