Bump actionmailer, activesupport, actionview, actionpack, activejob, activemodel, activerecord, railties and rails
Bumps actionmailer, activesupport, actionview, actionpack, activejob, activemodel, activerecord, railties and rails. These dependencies needed to be updated together.
Updates actionmailer from 7.0.8 to 7.1.1
Release notes
Sourced from actionmailer's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from actionmailer's changelog.
Rails 7.1.1 (October 11, 2023)
- No changes.
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
- No changes.
Rails 7.1.0.rc1 (September 27, 2023)
Introduce
ActionMailer::FormBuilderUse the
default_form_buildermethod in mailers to set the default form builder for templates rendered by that mailer. Matches the behaviour in Action Controller.Alex Ghiculescu
Rails 7.1.0.beta1 (September 13, 2023)
Mailers are listed in alphabetical order on the mailer preview page now.
Martin Spickermann
Deprecate passing params to
assert_enqueued_email_withvia the:argskwarg.assert_enqueued_email_withnow supports a:paramskwarg, so use that to pass params:# BEFORE assert_enqueued_email_with MyMailer, :my_method, args: { my_param: "value" }AFTER
assert_enqueued_email_with MyMailer, :my_method, params: { my_param: "value" }
To specify named mailer args as a Hash, wrap the Hash in an array:
assert_enqueued_email_with MyMailer, :my_method, args: [{ my_arg: "value" }] # OR assert_enqueued_email_with MyMailer, :my_method, args: [my_arg: "value"]
... (truncated)
Commits
2393805Preparing for 7.1.1 released39db5dPreparing for 7.1.0 release8340f8fPreparing for 7.1.0.rc2 releasee5386cbPreparing for 7.1.0.rc1 releasee7009b1Remove unused mailer647e39bLog delivery errors in ActionMailer::LogSubscriber9a2cf33IntroduceActionMailer::FormBuilder51ac8b9Enable Minitest/LiteralAsActualArgument699dfdbPreparing for 7.1.0.beta1 release6998747Remove internal usage of require_dependency- Additional commits viewable in compare view
Updates activesupport from 7.0.8 to 7.1.1
Release notes
Sourced from activesupport's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from activesupport's changelog.
Rails 7.1.1 (October 11, 2023)
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
Fix
AS::MessagePackwithENV["RAILS_MAX_THREADS"].Jonathan Hefner
Rails 7.1.0.rc1 (September 27, 2023)
Add a new public API for broadcasting logs
This feature existed for a while but was until now a private API. Broadcasting log allows to send log message to difference sinks (STDOUT, a file ...) and is used by default in the development environment to write logs both on STDOUT and in the "development.log" file.
Basic usage:
stdout_logger = Logger.new(STDOUT) file_logger = Logger.new("development.log") broadcast = ActiveSupport::BroadcastLogger.new(stdout_logger, file_logger)broadcast.info("Hello!") # The "Hello!" message is written on STDOUT and in the log file.
... (truncated)
Commits
2393805Preparing for 7.1.1 releaseb280d7fSync CHANGELOG773e4a6Merge pull request #49518 from Edouard-chin/ec-logger-doce2ded10Merge pull request #49571 from jenshenny/kwargs-broadcast-loggerdfebc16Merge pull request #49576 from fatkodima/fix-number-helper-to_dc3117b5Merge pull request #49554 from Thomascountz/fix-redis-lt7-ttl-not-set-on-firs...52c4aefMerge pull request #49542 from pjambet/pj/fix-memory-store-race-conditionf705603Autolink references for AS::Notifications::Instrumenter [ci-skip]5fd7fc4Capitalize framework names [ci-skip]7d49a43Ensure on_rotation appears in RDoc [ci-skip]- Additional commits viewable in compare view
Updates actionview from 7.0.8 to 7.1.1
Release notes
Sourced from actionview's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from actionview's changelog.
Rails 7.1.1 (October 11, 2023)
Updated
@rails/ujsfiles to ignore certain data-* attributes when element is contenteditable.This fix was already landed in >= 7.0.4.3, < 7.1.0. [CVE-2023-23913]
Ryunosuke Sato
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
- No changes.
Rails 7.1.0.rc1 (September 27, 2023)
Introduce
ActionView::TestCase.register_parserregister_parser :rss, -> rendered { RSS::Parser.parse(rendered) }test "renders RSS" do article = Article.create!(title: "Hello, world")
render formats: :rss, partial: article
assert_equal "Hello, world", rendered.rss.items.last.title end
By default, register parsers for
:htmland:json.Sean Doyle
Rails 7.1.0.beta1 (September 13, 2023)
Fix
simple_formatwith blankwrapper_tagoption returns plain html tagBy default
simple_formatmethod returns the text wrapped with<p>. But if we explicitly specify thewrapper_tag: nilin the options, it returns the text wrapped with<></>tag.Before:
... (truncated)
Commits
2393805Preparing for 7.1.1 release63f204dMerge pull request #49553 from tricknotes/update-rails-ujs-buildd39db5dPreparing for 7.1.0 release8340f8fPreparing for 7.1.0.rc2 release877e7d8Merge pull request #49416 from Shopify/fix-render-call-extractor-on-ruby-3.3e5386cbPreparing for 7.1.0.rc1 release7893e0aMerge pull request #49194 from seanpdoyle/action-view-test-case-encoder7badc42IntroduceActionView::TestCase.register_parseracfa045Revert typography change in user facing errors72b3fe9Update doc forinclude_hiddenform form file_field.- Additional commits viewable in compare view
Updates actionpack from 7.0.8 to 7.1.1
Release notes
Sourced from actionpack's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from actionpack's changelog.
Rails 7.1.1 (October 11, 2023)
- No changes.
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
- No changes.
Rails 7.1.0.rc1 (September 27, 2023)
Add support for
#deep_mergeand#deep_merge!toActionController::Parameters.Sean Doyle
Rails 7.1.0.beta1 (September 13, 2023)
AbstractController::Translation.raise_on_missing_translationsremovedThis was a private API, and has been removed in favour of a more broadly applicable
config.i18n.raise_on_missing_translations. See the upgrading guide for more information.Alex Ghiculescu
Add
ActionController::Parameters#extract_valuemethod to allow extracting serialized values from paramsparams = ActionController::Parameters.new(id: "1_123", tags: "ruby,rails") params.extract_value(:id) # => ["1", "123"] params.extract_value(:tags, delimiter: ",") # => ["ruby", "rails"]Nikita Vasilevsky
Parse JSON
response.parsed_bodywithActiveSupport::HashWithIndifferentAccessIntegrate with Minitest's new
assert_patternby parsing the JSON contents ofresponse.parsed_bodywithActiveSupport::HashWithIndifferentAccess, so that it's pattern-matching compatible.Sean Doyle
... (truncated)
Commits
2393805Preparing for 7.1.1 release5abcfd4Merge pull request #49538 from akhilgkrishnan/capitalize-framework-namesdec60e5Fix config name in changelog related to #495174be0e37Merge pull request #49517 from benstein/patch-1d39db5dPreparing for 7.1.0 release60393bbMerge pull request #49493 from skipkayhil/hm-no-backticks311f639Merge pull request #49487 from yawboakye/clarify-login-procedure-expectation7edbcceMerge pull request #49456 from seanpdoyle/strong-parameters-deep-merge-rdoc8340f8fPreparing for 7.1.0.rc2 releasefe87369Merge pull request #49374 from yykamei/add_doc_for_protect_from_forgery- Additional commits viewable in compare view
Updates activejob from 7.0.8 to 7.1.1
Release notes
Sourced from activejob's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from activejob's changelog.
Rails 7.1.1 (October 11, 2023)
Don't log enqueuing details when the job wasn't enqueued.
Dustin Brown
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
Make sure
scheduled_atis a Time object when asserting enqueued jobs.Rafael Mendonça França
Rails 7.1.0.rc1 (September 27, 2023)
Set
scheduled_atattribute as a Time object instead of epoch seconds, and serialize and deserialize the value when enqueued. Assigning a numeric/epoch value to scheduled_at= is deprecated; use a Time object instead.Deserializes
enqueued_atas a Time instead of ISO8601 String.Ben Sheldon
Clarify the backoff strategy for the recommended
:waitoption when retrying jobs
wait: :exponentially_longeris waiting polynomially longer, so it is now recommended to usewait: :polynomially_longerto keep the same behavior.Victor Mours
Rails 7.1.0.beta1 (September 13, 2023)
Fix Active Job log message to correctly report a job failed to enqueue when the adapter raises an
ActiveJob::EnqueueError.Ben Sheldon
Add
after_discardmethod.This method lets job authors define a block which will be run when a job is about to be discarded. For example:
class AfterDiscardJob < ActiveJob::Base after_discard do |job, exception| Rails.logger.info("#{job.class} raised an exception: #{exception}")
... (truncated)
Commits
2393805Preparing for 7.1.1 releaseb280d7fSync CHANGELOGa5534b9Merge pull request #49515 from dustinbrownman/main5766679Fix perform_enqueued_jobs :at option doc [ci-skip]95f3e63Reword adapter caveat for perform_enqueued_jobs [ci-skip]3b26509Reword queue_adapter_for_test doc [ci-skip]5fd7fc4Capitalize framework names [ci-skip]d39db5dPreparing for 7.1.0 release1490788Merge pull request #49470 from rails/rm-eager-load-model-schema8340f8fPreparing for 7.1.0.rc2 release- Additional commits viewable in compare view
Updates activemodel from 7.0.8 to 7.1.1
Release notes
Sourced from activemodel's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from activemodel's changelog.
Rails 7.1.1 (October 11, 2023)
- No changes.
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
- No changes.
Rails 7.1.0.rc1 (September 27, 2023)
Remove change in the typography of user facing error messages. For example, “can’t be blank” is again “can't be blank”.
Rafael Mendonça França
Rails 7.1.0.beta1 (September 13, 2023)
Support composite identifiers in
to_key
to_keyavoids wrapping#idvalue into anArrayif#idalready an arrayNikita Vasilevsky
Add
ActiveModel::Conversion.param_delimiterto configure delimiter being used into_paramNikita Vasilevsky
undefine_attribute_methodsundefines alias attribute methods along with attribute methods.Nikita Vasilevsky
Error.full_message now strips ":base" from the message.
zzak
Add a load hook for
ActiveModel::Model(namedactive_model) to match the load hook forActiveRecord::Baseand allow for overriding aspects of theActiveModel::Modelclass.Lewis Buckley
Improve password length validation in ActiveModel::SecurePassword to consider byte size for BCrypt compatibility.
... (truncated)
Commits
2393805Preparing for 7.1.1 release3023ec1Fix typo in method names [ci-skip]d39db5dPreparing for 7.1.0 release8340f8fPreparing for 7.1.0.rc2 releasee5386cbPreparing for 7.1.0.rc1 releaseacfa045Revert typography change in user facing errors4fb4af7[Docs][Tests] Add tests for validates_exclusion_of to 7.1.0beta1 Active Model51ac8b9Enable Minitest/LiteralAsActualArgument699dfdbPreparing for 7.1.0.beta1 release4a08111Merge pull request #49172 from akhilgkrishnan/ruby-code-block-intentation-fix- Additional commits viewable in compare view
Updates activerecord from 7.0.8 to 7.1.1
Release notes
Sourced from activerecord's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from activerecord's changelog.
Rails 7.1.1 (October 11, 2023)
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
Remove -shm and -wal SQLite files when
rails db:dropis run.Niklas Häusele
Revert the change to raise an
ArgumentErrorwhen#accepts_nested_attributes_foris declared more than once for an association in the same class.The reverted behavior broke the case where the
#accepts_nested_attributes_forwas defined in a concern and where overridden in the class that included the concern.Rafael Mendonça França
Rails 7.1.0.rc1 (September 27, 2023)
Better naming for unique constraints support.
Naming unique keys leads to misunderstanding it's a short-hand of unique indexes. Just naming it unique constraints is not misleading.
In Rails 7.1.0.beta1 or before:
add_unique_key :sections, [:position], deferrable: :deferred, name: "unique_section_position" remove_unique_key :sections, name: "unique_section_position"
... (truncated)
Commits
2393805Preparing for 7.1.1 releaseb280d7fSync CHANGELOG1f1710dMerge pull request #49589 from fatkodima/fix-flaky-fixtures-test57d626eMerge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...27029a3Merge pull request #49544 from hieuk09/bug/fix-sqlite3-table-name-quoteb7837f9Merge pull request #49504 from fatkodima/fix-pg-retrieving-identity-columns36a3c68Merge pull request #49551 from haines/fix-internal-metadata-disabled457f0e4Autolink references for AR::Calculations#async_* [ci-skip]51a57d6Remove unnecessary alias references [ci-skip]5fd7fc4Capitalize framework names [ci-skip]- Additional commits viewable in compare view
Updates railties from 7.0.8 to 7.1.1
Release notes
Sourced from railties's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Changelog
Sourced from railties's changelog.
Rails 7.1.1 (October 11, 2023)
Ensures the Rails generated Dockerfile uses correct ruby version and matches Gemfile.
Abhay Nikam
Rails 7.1.0 (October 05, 2023)
- No changes.
Rails 7.1.0.rc2 (October 01, 2023)
Always set the Rails logger to be an instance of
ActiveSupport::BroadcastLogger.Edouard Chin
Rails 7.1.0.rc1 (September 27, 2023)
Require
concurrent-rubyinconfig/puma.rbso that Puma can boot in production whenWEB_CONCURRENCYis not explicitly specified.Fixes #49323.
Matt Brictson
Raise error when generating attribute with dangerous name.
The following will now raise an error as
saveandhashare already defined by Active Record.$ bin/rails generate model Post save $ bin/rails generate model Post hashPetrik de Heus
Rails 7.1.0.beta1 (September 13, 2023)
Add ability to show slow tests to the test runner
$ bin/test --profile # additionally prints 10 (default) slowest tests # or $ bin/test --profile 20 # prints 20 slowest tests
... (truncated)
Commits
2393805Preparing for 7.1.1 releaseb280d7fSync CHANGELOG314220eMerge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...57d626eMerge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...5abcfd4Merge pull request #49538 from akhilgkrishnan/capitalize-framework-names9ae8060Clean up docs for Rails::Generators::ActiveModel [ci-skip]b809ac2Merge pull request #49528 from mohits/patch-3174bd99Only check the schema when the table exists on CI5fa5f81Merge pull request #49497 from Earlopain/extraneous-whitespaced39db5dPreparing for 7.1.0 release- Additional commits viewable in compare view
Updates rails from 7.0.8 to 7.1.1
Release notes
Sourced from rails's releases.
7.1.1
Active Support
Add support for keyword arguments when delegating calls to custom loggers from
ActiveSupport::BroadcastLogger.Edouard Chin
NumberHelper: handle objects respondingto_d.fatkodima
Fix RedisCacheStore to properly set the TTL when incrementing or decrementing.
This bug was only impacting Redis server older than 7.0.
Thomas Countz
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Active Model
- No changes.
Active Record
Fix auto populating IDENTITY columns for PostgreSQL.
fatkodima
Fix "ArgumentError: wrong number of arguments (given 3, expected 2)" when down migrating
rename_tablein older migrations.fatkodima
Do not require the Action Text, Active Storage and Action Mailbox tables to be present when running when running test on CI.
Rafael Mendonça França
Action View
... (truncated)
Commits
2393805Preparing for 7.1.1 releaseb280d7fSync CHANGELOG314220eMerge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...1f1710dMerge pull request #49589 from fatkodima/fix-flaky-fixtures-test4921df0Merge pull request #49565 from hachi8833/add_missing_doc_4348757d626eMerge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...63f204dMerge pull request #49553 from tricknotes/update-rails-ujs-build8a6118aUse released version of Sdoc3199a45Merge pull request #49581 from hachi8833/update_doc_npma5534b9Merge pull request #49515 from dustinbrownman/main- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot will merge this PR once CI passes on it, as requested by @andrewfader.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
Fun idea, dependabot, but this won't actually work yet, but I'll look at.
I especially notice:
DEPRECATION WARNING: Support for the pre-Ruby 2.4 behavior of to_time has been deprecated and will be removed in Rails 7.2. (called from <top (required)> at /home/circleci/coreinfrastructure/best-practices-badge/config/initializers/new_framework_defaults.rb:24) rake aborted! ArgumentError: The
legacy_connection_handlingsetter was deprecated in 7.0 and removed in 7.1, but is still defined in your configuration. Please remove this call as it no longer has any effect."
The next problem will be this one from licensefinder
Dependencies that need approval:
rdoc, 6.5.0, ruby
reline, 0.3.9, ruby
@dependabot rebase
Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!
If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.
oh right I knew that. I'll rebase it myself then.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
32e5e8a) 98.03% compared to head (dfc4597) 59.62%.
Additional details and impacted files
@@ Coverage Diff @@
## main #2065 +/- ##
===========================================
- Coverage 98.03% 59.62% -38.42%
===========================================
Files 53 53
Lines 2090 2249 +159
===========================================
- Hits 2049 1341 -708
- Misses 41 908 +867
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
@dependabot merge
One of your CI runs failed on this pull request, so Dependabot won't merge it.
Dependabot will still automatically merge this pull request if you amend it and your tests pass.
Sorry @david-a-wheeler I've been spinning wheels on this. I'm not sure why codecov is reporting a loss in coverage on this PR.