Que v2.1.0 Release Notes

Release Date: 2022-08-25 // over 1 year ago
    • โž• Added:
      • Added bulk enqueue interface for performance when enqueuing a large number of jobs at once - [docs](docs#enqueueing-jobs-in-bulk).
    • ๐Ÿ—„ Deprecated:
      • Deprecated que_state_notify trigger (que_state notification channel / job_change notification message). See #372. We plan to remove this in a future release - let us know on the issue if you desire otherwise.

    ๐Ÿš€ This release contains a database migration. You will need to migrate Que to the latest database schema version (7). For example, on ActiveRecord and Rails 6:

    class UpdateQueTablesToVersion7 < ActiveRecord::Migration[6.0]
      def up
        Que.migrate!(version: 7)
      end
    
      def down
        Que.migrate!(version: 6)
      end
    end