Pgqueuer

Latest version: v0.19.5

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

Scan your dependencies

Page 4 of 14

0.17.2

What's Changed
* Add entrypoint executor: RetryWithBackoffEntrypointExecutor by janbjorge in https://github.com/janbjorge/pgqueuer/pull/215
* Add postgres v17 to ci test by janbjorge in https://github.com/janbjorge/pgqueuer/pull/222


**Full Changelog**: https://github.com/janbjorge/pgqueuer/compare/v0.17.1...v0.17.2

0.17.1

**PGQueuer Now Works with Python 3.13!**

PGQueuer is now fully compatible with Python 3.13!

What's Changed
- Correct typos in documentation, tests, and scripts by kianmeng in [213](https://github.com/janbjorge/pgqueuer/pull/213)
- Add mock-job function by janbjorge in [217](https://github.com/janbjorge/pgqueuer/pull/217)
- `pgn listen`: print root value by janbjorge in [218](https://github.com/janbjorge/pgqueuer/pull/218)
- Add `EntrypointExecutionParameter` dataclass by janbjorge in [219](https://github.com/janbjorge/pgqueuer/pull/219)
- Add tests to verify trigger ignores heartbeat updates by janbjorge in [212](https://github.com/janbjorge/pgqueuer/pull/212)
- Run Python 3.13 on CI by janbjorge in [221](https://github.com/janbjorge/pgqueuer/pull/221)

New Contributors
- kianmeng made their first contribution in [213](https://github.com/janbjorge/pgqueuer/pull/213)

**Full Changelog**: [v0.17.0...v0.17.1](https://github.com/janbjorge/pgqueuer/compare/v0.17.0...v0.17.1)

0.17.0

PGQueuer v0.17.0 introduces breaking changes, improvements, and bug fixes. Please review the changes below, especially if using custom executors.

Breaking Changes

Executors Overhaul
- `JobExecutor` is now `AbstractEntrypointExecutor`.
- The `execute()` method now requires an additional `context` parameter: `async def execute(self, job: models.Job, context: models.Context) -> None`.
- **Custom Executor Registration**: Use `executor_factory` instead of `executor` for registering executors.
- **EntrypointExecutor Parameters**: Consolidated into `EntrypointExecutorParameters` dataclass.

Scheduler Executor Changes
- Schedulers now use `executor_factory` instead of direct instantiation.
- Executor parameters are consolidated into `ScheduleExecutorFactoryParameters`.

Deprecations
- **Executor Parameter**: Deprecated in favor of `executor_factory`.
- **Retry Timer Argument**: Define retry behavior at the entrypoint level instead of using `QueueManager.run()`.

Improvements
- Executors now receive a `context` object for better control over job execution.

Migration Guide

Updating Executors and Schedulers
1. Update executors to inherit from `AbstractEntrypointExecutor`.
2. Modify `execute()` to accept `context` as a parameter.
3. Use `executor_factory` to register executors.
4. Update schedulers to use `executor_factory` and access attributes via `parameters` (e.g., `executor.parameters.expression`).


Merges
* Use uv in test dockerfile by janbjorge in https://github.com/janbjorge/pgqueuer/pull/205
* Revert: Use uv in test dockerfile by janbjorge in https://github.com/janbjorge/pgqueuer/pull/206
* Revert docker cache by janbjorge in https://github.com/janbjorge/pgqueuer/pull/207
* Use queue_status_type in query builder by janbjorge in https://github.com/janbjorge/pgqueuer/pull/211
* Add executor_factory to entrypoint and schedule by janbjorge in https://github.com/janbjorge/pgqueuer/pull/208


**Full Changelog**: https://github.com/janbjorge/pgqueuer/compare/v0.16.2...v0.17.0

0.16.2

What's Changed
* Add unified interface by janbjorge in https://github.com/janbjorge/pgqueuer/pull/202


**Full Changelog**: https://github.com/janbjorge/pgqueuer/compare/v0.16.1...v0.16.2

0.16.1

What's Changed
* Update docs. by janbjorge in https://github.com/janbjorge/pgqueuer/pull/199
* Add test_execute_after_updated_gt_execute_after by janbjorge in https://github.com/janbjorge/pgqueuer/pull/200
* Task manager check task cancelled upon completed by janbjorge in https://github.com/janbjorge/pgqueuer/pull/203
* Dynamic import add current working directory to sys-path by janbjorge in https://github.com/janbjorge/pgqueuer/pull/204


**Full Changelog**: https://github.com/janbjorge/pgqueuer/compare/v0.16.0...v0.16.1

0.16.0

Release of v0.16.0, bringing new capability: deferred job execution for more precise control over job timing.

Breaking Changes / Migration Notes
- **Database Schema Update**: The `Job` model now includes a new `execute_after` column. This change requires a database schema update. To apply the necessary migration, please run:
bash
python -m pgqueuer upgrade

Failing to apply this migration will result in errors when trying to enqueue jobs with the new `execute_after` attribute.

What's Changed
* Add dataclass dec. to job executor by janbjorge in https://github.com/janbjorge/pgqueuer/pull/194
* Refactor verify structure by janbjorge in https://github.com/janbjorge/pgqueuer/pull/196
* Add execute after feature by janbjorge in https://github.com/janbjorge/pgqueuer/pull/195.

Example Usage
To enqueue a job for deferred execution until 1 minute from now:
python
from datetime import timedelta
await Queries(apgdriver).enqueue("my_task", payload=None, priority=0, execute_after=timedelta(minutes=1))

This job will only be picked for execution once the specified minute has elapsed, giving you better control over job timing.

**Full Changelog**: [v0.15.0...v0.16.0](https://github.com/janbjorge/pgqueuer/compare/v0.15.0...v0.16.0)

Page 4 of 14

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.