Update dependency rails to v8.1.3.1 #63

Open
renovate wants to merge 1 commit from renovate/ruby-on-rails-packages into main
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rails (source, changelog) 8.1.38.1.3.1 age adoption passing confidence

Release Notes

rails/rails (rails)

v8.1.3.1: 8.1.3.1

Compare Source

Active Support

  • No changes.

Active Model

  • No changes.

Active Record

  • No changes.

Action View

  • No changes.

Action Pack

  • No changes.

Active Job

  • No changes.

Action Mailer

  • No changes.

Action Cable

  • No changes.

Active Storage

  • Disable libvips's unfuzzed image loaders and savers.

    libvips flags some of its loaders and savers as "unfuzzed" or "untrusted", meaning they are only
    safe for trusted content. Active Storage will call Vips.block_untrusted(true) to disable them
    while booting. An application that needs a specific loader or saver may re-enable it in an
    initializer.

    This is a breaking change for applications that process image types with an unfuzzed loader or
    saver. Variant transformation of BMP, ICO, and PSD attachments will raise Vips::Error, and
    analysis of these and other types such as SVG, JPEG XL, JPEG 2000, and Netpbm will no longer
    record width and height. Requesting an unfuzzed output format, typically FITS, JXL, or
    anything delegated to ImageMagick, will also raise Vips::Error. Attaching, storing, and
    downloading are unchanged.

    An application seeing Vips::Error raised during image transformation may wish to remove the
    affected content types from config.active_storage.variable_content_types in an initializer.
    Active Storage will then treat those attachments as not variable and will not generate variants
    for them. This most often matters to an application that transforms images during a request
    rather than in a background job, where the failure surfaces as an error response instead of a
    failed job.

    Rails.application.config.active_storage.variable_content_types -=
      %w[ image/bmp image/vnd.microsoft.icon image/vnd.adobe.photoshop ]
    

    Applications using the :mini_magick variant processor will see no change in how their
    attachments are processed, but the loaders and savers will be disabled process-wide whenever
    ruby-vips is installed, and the version requirements below will still apply. Such an application
    may remove ruby-vips from its Gemfile to avoid both.

    The minimum supported version of libvips is now 8.13, and the minimum supported version of
    ruby-vips is now 2.2.1. These are the earliest versions that are capable of disabling untrusted
    operations. When ruby-vips is installed and either minimum is not met, Active Storage will raise
    a RuntimeError while booting rather than run in an unsecurable environment.

    [GHSA-xr9x-r78c-5hrm]
    [CVE-2026-66066]

    Mike Dalessio

Action Mailbox

  • No changes.

Action Text

  • No changes.

Railties

  • No changes.

Guides

  • No changes.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [rails](https://rubyonrails.org) ([source](https://github.com/rails/rails), [changelog](https://github.com/rails/rails/releases/tag/v8.1.3.1)) | `8.1.3` → `8.1.3.1` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/rails/8.1.3.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/rails/8.1.3.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/rails/8.1.3/8.1.3.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/rails/8.1.3/8.1.3.1?slim=true) | --- ### Release Notes <details> <summary>rails/rails (rails)</summary> ### [`v8.1.3.1`](https://github.com/rails/rails/releases/tag/v8.1.3.1): 8.1.3.1 [Compare Source](https://github.com/rails/rails/compare/v8.1.3...v8.1.3.1) #### Active Support - No changes. #### Active Model - No changes. #### Active Record - No changes. #### Action View - No changes. #### Action Pack - No changes. #### Active Job - No changes. #### Action Mailer - No changes. #### Action Cable - No changes. #### Active Storage - Disable libvips's unfuzzed image loaders and savers. libvips flags some of its loaders and savers as "unfuzzed" or "untrusted", meaning they are only safe for trusted content. Active Storage will call `Vips.block_untrusted(true)` to disable them while booting. An application that needs a specific loader or saver may re-enable it in an initializer. This is a breaking change for applications that process image types with an unfuzzed loader or saver. Variant transformation of BMP, ICO, and PSD attachments will raise `Vips::Error`, and analysis of these and other types such as SVG, JPEG XL, JPEG 2000, and Netpbm will no longer record `width` and `height`. Requesting an unfuzzed output format, typically FITS, JXL, or anything delegated to ImageMagick, will also raise `Vips::Error`. Attaching, storing, and downloading are unchanged. An application seeing `Vips::Error` raised during image transformation may wish to remove the affected content types from `config.active_storage.variable_content_types` in an initializer. Active Storage will then treat those attachments as not variable and will not generate variants for them. This most often matters to an application that transforms images during a request rather than in a background job, where the failure surfaces as an error response instead of a failed job. ```ruby Rails.application.config.active_storage.variable_content_types -= %w[ image/bmp image/vnd.microsoft.icon image/vnd.adobe.photoshop ] ``` Applications using the `:mini_magick` variant processor will see no change in how their attachments are processed, but the loaders and savers will be disabled process-wide whenever ruby-vips is installed, and the version requirements below will still apply. Such an application may remove ruby-vips from its Gemfile to avoid both. The minimum supported version of libvips is now 8.13, and the minimum supported version of ruby-vips is now 2.2.1. These are the earliest versions that are capable of disabling untrusted operations. When ruby-vips is installed and either minimum is not met, Active Storage will raise a `RuntimeError` while booting rather than run in an unsecurable environment. \[GHSA-xr9x-r78c-5hrm] \[CVE-2026-66066] *Mike Dalessio* #### Action Mailbox - No changes. #### Action Text - No changes. #### Railties - No changes. #### Guides - No changes. </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNjAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjI2MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Update dependency rails to v8.1.3.1
All checks were successful
ci/woodpecker/push/test Pipeline was successful
c8ca827c1d
All checks were successful
ci/woodpecker/push/test Pipeline was successful
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/ruby-on-rails-packages:renovate/ruby-on-rails-packages
git switch renovate/ruby-on-rails-packages

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/ruby-on-rails-packages
git switch renovate/ruby-on-rails-packages
git rebase main
git switch main
git merge --ff-only renovate/ruby-on-rails-packages
git switch renovate/ruby-on-rails-packages
git rebase main
git switch main
git merge --no-ff renovate/ruby-on-rails-packages
git switch main
git merge --squash renovate/ruby-on-rails-packages
git switch main
git merge --ff-only renovate/ruby-on-rails-packages
git switch main
git merge renovate/ruby-on-rails-packages
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
casper/bsky_handle_provider!63
No description provided.