You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Release Notes
2
2
3
+
## [v4.8.0] (2025-09-18)
4
+
5
+
* Allow capturing headers and response body with `logfire.instrument_aiohttp_client()` by @adtyavrdhn in [#1405](https://github.com/pydantic/logfire/pull/1405) and [#1409](https://github.com/pydantic/logfire/pull/1409)
6
+
3
7
## [v4.7.0] (2025-09-12)
4
8
5
9
* Update to OpenTelemetry SDK 1.37.0, drop support for <1.35.0 by @alexmojaki in [#1398](https://github.com/pydantic/logfire/pull/1398)
Copy file name to clipboardExpand all lines: logfire-api/logfire_api/_internal/main.pyi
+19-4Lines changed: 19 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ import pydantic_ai
6
6
importpydantic_ai.models
7
7
importrequests
8
8
from . importasync_asasync_
9
+
from ..integrations.aiohttp_clientimportRequestHookasAiohttpClientRequestHook, ResponseHookasAiohttpClientResponseHook
9
10
from ..integrations.flaskimportCommenterOptionsasFlaskCommenterOptions, RequestHookasFlaskRequestHook, ResponseHookasFlaskResponseHook
10
11
from ..integrations.httpximportAsyncRequestHookasHttpxAsyncRequestHook, AsyncResponseHookasHttpxAsyncResponseHook, RequestHookasHttpxRequestHook, ResponseHookasHttpxResponseHook
11
12
from ..integrations.psycopgimportCommenterOptionsasPsycopgCommenterOptions
@@ -401,10 +402,14 @@ class Logfire:
401
402
Set to `'warn'` to issue a warning instead, or `'ignore'` to skip the check.
0 commit comments