Skip to content

Update activesupport requirement from 4.1.6 to 6.0.0#9

Closed
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/activesupport-6.0.0
Closed

Update activesupport requirement from 4.1.6 to 6.0.0#9
dependabot-preview[bot] wants to merge 1 commit intomasterfrom
dependabot/bundler/activesupport-6.0.0

Conversation

@dependabot-preview
Copy link
Copy Markdown

Updates the requirements on activesupport to permit the latest version.

Changelog

Sourced from activesupport's changelog.

Rails 6.0.0 (August 16, 2019)

  • Let require_dependency in zeitwerk mode look the autoload paths up for
    better backwards compatibility.

    Xavier Noria

  • Let require_dependency in zeitwerk mode support arguments that respond
    to to_path for better backwards compatibility.

    Xavier Noria

  • Make ActiveSupport::Logger Fiber-safe. Fixes #36752.

    Use Fiber.current.__id__ in ActiveSupport::Logger#local_level= in order
    to make log level local to Ruby Fibers in addition to Threads.

    Example:

    logger = ActiveSupport::Logger.new(STDOUT)
    logger.level = 1
    p "Main is debug? #{logger.debug?}"
    
    Fiber.new {
      logger.local_level = 0
      p "Thread is debug? #{logger.debug?}"
    }.resume
    
    p "Main is debug? #{logger.debug?}"
    

    Before:

    Main is debug? false
    Thread is debug? true
    Main is debug? true
    

    After:

    Main is debug? false
    Thread is debug? true
    Main is debug? false
    

    Alexander Varnin

  • Do not delegate missing marshal_dump and _dump methods via the
    delegate_missing_to extension. This avoids unintentionally adding instance
    variables when calling Marshal.dump(object), should the delegation target of
    object be a method which would otherwise add them. Fixes #36522.

    Aaron Lipman

... (truncated)
Commits
  • 66cabed Preparing for 6.0.0 release
  • 83a7c02 Merge pull request #36825 from cpruitt/transliterate-frozen-us-ascii-strings
  • c701e0b Improves compatibility of require_dependency in zeitwerk mode [Closes #36774]
  • 79e9e68 Merge pull request #36702 from cpruitt/raise-on-transliterate-ascii-8bit
  • a01665a let autoloaded? support modules with overridden names [closes #36757]
  • ace28a5 Merge pull request #36753 from cmrd-senya/36752-make-rails-logger-fiber-safe
  • 5574097 Merge pull request #36370 from ptoomey3/master
  • 4f78062 Preparing for 6.0.0.rc2 release
  • 056414e Omit marshal_dump & _dump from delegate_missing_to
  • 3d2bdc1 Merge pull request #36700 from cpruitt/revert-36690-make-parameterize-require...
  • Additional commits viewable in compare view

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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Updates the requirements on [activesupport](https://github.com/rails/rails) to permit the latest version.
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v6.0.0/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v4.1.6...v6.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 19, 2019
@dependabot-preview
Copy link
Copy Markdown
Author

Superseded by #10.

@dependabot-preview dependabot-preview bot deleted the dependabot/bundler/activesupport-6.0.0 branch November 6, 2019 05:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants