Release notes
*Sourced from [activesupport's releases](https://github.com/rails/rails/releases).*
> ## 6.0.0.beta1
> ## Active Support
>
> * Remove deprecated `Module#reachable?` method.
>
> *Rafael Mendonça França*
>
> * Remove deprecated `#acronym_regex` method from `Inflections`.
>
> *Rafael Mendonça França*
>
> * Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references.
>
> *Keenan Brock*
>
> * Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`.
>
> `fetch_multi(*names)` now returns its results in the same order as the `*names` requested, rather than returning cache hits followed by cache misses.
>
> *Gannon McGibbon*
>
> * If the same block is `included` multiple times for a Concern, an exception is no longer raised.
>
> *Mark J. Titorenko*, *Vlad Bokov*
>
> * Fix bug where `#to_options` for `ActiveSupport::HashWithIndifferentAccess`
> would not act as alias for `#symbolize_keys`.
>
> *Nick Weiland*
>
> * Improve the logic that detects non-autoloaded constants.
>
> *Jan Habermann*, *Xavier Noria*
>
> * Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)`
> in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`, respectively.
>
> *Francesco Rodríguez*
>
> * Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of `String#is_utf8?`.
>
> *Francesco Rodríguez*
>
> * Fix duration being rounded to a full second.
> ```
> time = DateTime.parse("2018-1-1")
> time += 0.51.seconds
> ```
> Will now correctly add 0.51 second and not 1 full second.
>
> ... (truncated)
Changelog
*Sourced from [activesupport's changelog](https://github.com/rails/rails/blob/v6.0.0/activesupport/CHANGELOG.md).*
> ## 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](https://github-redirect.dependabot.com/rails/rails/issues/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](https://github-redirect.dependabot.com/rails/rails/issues/36522).
>
> *Aaron Lipman*
> ... (truncated)
Commits
- [`66cabed`](https://github.com/rails/rails/commit/66cabeda2c46c582d19738e1318be8d59584cc5b) Preparing for 6.0.0 release
- [`83a7c02`](https://github.com/rails/rails/commit/83a7c02ca2cb2c8ac50b3e799337fe23f467ca74) Merge pull request [#36825](https://github-redirect.dependabot.com/rails/rails/issues/36825) from cpruitt/transliterate-frozen-us-ascii-strings
- [`c701e0b`](https://github.com/rails/rails/commit/c701e0b8d79d66a6cfcb76851a304bea386bd5ee) Improves compatibility of require_dependency in zeitwerk mode [Closes [#36774](https://github-redirect.dependabot.com/rails/rails/issues/36774)]
- [`79e9e68`](https://github.com/rails/rails/commit/79e9e6865484e9ec7ab8eea12ef960009b3d787d) Merge pull request [#36702](https://github-redirect.dependabot.com/rails/rails/issues/36702) from cpruitt/raise-on-transliterate-ascii-8bit
- [`a01665a`](https://github.com/rails/rails/commit/a01665af8e06ebcb607ceb158ea982dadeb3f7bc) let autoloaded? support modules with overridden names [closes [#36757](https://github-redirect.dependabot.com/rails/rails/issues/36757)]
- [`ace28a5`](https://github.com/rails/rails/commit/ace28a54b9fca1dd1984988eb8a151aab7fa3c1d) Merge pull request [#36753](https://github-redirect.dependabot.com/rails/rails/issues/36753) from cmrd-senya/36752-make-rails-logger-fiber-safe
- [`5574097`](https://github.com/rails/rails/commit/55740972a6c0364a6fb70525829b91159f3f53ba) Merge pull request [#36370](https://github-redirect.dependabot.com/rails/rails/issues/36370) from ptoomey3/master
- [`4f78062`](https://github.com/rails/rails/commit/4f78062a366879407fa9028bc25dc16fe1f83700) Preparing for 6.0.0.rc2 release
- [`056414e`](https://github.com/rails/rails/commit/056414eb0521892dca251f2f03bef6bb314a0f7f) Omit marshal_dump & _dump from delegate_missing_to
- [`3d2bdc1`](https://github.com/rails/rails/commit/3d2bdc1149ce7734ad03d2f39dae4838bfa7d956) Merge pull request [#36700](https://github-redirect.dependabot.com/rails/rails/issues/36700) from cpruitt/revert-36690-make-parameterize-require...
- Additional commits viewable in [compare view](https://github.com/rails/rails/compare/v3.0.0...v6.0.0)
Updates activemodel from 3.0.0 to 6.0.0
Release notes
*Sourced from [activemodel's releases](https://github.com/rails/rails/releases).*
> ## 6.0.0.beta1
> ## Active Support
>
> * Remove deprecated `Module#reachable?` method.
>
> *Rafael Mendonça França*
>
> * Remove deprecated `#acronym_regex` method from `Inflections`.
>
> *Rafael Mendonça França*
>
> * Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references.
>
> *Keenan Brock*
>
> * Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`.
>
> `fetch_multi(*names)` now returns its results in the same order as the `*names` requested, rather than returning cache hits followed by cache misses.
>
> *Gannon McGibbon*
>
> * If the same block is `included` multiple times for a Concern, an exception is no longer raised.
>
> *Mark J. Titorenko*, *Vlad Bokov*
>
> * Fix bug where `#to_options` for `ActiveSupport::HashWithIndifferentAccess`
> would not act as alias for `#symbolize_keys`.
>
> *Nick Weiland*
>
> * Improve the logic that detects non-autoloaded constants.
>
> *Jan Habermann*, *Xavier Noria*
>
> * Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)`
> in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`, respectively.
>
> *Francesco Rodríguez*
>
> * Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of `String#is_utf8?`.
>
> *Francesco Rodríguez*
>
> * Fix duration being rounded to a full second.
> ```
> time = DateTime.parse("2018-1-1")
> time += 0.51.seconds
> ```
> Will now correctly add 0.51 second and not 1 full second.
>
> ... (truncated)
Changelog
*Sourced from [activemodel's changelog](https://github.com/rails/rails/blob/v6.0.0/activemodel/CHANGELOG.md).*
> ## Rails 6.0.0 (August 16, 2019) ##
>
> * No changes.
>
>
> ## Rails 6.0.0.rc2 (July 22, 2019) ##
>
> * No changes.
>
>
> ## Rails 6.0.0.rc1 (April 24, 2019) ##
>
> * Type cast falsy boolean symbols on boolean attribute as false.
>
> Fixes [#35676](https://github-redirect.dependabot.com/rails/rails/issues/35676).
>
> *Ryuta Kamizono*
>
> * Change how validation error translation strings are fetched: The new behavior
> will first try the more specific keys, including doing locale fallback, then try
> the less specific ones.
>
> For example, this is the order in which keys will now be tried for a `blank`
> error on a `product`'s `title` attribute with current locale set to `en-US`:
>
> en-US.activerecord.errors.models.product.attributes.title.blank
> en-US.activerecord.errors.models.product.blank
> en-US.activerecord.errors.messages.blank
>
> en.activerecord.errors.models.product.attributes.title.blank
> en.activerecord.errors.models.product.blank
> en.activerecord.errors.messages.blank
>
> en-US.errors.attributes.title.blank
> en-US.errors.messages.blank
>
> en.errors.attributes.title.blank
> en.errors.messages.blank
>
> *Hugo Vacher*
>
>
> ## Rails 6.0.0.beta3 (March 11, 2019) ##
>
> * No changes.
>
>
> ## Rails 6.0.0.beta2 (February 25, 2019) ##
>
> * Fix date value when casting a multiparameter date hash to not convert
> ... (truncated)
Commits
- [`66cabed`](https://github.com/rails/rails/commit/66cabeda2c46c582d19738e1318be8d59584cc5b) Preparing for 6.0.0 release
- [`5eaf39b`](https://github.com/rails/rails/commit/5eaf39b1a8e53ac052365306ad9ffac6e7564745) Add note about human_attribute_name symbol/string
- [`4f78062`](https://github.com/rails/rails/commit/4f78062a366879407fa9028bc25dc16fe1f83700) Preparing for 6.0.0.rc2 release
- [`3e2c9e7`](https://github.com/rails/rails/commit/3e2c9e72b50025eafd6bb8e0967ed6dd84c64229) Merge pull request [#36352](https://github-redirect.dependabot.com/rails/rails/issues/36352) from kamipo/fast_pluck_datetime
- [`d846e30`](https://github.com/rails/rails/commit/d846e30380f1b1c2731f427480005df6b799790b) Merge pull request [#36172](https://github-redirect.dependabot.com/rails/rails/issues/36172) from tgxworld/recover_pluck_perf
- [`01b7e9b`](https://github.com/rails/rails/commit/01b7e9b73ac9dca92be0969e047b9cb0c767f261) Preparing for 6.0.0.rc1 release
- [`5575bd7`](https://github.com/rails/rails/commit/5575bd7b22e8e11ba8e2fdac4a92aab931d4f9f9) Avoid redundant `attribute_alias?` before `attribute_alias`
- [`6a4eb3e`](https://github.com/rails/rails/commit/6a4eb3e75eabfe6c00ea60b845b487f70a350222) Merge pull request [#36061](https://github-redirect.dependabot.com/rails/rails/issues/36061) from shioyama/update_comment
- [`14ff93c`](https://github.com/rails/rails/commit/14ff93c4bcb2a3da1fed917d5436d6605860936b) Update comment in attribute_method_matchers_matching
- [`e7a28c3`](https://github.com/rails/rails/commit/e7a28c39908768acc1b8c836ab53af546c58c0c0) Add attribute_names to ActiveModel::Attributes
- Additional commits viewable in [compare view](https://github.com/rails/rails/compare/v3.0.0...v6.0.0)
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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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](https://github.com/thefrontiergroup/scoped_attr_accessible/network/alerts).
Updates the requirements on activesupport and activemodel to permit the latest version.
Updates
activesupport
from 3.0.0 to 6.0.0Release notes
*Sourced from [activesupport's releases](https://github.com/rails/rails/releases).* > ## 6.0.0.beta1 > ## Active Support > > * Remove deprecated `Module#reachable?` method. > > *Rafael Mendonça França* > > * Remove deprecated `#acronym_regex` method from `Inflections`. > > *Rafael Mendonça França* > > * Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references. > > *Keenan Brock* > > * Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`. > > `fetch_multi(*names)` now returns its results in the same order as the `*names` requested, rather than returning cache hits followed by cache misses. > > *Gannon McGibbon* > > * If the same block is `included` multiple times for a Concern, an exception is no longer raised. > > *Mark J. Titorenko*, *Vlad Bokov* > > * Fix bug where `#to_options` for `ActiveSupport::HashWithIndifferentAccess` > would not act as alias for `#symbolize_keys`. > > *Nick Weiland* > > * Improve the logic that detects non-autoloaded constants. > > *Jan Habermann*, *Xavier Noria* > > * Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)` > in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`, respectively. > > *Francesco Rodríguez* > > * Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of `String#is_utf8?`. > > *Francesco Rodríguez* > > * Fix duration being rounded to a full second. > ``` > time = DateTime.parse("2018-1-1") > time += 0.51.seconds > ``` > Will now correctly add 0.51 second and not 1 full second. > > ... (truncated)Changelog
*Sourced from [activesupport's changelog](https://github.com/rails/rails/blob/v6.0.0/activesupport/CHANGELOG.md).* > ## 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](https://github-redirect.dependabot.com/rails/rails/issues/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](https://github-redirect.dependabot.com/rails/rails/issues/36522). > > *Aaron Lipman* > ... (truncated)Commits
- [`66cabed`](https://github.com/rails/rails/commit/66cabeda2c46c582d19738e1318be8d59584cc5b) Preparing for 6.0.0 release - [`83a7c02`](https://github.com/rails/rails/commit/83a7c02ca2cb2c8ac50b3e799337fe23f467ca74) Merge pull request [#36825](https://github-redirect.dependabot.com/rails/rails/issues/36825) from cpruitt/transliterate-frozen-us-ascii-strings - [`c701e0b`](https://github.com/rails/rails/commit/c701e0b8d79d66a6cfcb76851a304bea386bd5ee) Improves compatibility of require_dependency in zeitwerk mode [Closes [#36774](https://github-redirect.dependabot.com/rails/rails/issues/36774)] - [`79e9e68`](https://github.com/rails/rails/commit/79e9e6865484e9ec7ab8eea12ef960009b3d787d) Merge pull request [#36702](https://github-redirect.dependabot.com/rails/rails/issues/36702) from cpruitt/raise-on-transliterate-ascii-8bit - [`a01665a`](https://github.com/rails/rails/commit/a01665af8e06ebcb607ceb158ea982dadeb3f7bc) let autoloaded? support modules with overridden names [closes [#36757](https://github-redirect.dependabot.com/rails/rails/issues/36757)] - [`ace28a5`](https://github.com/rails/rails/commit/ace28a54b9fca1dd1984988eb8a151aab7fa3c1d) Merge pull request [#36753](https://github-redirect.dependabot.com/rails/rails/issues/36753) from cmrd-senya/36752-make-rails-logger-fiber-safe - [`5574097`](https://github.com/rails/rails/commit/55740972a6c0364a6fb70525829b91159f3f53ba) Merge pull request [#36370](https://github-redirect.dependabot.com/rails/rails/issues/36370) from ptoomey3/master - [`4f78062`](https://github.com/rails/rails/commit/4f78062a366879407fa9028bc25dc16fe1f83700) Preparing for 6.0.0.rc2 release - [`056414e`](https://github.com/rails/rails/commit/056414eb0521892dca251f2f03bef6bb314a0f7f) Omit marshal_dump & _dump from delegate_missing_to - [`3d2bdc1`](https://github.com/rails/rails/commit/3d2bdc1149ce7734ad03d2f39dae4838bfa7d956) Merge pull request [#36700](https://github-redirect.dependabot.com/rails/rails/issues/36700) from cpruitt/revert-36690-make-parameterize-require... - Additional commits viewable in [compare view](https://github.com/rails/rails/compare/v3.0.0...v6.0.0)Updates
activemodel
from 3.0.0 to 6.0.0Release notes
*Sourced from [activemodel's releases](https://github.com/rails/rails/releases).* > ## 6.0.0.beta1 > ## Active Support > > * Remove deprecated `Module#reachable?` method. > > *Rafael Mendonça França* > > * Remove deprecated `#acronym_regex` method from `Inflections`. > > *Rafael Mendonça França* > > * Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references. > > *Keenan Brock* > > * Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`. > > `fetch_multi(*names)` now returns its results in the same order as the `*names` requested, rather than returning cache hits followed by cache misses. > > *Gannon McGibbon* > > * If the same block is `included` multiple times for a Concern, an exception is no longer raised. > > *Mark J. Titorenko*, *Vlad Bokov* > > * Fix bug where `#to_options` for `ActiveSupport::HashWithIndifferentAccess` > would not act as alias for `#symbolize_keys`. > > *Nick Weiland* > > * Improve the logic that detects non-autoloaded constants. > > *Jan Habermann*, *Xavier Noria* > > * Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)` and `ActiveSuppport::Multibyte::Unicode#unpack_graphemes(string)` > in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`, respectively. > > *Francesco Rodríguez* > > * Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of `String#is_utf8?`. > > *Francesco Rodríguez* > > * Fix duration being rounded to a full second. > ``` > time = DateTime.parse("2018-1-1") > time += 0.51.seconds > ``` > Will now correctly add 0.51 second and not 1 full second. > > ... (truncated)Changelog
*Sourced from [activemodel's changelog](https://github.com/rails/rails/blob/v6.0.0/activemodel/CHANGELOG.md).* > ## Rails 6.0.0 (August 16, 2019) ## > > * No changes. > > > ## Rails 6.0.0.rc2 (July 22, 2019) ## > > * No changes. > > > ## Rails 6.0.0.rc1 (April 24, 2019) ## > > * Type cast falsy boolean symbols on boolean attribute as false. > > Fixes [#35676](https://github-redirect.dependabot.com/rails/rails/issues/35676). > > *Ryuta Kamizono* > > * Change how validation error translation strings are fetched: The new behavior > will first try the more specific keys, including doing locale fallback, then try > the less specific ones. > > For example, this is the order in which keys will now be tried for a `blank` > error on a `product`'s `title` attribute with current locale set to `en-US`: > > en-US.activerecord.errors.models.product.attributes.title.blank > en-US.activerecord.errors.models.product.blank > en-US.activerecord.errors.messages.blank > > en.activerecord.errors.models.product.attributes.title.blank > en.activerecord.errors.models.product.blank > en.activerecord.errors.messages.blank > > en-US.errors.attributes.title.blank > en-US.errors.messages.blank > > en.errors.attributes.title.blank > en.errors.messages.blank > > *Hugo Vacher* > > > ## Rails 6.0.0.beta3 (March 11, 2019) ## > > * No changes. > > > ## Rails 6.0.0.beta2 (February 25, 2019) ## > > * Fix date value when casting a multiparameter date hash to not convert > ... (truncated)Commits
- [`66cabed`](https://github.com/rails/rails/commit/66cabeda2c46c582d19738e1318be8d59584cc5b) Preparing for 6.0.0 release - [`5eaf39b`](https://github.com/rails/rails/commit/5eaf39b1a8e53ac052365306ad9ffac6e7564745) Add note about human_attribute_name symbol/string - [`4f78062`](https://github.com/rails/rails/commit/4f78062a366879407fa9028bc25dc16fe1f83700) Preparing for 6.0.0.rc2 release - [`3e2c9e7`](https://github.com/rails/rails/commit/3e2c9e72b50025eafd6bb8e0967ed6dd84c64229) Merge pull request [#36352](https://github-redirect.dependabot.com/rails/rails/issues/36352) from kamipo/fast_pluck_datetime - [`d846e30`](https://github.com/rails/rails/commit/d846e30380f1b1c2731f427480005df6b799790b) Merge pull request [#36172](https://github-redirect.dependabot.com/rails/rails/issues/36172) from tgxworld/recover_pluck_perf - [`01b7e9b`](https://github.com/rails/rails/commit/01b7e9b73ac9dca92be0969e047b9cb0c767f261) Preparing for 6.0.0.rc1 release - [`5575bd7`](https://github.com/rails/rails/commit/5575bd7b22e8e11ba8e2fdac4a92aab931d4f9f9) Avoid redundant `attribute_alias?` before `attribute_alias` - [`6a4eb3e`](https://github.com/rails/rails/commit/6a4eb3e75eabfe6c00ea60b845b487f70a350222) Merge pull request [#36061](https://github-redirect.dependabot.com/rails/rails/issues/36061) from shioyama/update_comment - [`14ff93c`](https://github.com/rails/rails/commit/14ff93c4bcb2a3da1fed917d5436d6605860936b) Update comment in attribute_method_matchers_matching - [`e7a28c3`](https://github.com/rails/rails/commit/e7a28c39908768acc1b8c836ab53af546c58c0c0) Add attribute_names to ActiveModel::Attributes - Additional commits viewable in [compare view](https://github.com/rails/rails/compare/v3.0.0...v6.0.0)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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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](https://github.com/thefrontiergroup/scoped_attr_accessible/network/alerts).