14
0
forked from pool/python-loguru

Accepting request 1276340 from home:yeey:branches:devel:languages:python

- Update to 0.7.3
  * Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a ValueError during logging (#88).
  * Fix possible RuntimeError when removing all handlers with logger.remove() due to thread-safety issue (#1183)
  * Fix diagnose=True option of exception formatting not working as expected with Python 3.13 (#1235).
  * Fix non-standard level names not fully compatible with logging.Formatter() (#1231).
  * Fix inability to display a literal "\" immediately before color markups (#988).
  * Fix possible infinite recursion when an exception is raised from a __repr__ method decorated with logger.catch() (#1044).
  * Improve performance of datetime formatting while logging messages (#1201).
  * Reduce startup time in the presence of installed but unused IPython third-party library (#1001).
- Remove py313.patch and py314.patch as they had landed in 0.7.3

OBS-URL: https://build.opensuse.org/request/show/1276340
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=30
This commit is contained in:
2025-05-12 06:10:41 +00:00
committed by Git OBS Bridge
parent 21d4da3b54
commit f5a75ecf99
6 changed files with 28 additions and 217 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed May 7 05:28:06 UTC 2025 - Guang Yee <gyee@suse.com>
- Update to 0.7.3
* Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a ValueError during logging (#88).
* Fix possible RuntimeError when removing all handlers with logger.remove() due to thread-safety issue (#1183)
* Fix diagnose=True option of exception formatting not working as expected with Python 3.13 (#1235).
* Fix non-standard level names not fully compatible with logging.Formatter() (#1231).
* Fix inability to display a literal "\" immediately before color markups (#988).
* Fix possible infinite recursion when an exception is raised from a __repr__ method decorated with logger.catch() (#1044).
* Improve performance of datetime formatting while logging messages (#1201).
* Reduce startup time in the presence of installed but unused IPython third-party library (#1001).
- Remove py313.patch and py314.patch as they had landed in 0.7.3
-------------------------------------------------------------------
Mon Oct 28 12:13:51 UTC 2024 - Dirk Müller <dmueller@suse.com>