Skip to content

Commit 9cde04b

Browse files
authored
Release v4.0.1 (#1286)
1 parent 3ae4abb commit 9cde04b

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## [v4.0.1] (2025-07-31)
4+
5+
* Handle cyclic references in exceptions by @alexmojaki in [#1284](https://github.com/pydantic/logfire/pull/1284)
6+
* Support OpenTelemetry 1.36.0 by @alexmojaki in [#1285](https://github.com/pydantic/logfire/pull/1285)
7+
38
## [v4.0.0] (2025-07-22)
49

510
**BREAKING CHANGES**:
@@ -809,3 +814,4 @@ First release from new repo!
809814
[v3.24.2]: https://github.com/pydantic/logfire/compare/v3.24.1...v3.24.2
810815
[v3.25.0]: https://github.com/pydantic/logfire/compare/v3.24.2...v3.25.0
811816
[v4.0.0]: https://github.com/pydantic/logfire/compare/v3.25.0...v4.0.0
817+
[v4.0.1]: https://github.com/pydantic/logfire/compare/v4.0.0...v4.0.1

logfire-api/logfire_api/_internal/utils.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def platform_is_emscripten() -> bool:
129129
130130
Threads cannot be created on Emscripten, so we need to avoid any code that creates threads.
131131
"""
132-
def canonicalize_exception_traceback(exc: BaseException) -> str:
132+
def canonicalize_exception_traceback(exc: BaseException, seen: set[int] | None = None) -> str:
133133
"""Return a canonical string representation of an exception traceback.
134134
135135
Exceptions with the same representation are considered the same for fingerprinting purposes.

logfire-api/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "logfire-api"
7-
version = "4.0.0"
7+
version = "4.0.1"
88
description = "Shim for the Logfire SDK which does nothing unless Logfire is installed"
99
authors = [
1010
{ name = "Pydantic Team", email = "[email protected]" },

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "logfire"
7-
version = "4.0.0"
7+
version = "4.0.1"
88
description = "The best Python observability tool! 🪵🔥"
99
requires-python = ">=3.9"
1010
authors = [

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)