Alex-ber-utils

Latest version: v0.13.11

Safety actively analyzes 723929 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 10

0.13.2

Fixed

- **Exception Propagation in `exec_in_executor()`:**
- Fixed an issue where exceptions raised by coroutine functions passed to
`exec_in_executor()` were not properly propagated.

Fixed

- Updated the `chain_future_results()` function to include a guard against setting the
result on an already-resolved future.
- Enhanced the docstring to clearly explain the function's behavior and usage,
ensuring better clarity when multiple callbacks are involved.

- **Exception Propagation in `exec_in_executor()`:**
- Fixed an issue where exceptions raised by coroutine functions passed to
`exec_in_executor()` were not properly propagated.

0.13.0

Fixed

- **Context Preservation for Coroutines in Threads:**
- Fixed an issue where `copy_context()` in `_run_coroutine_in_thread` was redundantly capturing the context, which
could lead to inconsistencies. The context is now correctly propagated from the main thread to the executor thread
using `ctx.run()` in `exec_in_executor`.
- Ensured that the original context is preserved when running coroutines in threads, preventing the loss
of `ContextVar` values across asynchronous boundaries.

- **StopIteration Handling for Coroutines:**
- Added a `_coro_wrapper` to +handle `StopIteration` exceptions in coroutines, converting them into `RuntimeError`.
This prevents `asyncio.Future` from hanging indefinitely when `StopIteration` is raised in a coroutine running in
a separate thread.

Added

- **Explicit Exception Handling:**
- Introduced `_coro_wrapper()` to ensure consistent handling of `StopIteration` for coroutines, aligning with the
behavior of synchronous functions.

- **New Function: `get_context_vars()`**
A utility to collect and manage `ContextVar` instances from modules, along with their factory methods for default
values.
**Features**:
- Detects top-level `ContextVar` instances in specified modules.
- Supports custom factory method resolution via the `factory_method_creator()` parameter.
- Returns a list of entities containing `ContextVar` and its resolved factory method.
- Works seamlessly with `reset_context_vars()` to reset `ContextVar` instances to their default values.

**Usage**:
python
Default usage (factory method in same module as ContextVar)
entities = get_context_vars(my_module)

Custom factory resolver (factory in another module/class)
def custom_factory_creator(var, module):
from other_module import factories
return getattr(factories, f"create_{var.name}_default")

entities = get_context_vars(my_module, factory_method_creator=custom_factory_creator)
reset_context_vars(*entities)

- **New Function: `reset_context_vars()`**
A utility to reset `ContextVar` instances to their default values using pre-resolved
factory methods.
**Features**:
- Accepts entities produced by `get_context_vars()` (containing `ContextVar` and its factory
method).
- Sets the default value for each `ContextVar` using its associated factory method.

- Introduced the `Auto` class, a callable counter designed to generate sequential integers
starting from a configurable initial value.It is intended for use with Python's `Enum` to
automatically assign sequential integer values to enum members.

- Introduced the `create_auto()` factory function to create new instances of the `Auto` class.
It provides a convenient way to generate `Auto` instances with a specified starting value,
defaulting to 0.

- Introduced the `check_not_empty()` function to validate that a given value is not empty. It
raises a `ValueError` with a descriptive message if the value is empty, using the `field_name`
attribute from the provided field object.

- Introduced the `parse_json()` function to parse JSON strings. It is useful for ensuring that
input data is correctly formatted as a list, either directly or via a JSON string.

- Introduced the `validate_same_length()` function to ensure that multiple iterables
have the same length. It raises a `ValueError` if the iterables do not have the same length
or if `field_names` is not provided.

Changed

- **BREAKING CHANGE**: Singature of `_run_coroutine_in_thread()` was reverted back
to 0.12.9 (this is internal function, so you shouldn't use it anyway).
- **BREAKING CHANGE**: Updated `_run_coroutine_in_thread()` to remove the redundant
`copy_context()` call, as the context is already captured and applied in `exec_in_executor`.
The behaviour is the same as in 0.12.9.

0.12.10

Fixed

- **Context Preservation for Coroutines**: Ensured that coroutine functions are executed
within a copied context when run in an executor. This fix addresses a bug where coroutine
functions bypassed `copy_context()`, potentially leading to issues with `ContextVars`
not being maintained across asynchronous boundaries.

Changed

- **Optimization for Regular Function Execution Path**: Refactored the creation of
`func_call` and the `wrapper` function to only occur within the branch handling
regular functions.

- **BREAKING CHANGE**: Singature of `_run_coroutine_in_thread()` was changed (this is internal
function, so you shouldn't use it anyway),
`ctx` was added as first parameter.

0.12.9

Changed

- **AsyncContextManagerMixin**: bug fix. Now, it calls `async_acquire()` and `async_release()`.

0.12.8

Added

- **SyncContextManagerMixin**: A new mixin to provide synchronous context management
capabilities to classes. This mixin includes `__enter__()` and `__exit__()` methods to manage
acquiring and releasing locks.
- **AsyncContextManagerMixin**: A new mixin to provide asynchronous context management
capabilities to classes. This mixin includes `__aenter__()` and `__aexit__()` methods to manage
acquiring and releasing locks asynchronously.

Changed

- **LockingProxy**: Enhanced to include synchronous and asynchronous context management
through the integration of `SyncContextManagerMixin` and `AsyncContextManagerMixin`.
This update allows `LockingProxy` to be used with both `with` and `async with` statements
for better resource management in multi-threaded and asynchronous environments.

0.12.7

Added

- Introduced `LockingGetItemMixin` to provide thread-safe access to items in a collection.
- Introduced `LockingSetItemMixin` to provide thread-safe modification of items in a collection.

Changed

- Updated `LockingProxy` class to include `LockingGetItemMixin` and `LockingSetItemMixin` for handling thread-safe item
access and modification.
- Updated the docstring of `LockingProxy` to reflect the inclusion of the new mixins.

Page 2 of 10

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.