Skip to content

Commit a9e8ee7

Browse files
authored
Release v3.21.2 (#1213)
1 parent 9155436 commit a9e8ee7

File tree

6 files changed

+17
-6
lines changed

6 files changed

+17
-6
lines changed

CHANGELOG.md

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

3+
## [v3.21.2] (2025-06-30)
4+
5+
* Fix importlib resources with auto tracing by @alexmojaki in [#1212](https://github.com/pydantic/logfire/pull/1212)
6+
37
## [v3.21.1] (2025-06-18)
48

59
* Fix for new OpenAI Agents SDK by @alexmojaki in [#1152](https://github.com/pydantic/logfire/pull/1152)
@@ -753,3 +757,4 @@ First release from new repo!
753757
[v3.20.0]: https://github.com/pydantic/logfire/compare/v3.19.0...v3.20.0
754758
[v3.21.0]: https://github.com/pydantic/logfire/compare/v3.20.0...v3.21.0
755759
[v3.21.1]: https://github.com/pydantic/logfire/compare/v3.21.0...v3.21.1
760+
[v3.21.2]: https://github.com/pydantic/logfire/compare/v3.21.1...v3.21.2

logfire-api/logfire_api/_internal/auto_trace/import_hook.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ class LogfireLoader(Loader):
3636
def create_module(self, spec: ModuleSpec): ...
3737
def get_code(self, _name: str): ...
3838
def __getattr__(self, item: str):
39-
"""Forward some methods to the plain spec's loader (likely a `SourceFileLoader`) if they exist."""
39+
"""Forward to the plain spec's loader (likely a `SourceFileLoader`)."""

logfire-api/logfire_api/integrations/logging.pyi

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ from typing import Any, ClassVar
99
RESERVED_ATTRS: frozenset[str]
1010

1111
class LogfireLoggingHandler(LoggingHandler):
12-
"""A [logging](../../integrations/logging.md) handler that sends logs to **Logfire**."""
12+
"""A [logging](../../integrations/logging.md) handler that sends logs to **Logfire**.
13+
14+
Args:
15+
level: The threshold level for this handler. Logging messages which are less severe than *level* will be ignored.
16+
fallback: A fallback handler to use when [instrumentation is suppressed](../../how-to-guides/suppress.md#suppress-instrumentation).
17+
logfire_instance: The Logfire instance to use when emitting logs. Defaults to the default global instance.
18+
"""
1319
custom_scope_suffix: ClassVar[str]
1420
fallback: Incomplete
1521
logfire_instance: 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 = "3.21.1"
7+
version = "3.21.2"
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 = "3.21.1"
7+
version = "3.21.2"
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)