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

build(deps): bump railties, actionpack, actionview and activemodel #4013

Merged
merged 1 commit into from
Oct 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 8, 2024

Bumps railties, actionpack, actionview and activemodel. These dependencies needed to be updated together.
Updates railties from 7.1.4 to 7.2.1

Release notes

Sourced from railties's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from railties's changelog.

Rails 7.2.1 (August 22, 2024)

  • Fix rails console for application with non default application constant.

    The wrongly assumed the Rails application would be named AppNamespace::Application, which is the default but not an obligation.

    Jean Boussier

  • Fix the default Dockerfile to include the full sqlite3 package.

    Prior to this it only included libsqlite3, so it wasn't enough to run rails dbconsole.

    Jerome Dalbert

  • Don't update public directory during app:update command for API-only Applications.

    y-yagi

  • Don't add bin/brakeman if brakeman is not in bundle when upgrading an application.

    Etienne Barrié

  • Remove PWA views and routes if its an API only project.

    Jean Boussier

  • Simplify generated Puma configuration

    DHH, Rafael Mendonça França

Rails 7.2.0 (August 09, 2024)

  • The new bin/rails boot command boots the application and exits. Supports the standard -e/--environment options.

    Xavier Noria

  • Create a Dev Container Generator that generates a Dev Container setup based on the current configuration of the application. Usage:

    bin/rails devcontainer

    Andrew Novoselac

  • Add Rubocop and GitHub Actions to plugin generator. This can be skipped using --skip-rubocop and --skip-ci.

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • 8b40780 Sync changelog
  • cd1b3db Revert "Merge pull request #49769 from jonathanhefner/active_record-enum-non-...
  • 2402fb4 Merge pull request #52637 from jlduran/cleanup-service-worker-white-space
  • 57a6916 Clarify PID file configuration in development
  • bccc8a0 Merge pull request #52625 from Uaitt/remove-rubocop-offense-in-assets.rb
  • afb919b Fix a typo in Application#name doc
  • 4df84b5 Merge pull request #52616 from byroot/fix-console-app-name
  • 884b1de Merge pull request #52589 from jeromedalbert/sqlite3-dockerfile
  • 2e15022 Merge pull request #52403 from y-yagi/app_update_public_api
  • Additional commits viewable in compare view

Updates actionpack from 7.1.4 to 7.2.1

Release notes

Sourced from actionpack's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from actionpack's changelog.

Rails 7.2.1 (August 22, 2024)

  • Fix Request#raw_post raising NoMethodError when rack.input is nil.

    Hartley McGuire

Rails 7.2.0 (August 09, 2024)

  • Allow bots to ignore allow_browser.

    Matthew Nguyen

  • Include the HTTP Permissions-Policy on non-HTML Content-Types [CVE-2024-28103]

    Aaron Patterson, Zack Deveau

  • Fix Mime::Type.parse handling type parameters for HTTP Accept headers.

    Taylor Chaparro

  • Fix the error page that is displayed when a view template is missing to account for nested controller paths in the suggested correct location for the missing template.

    Joshua Young

  • Add save_and_open_page helper to IntegrationTest.

    save_and_open_page is a helpful helper to keep a short feedback loop when working on system tests. A similar helper with matching signature has been added to integration tests.

    Joé Dupuis

  • Fix a regression in 7.1.3 passing a to: option without a controller when the controller is already defined by a scope.

    Rails.application.routes.draw do
      controller :home do
        get "recent", to: "recent_posts"
      end
    end

    Étienne Barrié

  • Request Forgery takes relative paths into account.

    Stefan Wienert

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • 90d9e12 Merge pull request #52138 from skipkayhil/hm-rack-input-is-optional
  • f42a784 Move the rewind code closer to the reason why we need to rewind
  • fb6c430 Preparing for 7.2.0 release
  • 0b3404e Merge pull request #52531 from n-studio/allow-bots
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 3ce715b Don't claim compatibility with unknown future Rack releases
  • 9b63450 Preparing for 7.2.0.beta3 release
  • 850d692 Merge pull request #50063 from skipkayhil/hm-doc-metal
  • a38f2dc Merge pull request #52225 from Earlopain/rdoc-hanging
  • Additional commits viewable in compare view

Updates actionview from 7.1.4 to 7.2.1

Release notes

Sourced from actionview's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from actionview's changelog.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix templates with strict locals to also include local_assigns.

    Previously templates defining strict locals wouldn't receive the local_assigns hash.

    Jean Boussier

  • Add queries count to template rendering instrumentation.

    # Before
    Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms | Allocations: 112788)
    

    After

    Completed 200 OK in 3804ms (Views: 41.0ms | ActiveRecord: 33.5ms (2 queries, 1 cached) | Allocations: 112788)

    fatkodima

  • Raise ArgumentError if :renderable object does not respond to #render_in.

    Sean Doyle

  • Add the nonce: true option for stylesheet_link_tag helper to support automatic nonce generation for Content Security Policy.

    Works the same way as javascript_include_tag nonce: true does.

    Akhil G Krishnan, AJ Esler

  • Parse ActionView::TestCase#rendered HTML content as Nokogiri::XML::DocumentFragment instead of Nokogiri::XML::Document.

    Sean Doyle

  • Rename ActionView::TestCase::Behavior::Content to ActionView::TestCase::Behavior::RenderedViewContent.

    Make RenderedViewContent inherit from String. Make private API with :nodoc:

    Sean Doyle

  • Deprecate passing nil as value for the model: argument to the form_with method.

    Collin Jilbert

... (truncated)

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • 16359ac Merge pull request #52567 from biow0lf/fix-date_field_tag-examples
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 9b63450 Preparing for 7.2.0.beta3 release
  • 7c61bbd Fix changelog formatting
  • 03054bf Fix changelog formatting
  • d3016bb Merge pull request #52205 from Shopify/local-assigns-strict-locals
  • 76c6a11 Merge pull request #52024 from Earlopain/explicit-logger-dep
  • b752c38 Preparing for 7.2.0.beta2 release
  • Additional commits viewable in compare view

Updates activemodel from 7.1.4 to 7.2.1

Release notes

Sourced from activemodel's releases.

7.2.1

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • Fix detection for enum columns with parallelized tests and PostgreSQL.

    Rafael Mendonça França

  • Allow to eager load nested nil associations.

    fatkodima

  • Fix swallowing ignore order warning when batching using BatchEnumerator.

    fatkodima

  • Fix memory bloat on the connection pool when using the Fiber IsolatedExecutionState.

    Jean Boussier

  • Restore inferred association class with the same modularized name.

    Justin Ko

  • Fix ActiveRecord::Base.inspect to properly explain how to load schema information.

    Jean Boussier

  • Check invalid enum options for the new syntax.

    The options using _ prefix in the old syntax are invalid in the new syntax.

    Rafael Mendonça França

  • Fix ActiveRecord::Encryption::EncryptedAttributeType#type to return actual cast type.

    Vasiliy Ermolovich

... (truncated)

Changelog

Sourced from activemodel's changelog.

Rails 7.2.1 (August 22, 2024)

  • No changes.

Rails 7.2.0 (August 09, 2024)

  • Fix a bug where type casting of string to Time and DateTime doesn't calculate minus minute value in TZ offset correctly.

    Akira Matsuda

  • Port the type_for_attribute method to Active Model. Classes that include ActiveModel::Attributes will now provide this method. This method behaves the same for Active Model as it does for Active Record.

    class MyModel
      include ActiveModel::Attributes
    attribute :my_attribute, :integer
    end
    MyModel.type_for_attribute(:my_attribute) # => #<ActiveModel::Type::Integer ...>

    Jonathan Hefner

Please check 7-1-stable for previous changes.

Commits
  • a11f0a6 Preparing for 7.2.1 release
  • fb6c430 Preparing for 7.2.0 release
  • 41d50f4 Preparing for 7.2.0.rc1 release
  • 79ea9f6 Merge pull request #52443 from Shopify/optimize-fast_string_to_time
  • 9b63450 Preparing for 7.2.0.beta3 release
  • 9d9ec1c Merge pull request #52145 from Shopify/alias-attribute-override-inherited-met...
  • e564f29 Merge pull request #52118 from Shopify/fix-code-generator-bloat
  • b752c38 Preparing for 7.2.0.beta2 release
  • 4d38eb8 update changelog
  • 9098f53 Preparing for 7.2.0.beta1 release
  • 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 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)

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

Updates `railties` from 7.1.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/railties/CHANGELOG.md)
- [Commits](rails/rails@v7.1.4...v7.2.1)

Updates `actionpack` from 7.1.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/actionpack/CHANGELOG.md)
- [Commits](rails/rails@v7.1.4...v7.2.1)

Updates `actionview` from 7.1.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/actionview/CHANGELOG.md)
- [Commits](rails/rails@v7.1.4...v7.2.1)

Updates `activemodel` from 7.1.4 to 7.2.1
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v7.2.1/activemodel/CHANGELOG.md)
- [Commits](rails/rails@v7.1.4...v7.2.1)

---
updated-dependencies:
- dependency-name: railties
  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: actionview
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: activemodel
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Oct 8, 2024
@moleske moleske merged commit 301f6e3 into main Oct 9, 2024
8 checks passed
@dependabot dependabot bot deleted the dependabot/bundler/multi-5114812b85 branch October 9, 2024 01:38
ari-wg-gitbot added a commit to cloudfoundry/capi-release that referenced this pull request Oct 9, 2024
Changes in cloud_controller_ng:

- build(deps): bump cookie and express in /docs/v3
    PR: cloudfoundry/cloud_controller_ng#4014
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

- build(deps): bump railties, actionpack, actionview and activemodel
    PR: cloudfoundry/cloud_controller_ng#4013
    Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

1 participant