rails-docker-compose-rubymine-example icon indicating copy to clipboard operation
rails-docker-compose-rubymine-example copied to clipboard

Bump sucker_punch from 2.1.2 to 3.0.1

Open dependabot-preview[bot] opened this issue 4 years ago • 0 comments

Bumps sucker_punch from 2.1.2 to 3.0.1.

Changelog

Sourced from sucker_punch's changelog.

3.0.1

  • Opt for keyword parsing using ruby2_keywords for compatibility.

3.0.0

  • Add support for keyword arguments in ruby >= 3.0. More details in release notes.

2.1.1

  • Relax versioning constraint of concurrent-ruby to make way for 1.1 release

2.1.0

  • Add max_jobs configuration option to set the maximum number of tasks that may be waiting in the work queue

    class JobWithLimit
      include SuckerPunch::Job
      max_jobs 2
    

    def perform(data) # work... end end

    10.times do begin JobWithLimit.perform_async('work') } rescue Concurrent::RejectedExecutionError => e # Queue maxed out, this job didn't get queued end end

2.0.4

  • Better initialization of variables and names to remove warnings

2.0.3

  • Rewrite shutdown strategy to fix bug related to premature shutdown when only 1 job is in enqueued when a job has more than 1 worker

2.0.2

  • Don't consider global shutdown bool when exhausting the queue during shutdown. This led to shutdown_timeout not being respected when processing remaining jobs left in the queue with a high shutdown_timeout.

... (truncated)

Commits
  • d870e62 Remove busy from stats
  • 3525fc9 Test more rubies
  • 3cf14a8 Bump version
  • 0895033 Remove references to **kwargs in favor of ruby2_keywords
  • 2253fd5 Use ruby_2_keywords to handle keyword arguments (#236)
  • 6257ec7 Require Ruby 2.0 for latest version
  • 41a0120 Remove Truffle ruby for now
  • f481f60 Don't test on TravisCI anymore
  • 7c72a81 Run tests and more Rubies
  • 03d4d2c Create GH Actions build config
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

dependabot-preview[bot] avatar Mar 01 '21 15:03 dependabot-preview[bot]