From 142a925dcf17d17619a05e28cbf3c80b4ebfba94 Mon Sep 17 00:00:00 2001 From: erikayasuda Date: Wed, 28 Aug 2024 07:34:23 -0400 Subject: [PATCH 1/2] update changelog for version 2.11.2 via release script --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4897e1ded5..72f289965d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ Changelogs for versions not listed here can be found at https://github.com/DataDog/dd-trace-py/releases +--- + +## 2.11.2 + + +### New Features + +- openai: This introduces 'model' tag for openai integration metrics for consistency with the OpenAI SaaS Integration. It has the same value as openai.request.model. + +### Bug Fixes + +- LLM Observability: This fix resolves an issue where LLM Observability spans were not being submitted in forked processes, such as when using `celery` or `gunicorn` workers. The LLM Observability writer thread now automatically restarts when a forked process is detected. +- openai: Fixes a bug where \`asyncio.TimeoutError\`s were not being propagated correctly from canceled OpenAI API requests. + + --- ## 2.11.1 From 45490dcd7e073ff87e6d0e3e6448ace1e0264d6e Mon Sep 17 00:00:00 2001 From: erikayasuda Date: Wed, 28 Aug 2024 07:36:36 -0400 Subject: [PATCH 2/2] formatting --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72f289965d1..5b63d77bb5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,12 @@ Changelogs for versions not listed here can be found at https://github.com/DataD ### New Features -- openai: This introduces 'model' tag for openai integration metrics for consistency with the OpenAI SaaS Integration. It has the same value as openai.request.model. +- openai: Introduces `model` tag for openai integration metrics for consistency with the OpenAI SaaS Integration. It has the same value as `openai.request.model`. ### Bug Fixes -- LLM Observability: This fix resolves an issue where LLM Observability spans were not being submitted in forked processes, such as when using `celery` or `gunicorn` workers. The LLM Observability writer thread now automatically restarts when a forked process is detected. -- openai: Fixes a bug where \`asyncio.TimeoutError\`s were not being propagated correctly from canceled OpenAI API requests. +- LLM Observability: Resolves an issue where LLM Observability spans were not being submitted in forked processes, such as when using `celery` or `gunicorn` workers. The LLM Observability writer thread now automatically restarts when a forked process is detected. +- openai: Fixes a bug where `asyncio.TimeoutError`s were not being propagated correctly from canceled OpenAI API requests. ---