| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 12.26.1 source code.tar.gz | 2026-07-16 | 644.8 kB | |
| 12.26.1 source code.zip | 2026-07-16 | 781.8 kB | |
| README.md | 2026-07-16 | 698 Bytes | |
| Totals: 3 Items | 1.4 MB | 0 | |
What's Changed
- fetch() now uses start_after
<= now()instead of< now()(#848, thanks @ziemekobel). A job inserted with the default start_after = now() could be invisible to a fetch() issued immediately after the insert.now()is transaction-scoped, and on backends with coarse clock resolution — notably PGlite — consecutive autocommit statements often share the same timestamp, so the strict < skipped the job until the clock ticked. NOTIFY gating already used <=; fetch now matches.
New Contributors
- @ziemekobel made their first contribution in https://github.com/timgit/pg-boss/pull/848
Full Changelog: https://github.com/timgit/pg-boss/compare/12.26.0...12.26.1