diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fb045b6f..f7054779d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Release Notes +## [v2.6.1] (2024-12-05) + +* Use `exc_info` in structlog processor by @alexmojaki in [#641](https://github.com/pydantic/logfire/pull/641) +* Re-seed random ID generator after `os.fork()` by @alexmojaki in [#644](https://github.com/pydantic/logfire/pull/644) + ## [v2.6.0] (2024-12-02) * Add `instrument_sqlite3` by @Kludex in [#634](https://github.com/pydantic/logfire/pull/634) @@ -450,3 +455,4 @@ First release from new repo! [v2.4.1]: https://github.com/pydantic/logfire/compare/v2.4.0...v2.4.1 [v2.5.0]: https://github.com/pydantic/logfire/compare/v2.4.1...v2.5.0 [v2.6.0]: https://github.com/pydantic/logfire/compare/v2.5.0...v2.6.0 +[v2.6.1]: https://github.com/pydantic/logfire/compare/v2.6.0...v2.6.1 diff --git a/logfire-api/pyproject.toml b/logfire-api/pyproject.toml index d25704a12..4203728b6 100644 --- a/logfire-api/pyproject.toml +++ b/logfire-api/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "logfire-api" -version = "2.6.0" +version = "2.6.1" 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 7e89aff5e..13538cd65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "logfire" -version = "2.6.0" +version = "2.6.1" description = "The best Python observability tool! 🪵🔥" requires-python = ">=3.8" authors = [ diff --git a/uv.lock b/uv.lock index 854fa1b05..3a7fc7c29 100644 --- a/uv.lock +++ b/uv.lock @@ -436,7 +436,7 @@ name = "cffi" version = "1.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser" }, + { name = "pycparser", marker = "platform_python_implementation != 'PyPy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } wheels = [ @@ -1387,7 +1387,7 @@ wheels = [ [[package]] name = "logfire" -version = "2.6.0" +version = "2.6.1" source = { editable = "." } dependencies = [ { name = "executing" }, @@ -1656,7 +1656,7 @@ docs = [ [[package]] name = "logfire-api" -version = "2.6.0" +version = "2.6.1" source = { editable = "logfire-api" } [package.metadata]