Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

Bumps the dependencies group with 7 updates in the / directory:

Package From To
rails 8.0.3 8.0.4
turbo-rails 2.0.17 2.0.20
jquery-rails 4.6.0 4.6.1
bootstrap_form 5.4.0 5.5.0
paper_trail 16.0.0 17.0.0
honeybadger 6.1.2 6.1.3
page_title_helper 9.1.0 10.0.0

Updates rails from 8.0.3 to 8.0.4

Release notes

Sourced from rails's releases.

8.0.4

Active Support

  • Fix Enumerable#sole to return the full tuple instead of just the first element of the tuple.

    Olivier Bellone

  • Fix parallel tests hanging when worker processes die abruptly.

    Previously, if a worker process was killed (e.g., OOM killed, kill -9) during parallel test execution, the test suite would hang forever waiting for the dead worker.

    Joshua Young

  • Fix NameError when class_attribute is defined on instance singleton classes.

    Previously, calling class_attribute on an instance's singleton class would raise a NameError when accessing the attribute through the instance.

    object = MyClass.new
    object.singleton_class.class_attribute :foo, default: "bar"
    object.foo # previously raised NameError, now returns "bar"

    Joshua Young

Active Model

  • No changes.

Active Record

  • Fix SQLite3 data loss during table alterations with CASCADE foreign keys.

    When altering a table in SQLite3 that is referenced by child tables with ON DELETE CASCADE foreign keys, ActiveRecord would silently delete all data from the child tables. This occurred because SQLite requires table recreation for schema changes, and during this process the original table is temporarily dropped, triggering CASCADE deletes on child tables.

    The root cause was incorrect ordering of operations. The original code wrapped disable_referential_integrity inside a transaction, but PRAGMA foreign_keys cannot be modified inside a transaction in SQLite - attempting to do so simply has no effect. This meant foreign keys remained enabled during table recreation, causing CASCADE deletes to fire.

    The fix reverses the order to follow the official SQLite 12-step ALTER TABLE

... (truncated)

Commits
  • 624fe3c Preparing for 8.0.4 release
  • 47a7635 Upgrade sigstore gem to 0.2.2
  • 2f3eb21 Sync CHANGELOG
  • d96d698 Merge pull request #56021 from harsh183/hd/getting_started_add_note_about_mai...
  • 0ddf2c9 Delete test that now fails with new version of benchmark gem
  • 6981fd2 Merge pull request #55969 from rails/fix-explain-tests-mysql-9.5
  • 95a073e Merge pull request #55966 from alexanderadam/doc/remove_subclasses_documentat...
  • ac0b8f0 Merge pull request #54720 from gregmolnar/guides
  • 82f2c96 Disable GCS tests in CI
  • 94a2844 Merge pull request #53068 from zzak/rails-probot-migration
  • Additional commits viewable in compare view

Updates turbo-rails from 2.0.17 to 2.0.20

Release notes

Sourced from turbo-rails's releases.

v2.0.20

Full Changelog: hotwired/turbo-rails@v2.0.19...v2.0.20

v2.0.19

Full Changelog: hotwired/turbo-rails@v2.0.17...v2.0.19

Commits

Updates jquery-rails from 4.6.0 to 4.6.1

Changelog

Sourced from jquery-rails's changelog.

4.6.1

  • update jquery to 3.7.1
Commits

Updates bootstrap_form from 5.4.0 to 5.5.0

Release notes

Sourced from bootstrap_form's releases.

v5.5.0

What's Changed

New Contributors

Full Changelog: bootstrap-ruby/bootstrap_form@v5.4.0...v5.5.0

Changelog

Sourced from bootstrap_form's changelog.

Change Log

You can find recent releases with docs in GitHub:

https://github.com/bootstrap-ruby/bootstrap_form/releases

Diffs

Older releases

The tooling to support our old way of doing the change log doesn't work anymore, and we don't have a better solution, so this change log has become unreliable since version 4.5.0. Please refer to the commit history if you need to debug changes.

[Pending Release][]

... (truncated)

Commits
  • 54bfcab Merge pull request #769 from lcreid/762-datetime-field
  • cc4f0ac Add example for date_field
  • 734b26b Merge pull request #758 from lcreid/757-wrapper-class-false
  • dccb197 RuboCop fix
  • 0b4957b Update screenshots (order changed)
  • 437a90c wrapper: { class: false } fix and tests
  • b88d6f8 Ignore ABC size and RuboCop fixes
  • 29aeedf Merge pull request #768 from lcreid/another-dont-define-rich-textarea
  • 9d23632 Check existence of rich_text_area
  • a483825 Merge pull request #767 from lcreid/dont-define-actiontext-helper
  • Additional commits viewable in compare view

Updates paper_trail from 16.0.0 to 17.0.0

Changelog

Sourced from paper_trail's changelog.

17.0.0 (2025-10-24)

Breaking Changes

  • None

Added

  • rails generate paper_trail:install now accepts an argument for custom versions table, e.g. rails generate paper_trail:install CommentVersion created comment_versions table
  • rails generate paper_trail:update_item_subtype now supports custom version classes via --version-class-name option, e.g. --version-class-name=CommentVersion

Fixed

  • None

Dependencies

  • Drop support for Rails 6.1, which [reached EoL on 2024-10-01][2]
  • Drop support for Rails 7.0, which [reached EoL on 2025-04-01][2]
  • Add support for Rails 8.1
  • Drop support for Ruby 3.0, which [reached EoL on 2024-04-23][3]
  • Drop support for Ruby 3.1, which [reached EoL on 2024-03-31][3]
Commits

Updates honeybadger from 6.1.2 to 6.1.3

Release notes

Sourced from honeybadger's releases.

v6.1.3

6.1.3 (2025-10-28)

Bug Fixes

  • replace return with next in execution blocks to prevent LocalJumpError (#745) (f49977a)
Changelog

Sourced from honeybadger's changelog.

6.1.3 (2025-10-28)

Bug Fixes

  • replace return with next in execution blocks to prevent LocalJumpError (#745) (f49977a)
Commits
  • a991880 chore(master): release 6.1.3 (#746)
  • f49977a fix: replace return with next in execution blocks to prevent LocalJumpError (...
  • See full diff in compare view

Updates page_title_helper from 9.1.0 to 10.0.0

Changelog

Sourced from page_title_helper's changelog.

10.0.0: Add support for Rails 8.1, drop support for Ruby 3.1 and Rails < 7.2

Added

Removed

  • Drop support for Ruby 3.1 (#219)
  • Drop support for Rails 7.0 and 7.1 (#218, #220, #228)
Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rails](https://github.com/rails/rails) | `8.0.3` | `8.0.4` |
| [turbo-rails](https://github.com/hotwired/turbo-rails) | `2.0.17` | `2.0.20` |
| [jquery-rails](https://github.com/rails/jquery-rails) | `4.6.0` | `4.6.1` |
| [bootstrap_form](https://github.com/bootstrap-ruby/bootstrap_form) | `5.4.0` | `5.5.0` |
| [paper_trail](https://github.com/paper-trail-gem/paper_trail) | `16.0.0` | `17.0.0` |
| [honeybadger](https://github.com/honeybadger-io/honeybadger-ruby) | `6.1.2` | `6.1.3` |
| [page_title_helper](https://github.com/lwe/page_title_helper) | `9.1.0` | `10.0.0` |



Updates `rails` from 8.0.3 to 8.0.4
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v8.0.3...v8.0.4)

Updates `turbo-rails` from 2.0.17 to 2.0.20
- [Release notes](https://github.com/hotwired/turbo-rails/releases)
- [Commits](hotwired/turbo-rails@v2.0.17...v2.0.20)

Updates `jquery-rails` from 4.6.0 to 4.6.1
- [Changelog](https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md)
- [Commits](rails/jquery-rails@v4.6.0...v4.6.1)

Updates `bootstrap_form` from 5.4.0 to 5.5.0
- [Release notes](https://github.com/bootstrap-ruby/bootstrap_form/releases)
- [Changelog](https://github.com/bootstrap-ruby/bootstrap_form/blob/main/CHANGELOG.md)
- [Commits](bootstrap-ruby/bootstrap_form@v5.4.0...v5.5.0)

Updates `paper_trail` from 16.0.0 to 17.0.0
- [Release notes](https://github.com/paper-trail-gem/paper_trail/releases)
- [Changelog](https://github.com/paper-trail-gem/paper_trail/blob/master/CHANGELOG.md)
- [Commits](paper-trail-gem/paper_trail@v16.0.0...v17.0.0)

Updates `honeybadger` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/honeybadger-io/honeybadger-ruby/releases)
- [Changelog](https://github.com/honeybadger-io/honeybadger-ruby/blob/master/CHANGELOG.md)
- [Commits](honeybadger-io/honeybadger-ruby@v6.1.2...v6.1.3)

Updates `page_title_helper` from 9.1.0 to 10.0.0
- [Release notes](https://github.com/lwe/page_title_helper/releases)
- [Changelog](https://github.com/lwe/page_title_helper/blob/main/CHANGELOG.md)
- [Commits](lwe/page_title_helper@v9.1.0...v10.0.0)

---
updated-dependencies:
- dependency-name: rails
  dependency-version: 8.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: turbo-rails
  dependency-version: 2.0.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jquery-rails
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: bootstrap_form
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: paper_trail
  dependency-version: 17.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: honeybadger
  dependency-version: 6.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: page_title_helper
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Nov 3, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 10, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 10, 2025
@dependabot dependabot bot deleted the dependabot/bundler/dependencies-fb48b74698 branch November 10, 2025 04:37
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