diff --git a/CHANGELOG.md b/CHANGELOG.md index 13cf4799f..fecce6c54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Release Notes +## [v0.52.0] (2024-09-05) + +* Handle FastAPI update with SolvedDependencies by @alexmojaki in https://github.com/pydantic/logfire/pull/415 +* Add experimental client for the Logfire Query API by @dmontagu in https://github.com/pydantic/logfire/pull/405 +* Remove `default_span_processor` parameter from `configure` by @alexmojaki in https://github.com/pydantic/logfire/pull/400 +* Remove `custom_scope_suffix` parameter of `Logfire.log` by @alexmojaki in https://github.com/pydantic/logfire/pull/399 +* Add missing `service_version` field to `_LogfireConfigData` so that it gets copied into subprocesses by @alexmojaki in https://github.com/pydantic/logfire/pull/401 + ## [v0.51.0] (2024-08-22) ### BREAKING CHANGES @@ -266,6 +274,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.52.0]: https://github.com/pydantic/logfire/compare/v0.51.0...v0.52.0 [v0.51.0]: https://github.com/pydantic/logfire/compare/v0.50.1...v0.51.0 [v0.50.0]: https://github.com/pydantic/logfire/compare/v0.49.1...v0.50.0 [v0.49.1]: https://github.com/pydantic/logfire/compare/v0.49.0...v0.49.1 diff --git a/logfire-api/pyproject.toml b/logfire-api/pyproject.toml index 81391f1f6..e02ffaea4 100644 --- a/logfire-api/pyproject.toml +++ b/logfire-api/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "logfire-api" -version = "0.51.0" +version = "0.52.0" description = "Shim for the Logfire SDK which does nothing unless Logfire is installed" authors = [ { name = "Pydantic Team", email = "engineering@pydantic.dev" }, diff --git a/pyproject.toml b/pyproject.toml index 95681643e..e9f091d88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "logfire" -version = "0.51.0" +version = "0.52.0" description = "The best Python observability tool! 🪵🔥" authors = [ { name = "Pydantic Team", email = "engineering@pydantic.dev" },