14
0

- Update to 25.4.0:

Added:
  * Support for Python 3.14 and Python 3.13.4.
  * Python 3.14 has an backwards-incompatible change to logging.Logger.isEnabledFor()
    (it now always returns False if a log entry is in flight) that has been backported
    to 3.13.4 (expected on 2025-06-03). It mainly affects structlog.stdlib.filter_by_level(). #723
  * structlog.tracebacks now handles exception groups. structlog.tracebacks.Stack has two
    new fields, is_group: bool and exceptions: list[Trace]. This works similarly to what
    Rich v14.0.0 does. #720
  Fixed:
  * structlog.processors.ExceptionPrettyPrinter now respects the exception_formatter
    arguments instead of always using the default formatter. #724

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-structlog?expand=0&rev=32
This commit is contained in:
2025-06-02 17:10:38 +00:00
committed by Git OBS Bridge
parent 7e8c1e6b6d
commit a2701f89e6
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Jun 2 17:09:13 UTC 2025 - Michael Vetter <mvetter@suse.com>
- Update to 25.4.0:
Added:
* Support for Python 3.14 and Python 3.13.4.
* Python 3.14 has an backwards-incompatible change to logging.Logger.isEnabledFor()
(it now always returns False if a log entry is in flight) that has been backported
to 3.13.4 (expected on 2025-06-03). It mainly affects structlog.stdlib.filter_by_level(). #723
* structlog.tracebacks now handles exception groups. structlog.tracebacks.Stack has two
new fields, is_group: bool and exceptions: list[Trace]. This works similarly to what
Rich v14.0.0 does. #720
Fixed:
* structlog.processors.ExceptionPrettyPrinter now respects the exception_formatter
arguments instead of always using the default formatter. #724
-------------------------------------------------------------------
Mon Apr 28 10:25:13 UTC 2025 - Michael Vetter <mvetter@suse.com>