Changelog
All notable changes to this project will be documented in this file.
The format is loosely based on Keep a Changelog.
Unreleased
Added
- Documentation site.
0.5.0 - 2026-02-08
Breaking Changes
invocation.priorityremoved; useinvocation.context[priority]instead.Invocation.Submitted.priorityreplaced withcontext.- Serialized invocations from previous versions are incompatible.
Added
QueueVarfor user-defined serializable context variables that propagate across queue boundaries.QueueContextmapping to access captured context on invocations.priorityis now aQueueVarinstance (same context manager syntax as before).
0.4.0 - 2026-02-07
Breaking Changes
- Serialized invocations from previous versions are incompatible.
- Queues must be recreated with
sync --recreateto support priority ordering.
Added
- Priority support for invocations (0-9, default 4).
Use the
priority()context manager to set the priority for invocations created within its scope. Priority propagates to descendent invocations. sync --recreateflag to delete and recreate all queues.Invocation.Submittedevents now includepriority.
Fixed
- The
queueioCLI entry point was broken by a build configuration that excluded the package source.
0.3.0 - 2026-02-06
Added
- The journal now uses a threadsafe pika connection, rather than guarding a blocking connection.
- The integration tests and examples have better queue names.
0.2.2 - 2025-11-23
Fixed
- Use the queueio logo from GitHub so it will show on PyPI.
0.2.1 - 2025-11-22
Fixed
- Include the queueio logo in the distribution so it will show on PyPI.
0.2.0 - 2025-11-22
Acknowledgement
Thank you to Nick Anderegg for allowing me to use the queueio name for this project.
Added
routinedecorator to declare sync or async functions as background routines.activatecontext manager to activate the queueio system.pauseto coordinate a pause of a routine to queueio.gatherto run multiple routines concurrently and gather the results.Routine.submit()method to submit a routine invocation to the queue.- Configuration in the
tool.queueiosection ofpyproject.toml. pikaconfigures the pika library to connect to the AMQP broker.registerconfigures the modules that declare routines.QUEUEIO_PIKAenvironment variable to override thepikaconfiguration inpyproject.toml.queueio synccommand to synchronize queues to the broker.queueio runcommand to run the queueio worker.- The queuespec syntax to
queue runto consume multiple queues with shared capacity. queueio monitorcommand to monitor activity in the queueio system.