All Versions
63
Latest Version
Avg Release Cycle
51 days
Latest Release
1216 days ago

Changelog History
Page 5

  • v0.4.2 Changes

    (April 28th, 2014)

    • βž• Add missing depends_on kwarg to @job decorator. Thanks, Sasha!
  • v0.4.1 Changes

    (April 22nd, 2014)

    • πŸ›  Fix bug where RQ 0.4 workers could not unpickle/process jobs from RQ < 0.4.
  • v0.4.0 Changes

    (April 22nd, 2014)

    • πŸ’» Emptying the failed queue from the command line is now as simple as running rqinfo -X or rqinfo --empty-failed-queue.

    • πŸ‘· Job data is unpickled lazily. Thanks, Malthe!

    • βœ‚ Removed dependency on the times library. Thanks, Malthe!

    • πŸ‘· Job dependencies! Thanks, Selwin.

    • πŸ‘· Custom worker classes, via the --worker-class=path.to.MyClass command line argument. Thanks, Selwin.

    • Queue.all() and rqinfo now report empty queues, too. Thanks, Rob!

    • πŸ›  Fixed a performance issue in Queue.all() when issued in large Redis DBs. Thanks, Rob!

    • Birth and death dates are now stored as proper datetimes, not timestamps.

    • 0️⃣ Ability to provide a custom job description (instead of using the default function invocation hint). Thanks, Δ°brahim.

    • πŸ›  Fix: temporary key for the compact queue is now randomly generated, which should avoid name clashes for concurrent compact actions.

    • πŸ›  Fix: Queue.empty() now correctly deletes job hashes from Redis.

  • v0.3.13 Changes

    (December 17th, 2013)

    • πŸ› Bug fix where the worker crashes on jobs that have their timeout explicitly removed. Thanks for reporting, @algrs.
  • v0.3.12 Changes

    (December 16th, 2013)

    • πŸ› Bug fix where a worker could time out before the job was done, removing it from any monitor overviews (#288).
  • v0.3.11 Changes

    (August 23th, 2013)

    • πŸ›  Some more fixes in command line scripts for Python 3
  • v0.3.10 Changes

    (August 20th, 2013)

    • πŸ› Bug fix in setup.py
  • v0.3.9 Changes

    (August 20th, 2013)

    • Python 3 compatibility (Thanks, Alex!)

    • Minor bug fix where Sentry would break when func cannot be imported

  • v0.3.8 Changes

    (June 17th, 2013)

    • πŸ‘· rqworker and rqinfo have a --url argument to connect to a Redis url.

    • πŸ‘· rqworker and rqinfo have a --socket option to connect to a Redis server through a Unix socket.

    • πŸ‘· rqworker reads SENTRY_DSN from the environment, unless specifically provided on the command line.

    • πŸ‘· Queue has a new API that supports paging get_jobs(3, 7), which will return at most 7 jobs, starting from the 3rd.

  • v0.3.7 Changes

    (February 26th, 2013)

    • πŸ›  Fixed bug where workers would not execute builtin functions properly.