Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actionmailer, activesupport, actionview, actionpack, activejob, activemodel, activerecord, railties and rails #2065

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 12, 2023

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 responding to_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_table in 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::FormBuilder

    Use the default_form_builder method 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_with via the :args kwarg. assert_enqueued_email_with now supports a :params kwarg, 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
  • 2393805 Preparing for 7.1.1 release
  • d39db5d Preparing for 7.1.0 release
  • 8340f8f Preparing for 7.1.0.rc2 release
  • e5386cb Preparing for 7.1.0.rc1 release
  • e7009b1 Remove unused mailer
  • 647e39b Log delivery errors in ActionMailer::LogSubscriber
  • 9a2cf33 Introduce ActionMailer::FormBuilder
  • 51ac8b9 Enable Minitest/LiteralAsActualArgument
  • 699dfdb Preparing for 7.1.0.beta1 release
  • 6998747 Remove 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 responding to_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_table in 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 responding to_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::MessagePack with ENV["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
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 773e4a6 Merge pull request #49518 from Edouard-chin/ec-logger-doc
  • e2ded10 Merge pull request #49571 from jenshenny/kwargs-broadcast-logger
  • dfebc16 Merge pull request #49576 from fatkodima/fix-number-helper-to_d
  • c3117b5 Merge pull request #49554 from Thomascountz/fix-redis-lt7-ttl-not-set-on-firs...
  • 52c4aef Merge pull request #49542 from pjambet/pj/fix-memory-store-race-condition
  • f705603 Autolink references for AS::Notifications::Instrumenter [ci-skip]
  • 5fd7fc4 Capitalize framework names [ci-skip]
  • 7d49a43 Ensure 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 responding to_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_table in 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/ujs files 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_parser

    register_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 :html and :json.

    Sean Doyle

Rails 7.1.0.beta1 (September 13, 2023)

  • Fix simple_format with blank wrapper_tag option returns plain html tag

    By default simple_format method returns the text wrapped with <p>. But if we explicitly specify the wrapper_tag: nil in the options, it returns the text wrapped with <></> tag.

    Before:

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • 63f204d Merge pull request #49553 from tricknotes/update-rails-ujs-build
  • d39db5d Preparing for 7.1.0 release
  • 8340f8f Preparing for 7.1.0.rc2 release
  • 877e7d8 Merge pull request #49416 from Shopify/fix-render-call-extractor-on-ruby-3.3
  • e5386cb Preparing for 7.1.0.rc1 release
  • 7893e0a Merge pull request #49194 from seanpdoyle/action-view-test-case-encoder
  • 7badc42 Introduce ActionView::TestCase.register_parser
  • acfa045 Revert typography change in user facing errors
  • 72b3fe9 Update doc for include_hidden form 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 responding to_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_table in 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_merge and #deep_merge! to ActionController::Parameters.

    Sean Doyle

Rails 7.1.0.beta1 (September 13, 2023)

  • AbstractController::Translation.raise_on_missing_translations removed

    This 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_value method to allow extracting serialized values from params

    params = 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_body with ActiveSupport::HashWithIndifferentAccess

    Integrate with Minitest's new assert_pattern by parsing the JSON contents of response.parsed_body with ActiveSupport::HashWithIndifferentAccess, so that it's pattern-matching compatible.

    Sean Doyle

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • 5abcfd4 Merge pull request #49538 from akhilgkrishnan/capitalize-framework-names
  • dec60e5 Fix config name in changelog related to #49517
  • 4be0e37 Merge pull request #49517 from benstein/patch-1
  • d39db5d Preparing for 7.1.0 release
  • 60393bb Merge pull request #49493 from skipkayhil/hm-no-backticks
  • 311f639 Merge pull request #49487 from yawboakye/clarify-login-procedure-expectation
  • 7edbcce Merge pull request #49456 from seanpdoyle/strong-parameters-deep-merge-rdoc
  • 8340f8f Preparing for 7.1.0.rc2 release
  • fe87369 Merge 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 responding to_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_table in 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_at is a Time object when asserting enqueued jobs.

    Rafael Mendonça França

Rails 7.1.0.rc1 (September 27, 2023)

  • Set scheduled_at attribute 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_at as a Time instead of ISO8601 String.

    Ben Sheldon

  • Clarify the backoff strategy for the recommended :wait option when retrying jobs

    wait: :exponentially_longer is waiting polynomially longer, so it is now recommended to use wait: :polynomially_longer to 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_discard method.

    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
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • a5534b9 Merge pull request #49515 from dustinbrownman/main
  • 5766679 Fix perform_enqueued_jobs :at option doc [ci-skip]
  • 95f3e63 Reword adapter caveat for perform_enqueued_jobs [ci-skip]
  • 3b26509 Reword queue_adapter_for_test doc [ci-skip]
  • 5fd7fc4 Capitalize framework names [ci-skip]
  • d39db5d Preparing for 7.1.0 release
  • 1490788 Merge pull request #49470 from rails/rm-eager-load-model-schema
  • 8340f8f Preparing 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 responding to_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_table in 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_key avoids wrapping #id value into an Array if #id already an array

    Nikita Vasilevsky

  • Add ActiveModel::Conversion.param_delimiter to configure delimiter being used in to_param

    Nikita Vasilevsky

  • undefine_attribute_methods undefines 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 (named active_model) to match the load hook for ActiveRecord::Base and allow for overriding aspects of the ActiveModel::Model class.

    Lewis Buckley

  • Improve password length validation in ActiveModel::SecurePassword to consider byte size for BCrypt compatibility.

... (truncated)

Commits
  • 2393805 Preparing for 7.1.1 release
  • 3023ec1 Fix typo in method names [ci-skip]
  • d39db5d Preparing for 7.1.0 release
  • 8340f8f Preparing for 7.1.0.rc2 release
  • e5386cb Preparing for 7.1.0.rc1 release
  • acfa045 Revert typography change in user facing errors
  • 4fb4af7 [Docs][Tests] Add tests for validates_exclusion_of to 7.1.0beta1 Active Model
  • 51ac8b9 Enable Minitest/LiteralAsActualArgument
  • 699dfdb Preparing for 7.1.0.beta1 release
  • 4a08111 Merge 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 responding to_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_table in 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_table in 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:drop is run.

    Niklas Häusele

  • Revert the change to raise an ArgumentError when #accepts_nested_attributes_for is declared more than once for an association in the same class.

    The reverted behavior broke the case where the #accepts_nested_attributes_for was 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
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 1f1710d Merge pull request #49589 from fatkodima/fix-flaky-fixtures-test
  • 57d626e Merge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...
  • 27029a3 Merge pull request #49544 from hieuk09/bug/fix-sqlite3-table-name-quote
  • b7837f9 Merge pull request #49504 from fatkodima/fix-pg-retrieving-identity-columns
  • 36a3c68 Merge pull request #49551 from haines/fix-internal-metadata-disabled
  • 457f0e4 Autolink references for AR::Calculations#async_* [ci-skip]
  • 51a57d6 Remove unnecessary alias references [ci-skip]
  • 5fd7fc4 Capitalize 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 responding to_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_table in 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-ruby in config/puma.rb so that Puma can boot in production when WEB_CONCURRENCY is not explicitly specified.

    Fixes #49323.

    Matt Brictson

  • Raise error when generating attribute with dangerous name.

    The following will now raise an error as save and hash are already defined by Active Record.

    $ bin/rails generate model Post save
    $ bin/rails generate model Post hash

    Petrik 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
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 314220e Merge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...
  • 57d626e Merge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...
  • 5abcfd4 Merge pull request #49538 from akhilgkrishnan/capitalize-framework-names
  • 9ae8060 Clean up docs for Rails::Generators::ActiveModel [ci-skip]
  • b809ac2 Merge pull request #49528 from mohits/patch-3
  • 174bd99 Only check the schema when the table exists on CI
  • 5fa5f81 Merge pull request #49497 from Earlopain/extraneous-whitespace
  • d39db5d Preparing 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 responding to_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_table in 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
  • 2393805 Preparing for 7.1.1 release
  • b280d7f Sync CHANGELOG
  • 314220e Merge pull request #49525 from abhaynikam/fix-app-generated-dockerfile-to-use...
  • 1f1710d Merge pull request #49589 from fatkodima/fix-flaky-fixtures-test
  • 4921df0 Merge pull request #49565 from hachi8833/add_missing_doc_43487
  • 57d626e Merge pull request #49562 from akhilgkrishnan/update-postgres-naming-to-postg...
  • 63f204d Merge pull request #49553 from tricknotes/update-rails-ujs-build
  • 8a6118a Use released version of Sdoc
  • 3199a45 Merge pull request #49581 from hachi8833/update_doc_npm
  • a5534b9 Merge 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 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Oct 12, 2023
@andrewfader
Copy link
Collaborator

Fun idea, dependabot, but this won't actually work yet, but I'll look at.

@david-a-wheeler
Copy link
Collaborator

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_handling setter 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."

@andrewfader
Copy link
Collaborator

andrewfader commented Oct 18, 2023

The next problem will be this one from licensefinder

Dependencies that need approval:
rdoc, 6.5.0, ruby
reline, 0.3.9, ruby

@andrewfader
Copy link
Collaborator

@dependabot rebase

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 18, 2023

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.

@andrewfader
Copy link
Collaborator

oh right I knew that. I'll rebase it myself then.

…activemodel, activerecord, railties and rails

Bumps [actionmailer](https://github.com/rails/rails), [activesupport](https://github.com/rails/rails), [actionview](https://github.com/rails/rails), [actionpack](https://github.com/rails/rails), [activejob](https://github.com/rails/rails), [activemodel](https://github.com/rails/rails), [activerecord](https://github.com/rails/rails), [railties](https://github.com/rails/rails) and [rails](https://github.com/rails/rails). These dependencies needed to be updated together.

Updates `actionmailer` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/actionmailer/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `activesupport` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `actionview` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/actionview/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `actionpack` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `activejob` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/activejob/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `activemodel` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/activemodel/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `activerecord` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `railties` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.1.1/railties/CHANGELOG.md)
- [Commits](rails/rails@v7.0.8...v7.1.1)

Updates `rails` from 7.0.8 to 7.1.1
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v7.0.8...v7.1.1)

---
updated-dependencies:
- dependency-name: actionmailer
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: activesupport
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: actionview
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: actionpack
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: activejob
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: activemodel
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: activerecord
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: railties
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: rails
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@andrewfader andrewfader force-pushed the dependabot/bundler/actionmailer-and-activesupport-and-actionview-and-actionpack-and-activejob-and-activemodel-and-activerecord-and-railties-and-rails-7.1.1 branch from 4dc027f to a2b63e5 Compare October 18, 2023 00:55
@codecov
Copy link

codecov bot commented Oct 18, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

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     

see 33 files with indirect coverage changes

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@andrewfader andrewfader force-pushed the dependabot/bundler/actionmailer-and-activesupport-and-actionview-and-actionpack-and-activejob-and-activemodel-and-activerecord-and-railties-and-rails-7.1.1 branch from a2b63e5 to 2f149d6 Compare November 13, 2023 20:48
@andrewfader
Copy link
Collaborator

@dependabot merge

Signed-off-by: Andrew Fader <fader@yagni.co>
@andrewfader andrewfader force-pushed the dependabot/bundler/actionmailer-and-activesupport-and-actionview-and-actionpack-and-activejob-and-activemodel-and-activerecord-and-railties-and-rails-7.1.1 branch from 2f149d6 to 79ae008 Compare November 13, 2023 20:51
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2023

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.

Signed-off-by: Andrew Fader <fader@yagni.co>
@andrewfader andrewfader force-pushed the dependabot/bundler/actionmailer-and-activesupport-and-actionview-and-actionpack-and-activejob-and-activemodel-and-activerecord-and-railties-and-rails-7.1.1 branch from ae53341 to 4de0595 Compare November 13, 2023 21:07
Signed-off-by: Andrew Fader <fader@yagni.co>
@andrewfader
Copy link
Collaborator

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.

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 ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants