From af65a4590b6b53b1c484050d14428dd8b362b3f9 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Wed, 26 Jun 2024 16:38:27 +0200 Subject: [PATCH] Uprev to 0.44.0 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 904c0a338..25c42e9e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes +## [v0.44.0] (2024-06-26) + +* Prevent 'dictionary changed size during iteration' error in `install_auto_tracing` by @alexmojaki in https://github.com/pydantic/logfire/pull/277 +* `suppress_instrumentation` when retrying exports by @alexmojaki in https://github.com/pydantic/logfire/pull/279 +* Log async stack in `log_slow_async_callbacks` by @alexmojaki in https://github.com/pydantic/logfire/pull/280 + ## [v0.43.0] (2024-06-24) * **BREAKING CHANGE**: Remove default for `modules` parameter of `install_auto_tracing` by @alexmojaki in https://github.com/pydantic/logfire/pull/261 @@ -176,6 +182,7 @@ First release from new repo! * Ensure `logfire.testing` doesn't depend on pydantic and eval_type_backport by @alexmojaki in https://github.com/pydantic/logfire/pull/40 * Allow using pydantic plugin with models defined before calling logfire.configure by @alexmojaki in https://github.com/pydantic/logfire/pull/36 +[v0.44.0]: https://github.com/pydantic/logfire/compare/v0.43.0...v0.44.0 [v0.43.0]: https://github.com/pydantic/logfire/compare/v0.42.0...v0.43.0 [v0.42.0]: https://github.com/pydantic/logfire/compare/v0.41.0...v0.42.0 [v0.41.0]: https://github.com/pydantic/logfire/compare/v0.40.0...v0.41.0 diff --git a/pyproject.toml b/pyproject.toml index 2c3849879..393cdf54d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "logfire" -version = "0.43.0" +version = "0.44.0" description = "The best Python observability tool! 🪵🔥" authors = [ { name = "Pydantic Team", email = "engineering@pydantic.dev" },