Skip to content

Commit 60cb0d3

Browse files
authored
Release v4.15.0 (#1537)
1 parent 171e615 commit 60cb0d3

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
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.15.0] (2025-11-19)
4+
5+
* Limit retried exports based on total size, not number by @alexmojaki in [#1527](https://github.com/pydantic/logfire/pull/1527)
6+
* More tweaks to retrying exports by @alexmojaki in [#1531](https://github.com/pydantic/logfire/pull/1531)
7+
38
## [v4.14.2] (2025-10-24)
49

510
* Ensure `OTEL_EXPORTER_OTLP_HEADERS` doesn't override logfire token by @alexmojaki in [#1500](https://github.com/pydantic/logfire/pull/1500)
@@ -966,3 +971,4 @@ First release from new repo!
966971
[v4.14.0]: https://github.com/pydantic/logfire/compare/v4.13.2...v4.14.0
967972
[v4.14.1]: https://github.com/pydantic/logfire/compare/v4.14.0...v4.14.1
968973
[v4.14.2]: https://github.com/pydantic/logfire/compare/v4.14.1...v4.14.2
974+
[v4.15.0]: https://github.com/pydantic/logfire/compare/v4.14.2...v4.15.0

logfire-api/logfire_api/_internal/exporters/otlp.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ def raise_for_retryable_status(response: requests.Response): ...
3030
class DiskRetryer:
3131
"""Retries requests failed by OTLPExporterHttpSession, saving the request body to disk to save memory."""
3232
MAX_DELAY: int
33-
MAX_TASKS: int
33+
MAX_TASK_SIZE: Incomplete
3434
LOG_INTERVAL: int
3535
lock: Incomplete
3636
thread: Thread | None
3737
tasks: deque[tuple[Path, dict[str, Any]]]
38+
total_size: int
3839
session: Incomplete
3940
dir: Incomplete
4041
last_log_time: Incomplete

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.14.2"
7+
version = "4.15.0"
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.14.2"
7+
version = "4.15.0"
88
description = "The best Python observability tool! 🪵🔥"
99
requires-python = ">=3.9"
1010
authors = [

uv.lock

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

0 commit comments

Comments
 (0)