14
0
forked from pool/python-loguru
Commit Graph

19 Commits

Author SHA256 Message Date
e92bf0569b fix source URL
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=31
2025-05-12 10:57:10 +00:00
f5a75ecf99 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
2025-05-12 06:10:41 +00:00
21d4da3b54 - add py313.patch, py314.patch: fixes for python 3.13 and 3.14
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=28
2024-10-28 12:14:20 +00:00
f0c0ea0a0a - update to 0.7.2:
* Add support for formatting of `ExceptionGroup` errors (#805).
  * Fix possible `RuntimeError` when using
    `multiprocessing.set_start_method()` after importing the
    `logger` (#974).
  * Fix formatting of possible `__notes__` attached to an
    `Exception` (#980).
- update to 0.7.1:
  * Add a new `context` optional argument to `logger.add()`
    specifying `multiprocessing` context (like `"spawn"` or
    `"fork"`) to be used internally instead of the default one
  * Add support for true colors on Windows using ANSI/VT console
    when available (#934, thanks @tunaflsh).
  * Fix possible deadlock when calling `logger.complete()` with
    concurrent logging of an asynchronous sink (#906).
  * Fix file possibly rotating too early or too late when re-
    starting an application around midnight (#894).
  * Fix inverted `""` and `""` color tags
  * Fix possible untraceable errors raised when logging non-
    unpicklable `Exception` instances while using `enqueue=True`
  * Fix possible errors raised when logging non-picklable
    `Exception` instances while using `enqueue=True` (#342,
    thanks @ncoudene).
  * Fix missing seconds and microseconds when formatting timezone
    offset that requires such accuracy
  * Raise `ValueError` if an attempt to use nanosecond precision
    for time formatting is detected
- Skip two formatting tests -- gh#Delgan/loguru#550
- BuildRequire python36-aiocontextvars if building under python 3.6

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=26
2023-10-05 08:54:35 +00:00
67e3b369b4 - drop optional mypy testing dependency
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=24
2023-05-12 13:32:08 +00:00
722a24e8eb - drop python311.patch, loguru-fix-repr-tests.patch: upstream
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=22
2023-05-05 13:41:20 +00:00
93e22e2824 - update to 0.7.0:
* Update `InterceptHandler` recipe to make it compatible with
    Python 3.11 (#654).
  * Add a new `watch` optional argument to file sinks in order to
    automatically re-create possibly deleted or changed file
    (#471).
  * Make `patch()` calls cumulative instead of overriding the
    possibly existing patching function (#462).
  * Make sinks added with `enqueue=True` and `catch=False` still
    process logged messages in case of internal exception (#833).
  * Avoid possible deadlocks caused by re-using the logger inside
    a sink, a signal handler or a `__del__` method. Since the
    logger is not re-entrant, such misuse will be detected and
    will now generate a `RuntimeError` (#712, thanks
    @jacksmith15).
  * Fix file sink rotation using an aware `datetime.time` for
    which the timezone was ignored (#697).
  * Fix logs colorization not automatically enabled for Jupyter
    Notebook and Google Colab (#494).
  * Fix logs colorization not automatically enabled for Github
    Actions and others CI platforms (#604).
  * Fix `logger.complete()` possibly hanging forever when
    `enqueue=True` and `catch=False` if internal thread killed
    due to `Exception` raised by sink (#647).
  * Fix incompatibility with `freezegun` library used to simulate
    time (#600).
  * Raise exception if `logger.catch()` is used to wrap a class
    instead of a function to avoid unexpected behavior (#623).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=21
2023-05-05 13:40:34 +00:00
22dd9cfac4 Accepting request 1081489 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081489
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=19
2023-04-21 14:22:11 +00:00
222f142b7a OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=17 2023-01-28 16:11:50 +00:00
aed181b600 Accepting request 993287 from home:bnavigator:branches:devel:languages:python
- Update to 0.6.0
  * Remove internal use of pickle.loads() considered as a security
    vulnerability referenced as CVE-2022-0329 (#563).
  * Modify coroutine sink to make it discard log messages when
    loop=None and no event loop is running (due to internally using
    asyncio.get_running_loop() in place of
    asyncio.get_event_loop()).
  * Remove the possibility to add a coroutine sink with
    enqueue=True if loop=None and no event loop is running.
  * Change default encoding of file sink to be utf8 instead of
    locale.getpreferredencoding() (#339).
  * Prevent non-ascii characters to be escaped while logging JSON
    message with serialize=True (#575, thanks @ponponon).
  * Fix flake8 errors and improve code readability (#353, thanks
    @AndrewYakimets).
- Drop merged patches:
  * loguru-exception-formatting-py39.patch
  * pytest-6.2-excepthooks.patch
- Add loguru-fix-repr-tests.patch
  * Fix "repr()" tests failing on Python 3.11 and Python 3.10.6
  * https://github.com/Delgan/loguru/commit/4fe21f66

OBS-URL: https://build.opensuse.org/request/show/993287
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=15
2022-08-05 13:19:57 +00:00
John Vandenberg
4a059b5745 Accepting request 938254 from home:bnavigator:python-rpm-macros
- Skip two formatting tests -- gh#Delgan/loguru#550

OBS-URL: https://build.opensuse.org/request/show/938254
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=14
2021-12-09 18:57:36 +00:00
53a87b62f2 Accepting request 886445 from home:bnavigator:branches:devel:languages:python
- Add loguru-exception-formatting-py39.patch
  https://github.com/Delgan/loguru/commit/19f518c5 for changed
  exception formatting in Python 3.9

OBS-URL: https://build.opensuse.org/request/show/886445
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=12
2021-04-19 08:07:56 +00:00
John Vandenberg
167d279f3c Accepting request 873587 from home:jayvdb:branches:devel:languages:python
- Add pytest-6.2-excepthooks.patch for compatibility with pytest 6.2

OBS-URL: https://build.opensuse.org/request/show/873587
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=10
2021-02-19 01:58:26 +00:00
John Vandenberg
6c947d8afb Accepting request 870371 from home:jayvdb:branches:devel:languages:python
- Update t0 v0.5.3

OBS-URL: https://build.opensuse.org/request/show/870371
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=8
2021-02-09 00:39:34 +00:00
acb5725154 Accepting request 865376 from home:bnavigator:branches:devel:languages:python
- Add runtime requirement for contextvars and the correct BR for
  Leap
- Skip failing tests on 32-bit

OBS-URL: https://build.opensuse.org/request/show/865376
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=6
2021-01-21 11:54:01 +00:00
908758e165 - BuildRequire python36-aiocontextvars if building under python 3.6
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=5
2021-01-21 06:01:30 +00:00
John Vandenberg
19e8a0bb42 Accepting request 774679 from home:mnhauke
- Update to version 0.4.1
  * Deprecate the ansi parameter of .opt() in favor of colors
    which is a name more appropriate.
  * Prevent unrelated files and directories to be incorrectly
    collected thus causing errors during the retention process
  * Strip color markups contained in record["message"] when
    logging with .opt(ansi=True) instead of leaving them as is.
  * Ignore color markups contained in *args and **kwargs when
    logging with .opt(ansi=True), leave them as is instead of
    trying to use them to colorize the message which could cause
    undesirable errors.
- Update to version 0.4.0
  * Add support for coroutine functions used as sinks and add the
    new logger.complete() asynchronous method to await them.
  * Add a way to filter logs using one level per module in the
    form of a dict passed to the filter argument.
  * Add type hints to annotate the public methods using a .pyi
    stub file.
  * Add support for copy.deepcopy() of the logger allowing multiple
    independent loggers with separate set of handlers.
  * Add the possibility to convert datetime to UTC before
    formatting (in logs and filenames) by adding "!UTC" at the end
    of the time format specifier.
  * Add the level name as the first argument of namedtuple returned
    by the .level() method.
  * Remove class objects from the list of supported sinks and
    restrict usage of **kwargs in .add() to file sink only. User is
    in charge of instantiating sink and wrapping additional keyword
    arguments if needed, before passing it to the .add() method.
  * Rename the logger.configure() keyword argument patch to patcher

OBS-URL: https://build.opensuse.org/request/show/774679
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=3
2020-02-16 12:06:14 +00:00
ed32b837d8 Accepting request 722825 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/722825
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-loguru?expand=0&rev=1
2019-08-13 11:25:58 +00:00
7c599ba660 Accepting request 720696 from home:jayvdb:storyscript
Becoming very popular
https://pypistats.org/packages/loguru

OBS-URL: https://build.opensuse.org/request/show/720696
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-loguru?expand=0&rev=1
2019-08-07 11:52:07 +00:00