Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Bump activejob from 5.0.0.1 to 6.1.0 #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 7, 2021

Bumps activejob from 5.0.0.1 to 6.1.0.

Release notes

Sourced from activejob's releases.

6.1.0

Active Support

  • Ensure MemoryStore disables compression by default. Reverts behavior of MemoryStore to its prior rails 5.1 behavior.

    Max Gurewitz

  • Calling iso8601 on negative durations retains the negative sign on individual digits instead of prepending it.

    This change is required so we can interoperate with PostgreSQL, which prefers negative signs for each component.

    Compatibility with other iso8601 parsers which support leading negatives as well as negatives per component is still retained.

    Before:

    (-1.year - 1.day).iso8601
    # => "-P1Y1D"
    

    After:

    (-1.year - 1.day).iso8601
    # => "P-1Y-1D"
    

    Vipul A M

  • Remove deprecated ActiveSupport::Notifications::Instrumenter#end=.

    Rafael Mendonça França

  • Deprecate ActiveSupport::Multibyte::Unicode.default_normalization_form.

    Rafael Mendonça França

  • Remove deprecated ActiveSupport::Multibyte::Unicode.pack_graphemes, ActiveSupport::Multibyte::Unicode.unpack_graphemes, ActiveSupport::Multibyte::Unicode.normalize, ActiveSupport::Multibyte::Unicode.downcase, ActiveSupport::Multibyte::Unicode.upcase and ActiveSupport::Multibyte::Unicode.swapcase.

    Rafael Mendonça França

  • Remove deprecated ActiveSupport::Multibyte::Chars#consumes? and ActiveSupport::Multibyte::Chars#normalize.

    Rafael Mendonça França

... (truncated)

Changelog

Sourced from activejob's changelog.

Rails 6.1.0 (December 09, 2020)

  • Recover nano precision when serializing Time, TimeWithZone and DateTime objects.

    Alan Tan

  • Deprecate config.active_job.return_false_on_aborted_enqueue.

    Rafael Mendonça França

  • Return false when enqueuing a job is aborted.

    Rafael Mendonça França

  • While using perform_enqueued_jobs test helper enqueued jobs must be stored for the later check with assert_enqueued_with.

    Dmitry Polushkin

  • ActiveJob::TestCase#perform_enqueued_jobs without a block removes performed jobs from the queue.

    That way the helper can be called multiple times and not perform a job invocation multiple times.

    def test_jobs
      HelloJob.perform_later("rafael")
      perform_enqueued_jobs # only runs with "rafael"
      HelloJob.perform_later("david")
      perform_enqueued_jobs # only runs with "david"
    end

    Étienne Barrié

  • ActiveJob::TestCase#perform_enqueued_jobs will no longer perform retries:

    When calling perform_enqueued_jobs without a block, the adapter will now perform jobs that are already in the queue. Jobs that will end up in the queue afterwards won't be performed.

    This change only affects perform_enqueued_jobs when no block is given.

    Edouard Chin

  • Add queue name support to Que adapter.

    Brad Nauta, Wojciech Wnętrzak

  • Don't run after_enqueue and after_perform callbacks if the callback chain is halted.

... (truncated)

Commits
  • 914caca Preparing for 6.1.0 release
  • 49931cc Merge pull request #40754 from yahonda/revert_workarounds_for_ruby_17220
  • e440977 Wrap evaluation of db/seeds.rb with the executor
  • b38eb45 Preparing for 6.1.0.rc2 release
  • 9b96a64 Reset Time.zone to avoid leaking into other tests
  • 45042bb Fix typos [ci skip]
  • 8389f99 Preparing for 6.1.0.rc1 release
  • 45a1bce Merge pull request #39532 from vipulnsward/fix-tz-perform-now
  • bda10bf Recover precision when serializing Time, TimeWithZone and DateTime.
  • fd24cf1 Return false when enqueuing a job is aborted
  • 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

You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 7, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants