Update dependency solid_queue to v1.4.0 #56

Open
renovate wants to merge 1 commit from renovate/solid_queue-1.x-lockfile into main
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
solid_queue 1.2.41.4.0 age adoption passing confidence

Release Notes

rails/solid_queue (solid_queue)

v1.4.0

Compare Source

This release includes support for recurring dynamic tasks. Enable by setting this in your queue.yml configuration:

scheduler: 
  dynamic_tasks_enabled: true
  polling_interval: 1 # optional. Interval in seconds to poll for new recurring tasks. Defaults to 5

And then, schedule recurring tasks dynamically as:

SolidQueue.schedule_recurring_task(
  "my_dynamic_task",
  class: "MyJob",
  args: [1, 2],
  schedule: "every 10 minutes"
)

This accepts the same options as the YAML configuration: class, args, command, schedule, queue, priority, and description.

Learn more about this in the README.

What's Changed

New Contributors

Full Changelog: https://github.com/rails/solid_queue/compare/v1.3.2...v1.4.0

v1.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/rails/solid_queue/compare/v1.3.1...v1.3.2

v1.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/rails/solid_queue/compare/v1.3.0...v1.3.1

v1.3.0: - Async mode reintroduced

Compare Source

The main change in this release is the re-introduction of async mode for the supervisor. Read more about it in the README.

What's Changed

New Contributors

Full Changelog: https://github.com/rails/solid_queue/compare/v1.2.4...v1.3.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [solid_queue](https://github.com/rails/solid_queue) | `1.2.4` → `1.4.0` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/solid_queue/1.4.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/solid_queue/1.4.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/solid_queue/1.2.4/1.4.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/solid_queue/1.2.4/1.4.0?slim=true) | --- ### Release Notes <details> <summary>rails/solid_queue (solid_queue)</summary> ### [`v1.4.0`](https://github.com/rails/solid_queue/releases/tag/v1.4.0) [Compare Source](https://github.com/rails/solid_queue/compare/v1.3.2...v1.4.0) This release includes support for recurring dynamic tasks. Enable by setting this in your `queue.yml` configuration: ```yml scheduler: dynamic_tasks_enabled: true polling_interval: 1 # optional. Interval in seconds to poll for new recurring tasks. Defaults to 5 ``` And then, schedule recurring tasks dynamically as: ```ruby SolidQueue.schedule_recurring_task( "my_dynamic_task", class: "MyJob", args: [1, 2], schedule: "every 10 minutes" ) ``` This accepts the same options as the YAML configuration: `class`, `args`, `command`, `schedule`, `queue`, `priority`, and `description`. Learn more about this [in the README](https://github.com/rails/solid_queue?tab=readme-ov-file#scheduling-and-unscheduling-recurring-tasks-dynamically). #### What's Changed - Add index hint for releasing blocked executions by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;718](https://github.com/rails/solid_queue/pull/718) - Avoid an unintended FOR UPDATE query execution inside `lock_candidates` by [@&#8203;genya0407](https://github.com/genya0407) in [#&#8203;720](https://github.com/rails/solid_queue/pull/720) - docs: improve grammar a little by [@&#8203;G-Rath](https://github.com/G-Rath) in [#&#8203;723](https://github.com/rails/solid_queue/pull/723) - Dynamic scheduled tasks by [@&#8203;cupatea](https://github.com/cupatea) in [#&#8203;553](https://github.com/rails/solid_queue/pull/553) #### New Contributors - [@&#8203;G-Rath](https://github.com/G-Rath) made their first contribution in [#&#8203;723](https://github.com/rails/solid_queue/pull/723) - [@&#8203;cupatea](https://github.com/cupatea) made their first contribution in [#&#8203;553](https://github.com/rails/solid_queue/pull/553) **Full Changelog**: <https://github.com/rails/solid_queue/compare/v1.3.2...v1.4.0> ### [`v1.3.2`](https://github.com/rails/solid_queue/releases/tag/v1.3.2) [Compare Source](https://github.com/rails/solid_queue/compare/v1.3.1...v1.3.2) #### What's Changed - Fix race condition between job enqueue and concurrency unblock by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;712](https://github.com/rails/solid_queue/pull/712) - Fix application of `SOLID_QUEUE_SUPERVISOR_MODE` environment variable by [@&#8203;lovro-bikic](https://github.com/lovro-bikic) in [#&#8203;709](https://github.com/rails/solid_queue/pull/709) - Fix: Detect and warn when schedules generate multiple CRONs by [@&#8203;himanshukale36](https://github.com/himanshukale36) in [#&#8203;707](https://github.com/rails/solid_queue/pull/707) - Clean up dead thread from process\_instances when replacing it by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;714](https://github.com/rails/solid_queue/pull/714) - Fix crash when recording a failed execution for a job that already has one by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;713](https://github.com/rails/solid_queue/pull/713) - Guard against nil pid in Puma plugin stop by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;715](https://github.com/rails/solid_queue/pull/715) - Handle `nil` process in heartbeat by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;716](https://github.com/rails/solid_queue/pull/716) - Skip concurrency controls for jobs whose class has been removed by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;717](https://github.com/rails/solid_queue/pull/717) #### New Contributors - [@&#8203;lovro-bikic](https://github.com/lovro-bikic) made their first contribution in [#&#8203;709](https://github.com/rails/solid_queue/pull/709) - [@&#8203;himanshukale36](https://github.com/himanshukale36) made their first contribution in [#&#8203;707](https://github.com/rails/solid_queue/pull/707) **Full Changelog**: <https://github.com/rails/solid_queue/compare/v1.3.1...v1.3.2> ### [`v1.3.1`](https://github.com/rails/solid_queue/releases/tag/v1.3.1) [Compare Source](https://github.com/rails/solid_queue/compare/v1.3.0...v1.3.1) #### What's Changed - Fix NoMethodError when status.exitstatus is nil by [@&#8203;rickychilcott](https://github.com/rickychilcott) in [#&#8203;700](https://github.com/rails/solid_queue/pull/700) - Fix typo in error message by [@&#8203;monorkin](https://github.com/monorkin) in [#&#8203;701](https://github.com/rails/solid_queue/pull/701) - Update README with wildcard queue explanation by [@&#8203;bonniesimon](https://github.com/bonniesimon) in [#&#8203;704](https://github.com/rails/solid_queue/pull/704) - Fix undefined variable when replacing a failed thread by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;706](https://github.com/rails/solid_queue/pull/706) #### New Contributors - [@&#8203;rickychilcott](https://github.com/rickychilcott) made their first contribution in [#&#8203;700](https://github.com/rails/solid_queue/pull/700) - [@&#8203;monorkin](https://github.com/monorkin) made their first contribution in [#&#8203;701](https://github.com/rails/solid_queue/pull/701) - [@&#8203;bonniesimon](https://github.com/bonniesimon) made their first contribution in [#&#8203;704](https://github.com/rails/solid_queue/pull/704) **Full Changelog**: <https://github.com/rails/solid_queue/compare/v1.3.0...v1.3.1> ### [`v1.3.0`](https://github.com/rails/solid_queue/releases/tag/v1.3.0): - Async mode reintroduced [Compare Source](https://github.com/rails/solid_queue/compare/v1.2.4...v1.3.0) The main change in this release is the re-introduction of async mode for the supervisor. [Read more about it in the README](https://github.com/rails/solid_queue?tab=readme-ov-file#fork-vs-async-mode). #### What's Changed - Minimizing flakiness of `dispatcher_test.rb` by [@&#8203;p-schlickmann](https://github.com/p-schlickmann) in [#&#8203;678](https://github.com/rails/solid_queue/pull/678) - Improve Consistency of README by [@&#8203;conradbeach](https://github.com/conradbeach) in [#&#8203;680](https://github.com/rails/solid_queue/pull/680) - More flakes and prevent deadlocked actions from consuming GH quota by [@&#8203;p-schlickmann](https://github.com/p-schlickmann) in [#&#8203;681](https://github.com/rails/solid_queue/pull/681) - Attempt to reduce flakiness of `recurring_tasks_test` by [@&#8203;p-schlickmann](https://github.com/p-schlickmann) in [#&#8203;684](https://github.com/rails/solid_queue/pull/684) - Fixed indentation for the adapter line in the README’s cable.yml example by [@&#8203;simaaaji](https://github.com/simaaaji) in [#&#8203;687](https://github.com/rails/solid_queue/pull/687) - Fix spacing for `database.yml` in `README.md` by [@&#8203;danielvdao](https://github.com/danielvdao) in [#&#8203;691](https://github.com/rails/solid_queue/pull/691) - Update README.md with MariaDB `SKIP LOCKED` version information by [@&#8203;chapmajs](https://github.com/chapmajs) in [#&#8203;690](https://github.com/rails/solid_queue/pull/690) - Attempt to reduce flakiness of `scheduler_test` by [@&#8203;p-schlickmann](https://github.com/p-schlickmann) in [#&#8203;686](https://github.com/rails/solid_queue/pull/686) - Add Ruby 4 to tests and stop using `minitest/mock` for `stub` by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;697](https://github.com/rails/solid_queue/pull/697) - Adapt tests to Rails 8.2+ re-introduction of `enqueue_after_transaction_on_commit` by [@&#8203;rosa](https://github.com/rosa) in [#&#8203;698](https://github.com/rails/solid_queue/pull/698) - Re-institute async mode by [@&#8203;joshleblanc](https://github.com/joshleblanc) in [#&#8203;644](https://github.com/rails/solid_queue/pull/644) #### New Contributors - [@&#8203;conradbeach](https://github.com/conradbeach) made their first contribution in [#&#8203;680](https://github.com/rails/solid_queue/pull/680) - [@&#8203;simaaaji](https://github.com/simaaaji) made their first contribution in [#&#8203;687](https://github.com/rails/solid_queue/pull/687) - [@&#8203;danielvdao](https://github.com/danielvdao) made their first contribution in [#&#8203;691](https://github.com/rails/solid_queue/pull/691) - [@&#8203;chapmajs](https://github.com/chapmajs) made their first contribution in [#&#8203;690](https://github.com/rails/solid_queue/pull/690) **Full Changelog**: <https://github.com/rails/solid_queue/compare/v1.2.4...v1.3.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NS4xIiwidXBkYXRlZEluVmVyIjoiNDMuNzkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Update dependency solid_queue to v1.3.0
All checks were successful
ci/woodpecker/push/test Pipeline was successful
388b838efe
renovate force-pushed renovate/solid_queue-1.x-lockfile from 388b838efe
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to 3cdc9a6e91
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-01-15 16:02:02 +00:00
Compare
renovate changed title from Update dependency solid_queue to v1.3.0 to Update dependency solid_queue to v1.3.1 2026-01-15 16:02:03 +00:00
renovate changed title from Update dependency solid_queue to v1.3.1 to Update dependency solid_queue to v1.3.2 2026-02-20 09:32:12 +00:00
renovate force-pushed renovate/solid_queue-1.x-lockfile from 3cdc9a6e91
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to 9b93162ed8
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-02-20 09:32:13 +00:00
Compare
renovate force-pushed renovate/solid_queue-1.x-lockfile from 9b93162ed8
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to d66cdcfdff
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-03-20 18:15:40 +00:00
Compare
renovate changed title from Update dependency solid_queue to v1.3.2 to Update dependency solid_queue to v1.4.0 2026-03-20 18:15:40 +00:00
All checks were successful
ci/woodpecker/push/test Pipeline was successful
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/solid_queue-1.x-lockfile:renovate/solid_queue-1.x-lockfile
git switch renovate/solid_queue-1.x-lockfile

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/solid_queue-1.x-lockfile
git switch renovate/solid_queue-1.x-lockfile
git rebase main
git switch main
git merge --ff-only renovate/solid_queue-1.x-lockfile
git switch renovate/solid_queue-1.x-lockfile
git rebase main
git switch main
git merge --no-ff renovate/solid_queue-1.x-lockfile
git switch main
git merge --squash renovate/solid_queue-1.x-lockfile
git switch main
git merge --ff-only renovate/solid_queue-1.x-lockfile
git switch main
git merge renovate/solid_queue-1.x-lockfile
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
casper/bsky_handle_provider!56
No description provided.