Skip to content

Comments

Bump the rails_default group across 1 directory with 22 updates#71

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/rails_default-d914f5fb72
Open

Bump the rails_default group across 1 directory with 22 updates#71
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/rails_default-d914f5fb72

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 2026

Bumps the rails_default group with 22 updates in the / directory:

Package From To
rails 7.2.2.1 8.1.2
pg 1.5.9 1.6.3
puma 6.6.0 7.2.0
turbo-rails 2.0.16 2.0.23
jbuilder 2.13.0 2.14.1
bootsnap 1.18.6 1.22.0
slim-rails 3.7.0 4.0.0
debug 1.11.0 1.11.1
dotenv-rails 3.1.8 3.2.0
rspec-rails 8.0.1 8.0.2
factory_bot_rails 6.5.0 6.5.1
brakeman 7.0.2 8.0.1
bundler-audit 0.9.2 0.9.3
bullet 8.0.8 8.1.0
rubocop-rspec 3.6.0 3.9.0
rubocop-rspec_rails 2.31.0 2.32.0
rubocop-factory_bot 2.27.1 2.28.0
syntax_tree 6.2.0 6.3.0
solargraph 0.55.1 0.58.2
slim_lint 0.33.0 0.34.0
lefthook 1.11.14 2.0.16
shoulda-matchers 6.5.0 7.0.1

Updates rails from 7.2.2.1 to 8.1.2

Release notes

Sourced from rails's releases.

8.1.2

Active Support

  • Make delegate and delegate_missing_to work in BasicObject subclasses.

    Rafael Mendonça França

  • Fix Inflectors when using a locale that fallbacks to :en.

    Said Kaldybaev

  • Fix ActiveSupport::TimeWithZone#as_json to consistently return UTF-8 strings.

    Previously the returned string would sometime be encoded in US-ASCII, which in some cases may be problematic.

    Now the method consistently always return UTF-8 strings.

    Jean Boussier

  • Fix TimeWithZone#xmlschema when wrapping a DateTime instance in local time.

    Previously it would return an invalid time.

    Dmytro Rymar

  • Implement LocalCache strategy on ActiveSupport::Cache::MemoryStore. The memory store needs to respond to the same interface as other cache stores (e.g. ActiveSupport::NullStore).

    Mikey Gough

  • Fix ActiveSupport::Inflector.humanize with international characters.

    ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
    ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    Jose Luis Duran

Active Model

  • No changes.

Active Record

  • Fix counting cached queries in ActiveRecord::RuntimeRegistry.

... (truncated)

Commits
  • d7c8ae6 Preparing for 8.1.2 release
  • 695ac6d Update Gemfile.lock
  • 01263f1 Merge pull request #56512 from byroot/remove-minitest-ci
  • 3ea2701 CHANGELOG sync
  • d3fe83f Merge pull request #56541 from rails/remove-system-test-from-default-ci-template
  • 5283514 Merge pull request #56012 from jmalcic/restore-default-adc-for-gcs-iam-client
  • 53e82ef Merge pull request #56534 from khasinski/fix-sqlite3-schema-dump-default-nil
  • d2509f8 Allow backburner warning
  • 8c48fd1 Merge pull request #56535 from eglitobias/8-1-stable
  • adcface Fix PostgreSQL schema_search_path after reconnect and reset
  • Additional commits viewable in compare view

Updates pg from 1.5.9 to 1.6.3

Changelog

Sourced from pg's changelog.

v1.6.3 [2025-12-29] Lars Kanis lars@greiz-reinsdorf.de

Added:

  • Add binary gems for ruby-4.0, now providing ruby-3.0 to 4.0. #682
  • Update fat binary gem to OpenSSL-3.6.0 and PostgreSQL-18.1.
  • Improve documentation of PG::Result and README. #676
  • Update errorcodes to PostgreSQL-18.
  • Use rb_hash_new_capa on Ruby-3.2+ . #674
  • Deny any server communication on a frozen PG::Connection . #677
  • Fix possible race condition in PG::Result in Ractor context. #674

Removed:

  • Drop binary gem support for platform x86-mingw32. #682
  • Drop binary gems for ruby-2.7.

v1.6.2 [2025-09-02] Lars Kanis lars@greiz-reinsdorf.de

  • Remove several absolute paths from native binaries which pointed to build directories. #668
  • Fix bad fallback path to pg_service.conf. #666
  • Use rbpg_ prefix for base64_* functions to avoid name clashes with functions provided by other libraries like Heimdal on Macos. #667
  • Raise a more descriptive error message in case of pg_ext LoadError. #664
  • Freeze some constants to make them available in a Ractor context. #660
  • Several documentation improvements.
  • Update native binary gems to OpenSSL-3.5.2, krb5-1.22.1 and PostgreSQL-17.6.

v1.6.1 [2025-08-03] Lars Kanis lars@greiz-reinsdorf.de

  • Add binary gems for platforms aarch64-linux-musl and x86_64-linux-musl without the need to install package gcompat. #657.
  • Serialize CompositeCoder#dimensions only when set. #652 This fixes the compatibility to pg-1.5.9, when deserializing Marshal data from pg-1.6, as long as the new attribute isn't used.
  • Remove dependency to MSYS2 package "postgresql" from binary Windows gem #654

v1.6.0 [2025-07-27] Lars Kanis lars@greiz-reinsdorf.de

Added:

  • Add binary gems for Ruby 3.4.
  • Add fat binary gem for platform aarch64-mingw-ucrt aka Windows on ARM #626, for platform Macos on Intel and ARM #643, for platform aarch64-linux #646 and for platform x86_64-linux #551.
  • Update fat binary gem to OpenSSL-3.5.1 and PostgreSQL-17.5.
  • Add a patch to libpq to avoid starvation on bigger SSL records, which some database engines other than vanilla PostgreSQL use. This patch applies to platform specific binary gems only. #616
  • Add support for new query cancel functions of PostgreSQL-17. This adds the new class PG::CancelConnection which provides the ability to cancel a query per blocking or per non-blocking functions. If the new functions are available they are used and the older are no longer compiled in. This way we can get rid of reading out the internal PGcancel struct by Connection#backend_key. #614

... (truncated)

Commits
  • d4539c2 Bump VERSION to pg-1.6.3 and add release notes
  • 720900d Merge pull request #682 from larskanis/ruby-4.0
  • f605b59 Remove x86-mingw32 from binary builds
  • 5c69000 Update to ruby-4.0
  • 2acaf3d CI: workaround missing ruby-4.0 on Window
  • b500ded fix comment
  • bc3f2f8 CI: Macos-13 on Intel is deprecated
  • 77667eb Merge pull request #678 from larskanis/ci-update
  • 6e52ce5 CI: Update PostgreSQL on Macos
  • 6d40f50 CI: Print mkmf.log on failure on Macos
  • Additional commits viewable in compare view

Updates puma from 6.6.0 to 7.2.0

Release notes

Sourced from puma's releases.

v7.2.0

7.2.0 On The Corner

  • Features

    • Add workers :auto (#3827)
    • Make it possible to restrict control server commands to stats (#3787)
  • Bugfixes

    • Don't break if WEB_CONCURRENCY is set to a blank string (#3837)
    • Don't share server between worker 0 and descendants on refork (#3602)
    • Fix phase check race condition in Puma::Cluster#check_workers (#3690)
    • Fix advertising of CLI config before config files are loaded (#3823)
  • Performance

    • 17% faster HTTP parsing through pre-interning env keys (#3825)
    • Implement dsize and dcompact functions for Puma::HttpParser, which makes Puma's C-extension GC-compactible (#3828)
  • Refactor

    • Remove NoMethodError rescue in Reactor#select_loop (#3831)
    • Various cleanups in the C extension (#3814)
    • Monomorphize handle_request return (#3802)
  • Docs

    • Change link to docs/deployment.md in README.md (#3848)
    • Fix formatting for each signal description in signals.md (#3813)
    • Update deployment and Kubernetes docs with Puma configuration tips (#3807)
    • Rename master to main (#3809, #3808, #3800)
    • Fix some minor typos in the docs (#3804)
    • Add GOVERNANCE.md, MAINTAINERS (#3826)
    • Remove Code Climate badge (#3820)
    • Add @​joshuay03 to the maintainer list
  • CI

New Contributors

Full Changelog: puma/puma@v7.1.0...v7.2.0

v7.1.0

7.1.0 / 2025-10-16 - Neon Witch

neon_witch

... (truncated)

Changelog

Sourced from puma's changelog.

7.2.0 / 2026-01-20

  • Features

    • Add workers :auto (#3827)
    • Make it possible to restrict control server commands to stats (#3787)
  • Bugfixes

    • Don't break if WEB_CONCURRENCY is set to a blank string (#3837)
    • Don't share server between worker 0 and descendants on refork (#3602)
    • Fix phase check race condition in Puma::Cluster#check_workers (#3690)
    • Fix advertising of CLI config before config files are loaded (#3823)
  • Performance

    • 17% faster HTTP parsing through pre-interning env keys (#3825)
    • Implement dsize and dcompact functions for Puma::HttpParser, which makes Puma's C-extension GC-compactible (#3828)
  • Refactor

    • Remove NoMethodError rescue in Reactor#select_loop (#3831)
    • Various cleanups in the C extension (#3814)
    • Monomorphize handle_request return (#3802)
  • Docs

    • Change link to docs/deployment.md in README.md (#3848)
    • Fix formatting for each signal description in signals.md (#3813)
    • Update deployment and Kubernetes docs with Puma configuration tips (#3807)
    • Rename master to main (#3809, #3808, #3800)
    • Fix some minor typos in the docs (#3804)
    • Add GOVERNANCE.md, MAINTAINERS (#3826)
    • Remove Code Climate badge (#3820)
    • Add @​joshuay03 to the maintainer list
  • CI

7.1.0 / 2025-10-16

  • Features

    • Introduce after_worker_shutdown hook (#3707)
    • Reintroduce keepalive "fast inline" behavior. Provides faster (8x on JRuby & 1.4x on Ruby) pipeline processing (#3794)
  • Bugfixes

    • Skip reading zero bytes when request body is buffered (#3795)
    • Fix PUMA_LOG_CONFIG=1 logging twice with prune_bundler enabled (#3778)
    • Fix prune_bundler not showing in PUMA_LOG_CONFIG=1 output (#3779)
    • Guard ThreadPool method call, which may be nil during shutdown (#3791, #3790)
    • Set Thread.current.puma_server in Thread init code, not every request (#3774)
    • Fix race condition while deleting pidfile (#3657)

7.0.4 / 2025-09-23

... (truncated)

Commits

Updates turbo-rails from 2.0.16 to 2.0.23

Release notes

Sourced from turbo-rails's releases.

v2.0.23

Updates the bundled JS to freshen stale dependencies from the previous release.

Full Changelog: hotwired/turbo-rails@v2.0.22...v2.0.23

v2.0.22

What's Changed

Full Changelog: hotwired/turbo-rails@v2.0.21...v2.0.22

v2.0.21

What's Changed

New Contributors

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

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

v2.0.17

What's Changed

... (truncated)

Commits
  • 435135b Bump version
  • 22701f1 @​hotwired/turbo-rails v8.0.23
  • 27030b9 Bump version
  • 52cde05 @​hotwired/turbo-rails v8.0.22
  • e511fb2 Bump version
  • 99dc9c5 @​hotwired/turbo-rails v8.0.20
  • c2cd99f v8.0.21
  • 31c78af Respect broadcast suppressions on before/after actions (#770)
  • 16f7613 Only return messages produced by block in capture_turbo_stream_broadcasts
  • dda27a8 Restrict tests to minitest<6
  • Additional commits viewable in compare view

Updates jbuilder from 2.13.0 to 2.14.1

Release notes

Sourced from jbuilder's releases.

v2.14.1

What's Changed

New Contributors

Full Changelog: rails/jbuilder@v2.14.0...v2.14.1

v2.14.0

What's Changed

New Contributors

Full Changelog: rails/jbuilder@v2.13.0...v2.14.0

Commits
  • 38339ad Prepare for 2.14.1
  • 2400fd9 Merge pull request #601 from flavorjones/flavorjones/fix-encode-arguments
  • a6863b5 Ensure that Jbuilder.encode properly forwards arguments to .new
  • 30ba7df Prepare for 2.14.0
  • 5f4af71 Merge pull request #591 from moberegger/moberegger/optimize_options_merges
  • 6fd6c06 Small _set_inline_partial optimization
  • b7b5abb Stop mutating options in partial! method
  • 7e16adf Stop mutating options in set! method
  • 8474b41 Remove _partial micro-optimization
  • 9ffacf7 Merge pull request #574 from pixeltrix/fix-warnings-and-version-constant
  • Additional commits viewable in compare view

Updates bootsnap from 1.18.6 to 1.22.0

Release notes

Sourced from bootsnap's releases.

v1.22.0

What's Changed

  • Proper fix for the opendir crash.
  • Add bootsnap/rake for cleaning the bootsnap cache as part of rake clobber.

Full Changelog: rails/bootsnap@v1.21.1...v1.22.0

v1.21.1

What's Changed

  • Fallback to pure the pure ruby path scanner on unexpected error.

Full Changelog: rails/bootsnap@v1.21.0...v1.21.1

v1.20.1

What's Changed

  • Handle broken symlinks in load path scanning code. Should fix Errno::ENOENT fstatat issues some users have encountered after upgrading to 1.20.0.

Full Changelog: rails/bootsnap@v1.20.0...v1.20.1

v1.20.0

What's Changed

  • Optimized load path scanning with a C extension. Should be about 2x faster on supported platforms.

Full Changelog: rails/bootsnap@v1.19.0...v1.20.0

Changelog

Sourced from bootsnap's changelog.

1.22.0

  • Better fix for the opendir crash.
  • Add bootsnap/rake for cleaning the bootsnap cache as part of rake clobber.

1.21.1

  • Prevent a Ruby crash while scanning load path if opendir fails without setting errno. According to the C spec this should not happen, but according to user reports, it did.

1.21.0

  • Fix the require decorator to handle Bootsnap.unload_cache! being called.
  • Minor optimization: Eagerly clear cache buffers to appease the GC.

1.20.1

  • Handle broken symlinks in load path scanning code. Should fix Errno::ENOENT fstatat issues some users have encountered after upgrading to 1.20.0.

1.20.0

  • Optimized load path scanning with a C extension. Should be about 2x faster on supported platforms.

1.19.0

  • Remove JSON parsing cache. Recent versions of the json gem are as fast as msgpack if not faster.
Commits
  • aabae6d Release 1.22.0
  • 2545ea7 Merge pull request #525 from jasonkarns/cache_dir
  • 1889435 Add missing nil checks
  • 7d375c6 Rake entrypoint registers Bootsnap's cache_dir for cleaning
  • d091162 Expose cache_dir root for all caches
  • e977de2 Enforce mocha 3+
  • 6a49c76 Merge pull request #523 from byroot/better-opendir-fix
  • ccc8e13 Properly fix opendir failing with errno = 0
  • 182a809 Release 1.21.1
  • 1e59365 Merge pull request #522 from byroot/improve-scandir
  • Additional commits viewable in compare view

Updates slim-rails from 3.7.0 to 4.0.0

Release notes

Sourced from slim-rails's releases.

v4.0.0

Breaking changes

What's Changed

Full Changelog: slim-template/slim-rails@v3.7.0...v4.0.0

Changelog

Sourced from slim-rails's changelog.

4.0.0 (December 11, 2025)

  • Add support for Rails Annotations and CodeStatistics (#206)
  • Drop support for Ruby 2.7 and Rails older than 7 ([205])
  • Add Rails 8.1 to CI Matrix (#204)
Commits
  • 5e5555f Bump version to 4.0.0
  • c92b4ef Merge pull request #205 from taketo1113/drop-ruby2.7-rails6.1
  • 5fd31dc Merge pull request #206 from taketo1113/rails-codestatistics
  • 255bf5a Add support for Rails Annotations and CodeStatistics
  • b889a17 Drop support for Ruby 2.7 and Rails 6.1 and below
  • 6e1605b Merge pull request #204 from taketo1113/ci-rails-8.1
  • e02418f Add Rails 8.1 to CI Matrix
  • See full diff in compare view

Updates debug from 1.11.0 to 1.11.1

Release notes

Sourced from debug's releases.

v1.11.1

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.11.0...v1.11.1

Commits
  • bad4d38 v1.11.1
  • 88d762c FileUtils is needed
  • 553373a omit on older version
  • c1c1c8e use Kernel.__callee__
  • 24f95d6 catch up 4.0.0 backtrace change
  • bc97d33 add a test for b path: ...
  • 1139d78 support b path: path_expr
  • 06342cd catch any exception on singletonclass
  • 2791573 fix(DAP): Return unverified breakpoints instead of unsuccessful response
  • 14c8a54 Update imemo_mask to match ruby's
  • See full diff in compare view

Updates dotenv-rails from 3.1.8 to 3.2.0

Release notes

Sourced from dotenv-rails's releases.

v3.2.0

What's Changed

New Contributors

Full Changelog: bkeepers/dotenv@v3.1.8...v3.2.0

Commits
  • 34156bf Prepare for 3.2.0 release
  • ab47820 Merge pull request #531 from grosser/grosser/warn
  • fae6120 Merge branch 'main' into grosser/warn
  • 4f510f4 Merge pull request #532 from grosser/grosser/fixes
  • 959e1da Merge pull request #539 from bkeepers/dependabot/github_actions/actions/check...
  • 041451e Update spec message
  • b300f26 Bump actions/checkout from 4 to 6
  • 5f4ca01 Merge branch 'main' into grosser/warn
  • 209dca4 Merge pull request #540 from i7an/handle-parentheses
  • 48c4956 Merge branch 'main' into handle-parentheses
  • Additional commits viewable in compare view

Updates rspec-rails from 8.0.1 to 8.0.2

Changelog

Sourced from rspec-rails's changelog.

8.0.2 / 2025-08-12

Full Changelog

Bug Fixes:

Commits
  • c3788c2 v8.0.2
  • ab96e8a Tidy up rack status in spec
  • 2d5eaea Fix deprecation warning for :unprocessable_entity in scaffold-generated tests...
  • See full diff in compare view

Updates factory_bot_rails from 6.5.0 to 6.5.1

Release notes

Sourced from factory_bot_rails's releases.

v6.5.1

What's Changed

New Contributors

Full Changelog: thoughtbot/factory_bot_rails@v6.5.0...v6.5.1

Changelog

Sourced from factory_bot_rails's changelog.

6.5.1 (September 5, 2025)

  • Add: Add AuthenticationGenerator for users factory creation (Rodrigo Toledo)
  • Changed: Update required_ruby_version to require >= Ruby 3.1 (y-yagi)
  • Internal: Fix Cucumber tests (Neil Carvalho)
Commits

Updates brakeman from 7.0.2 to 8.0.1

Release notes

Sourced from brakeman's releases.

8.0.1

  • Fix for disappearing cursor when no warnings are reported

8.0.0

  • Complete revamp of scan progress output and logging
  • --skip-libs removed (#1839
  • --index-libs removed
  • Fix qualified constant lookup to respect module/class context (Mike Dalessio)
  • Fix singleton method prefixes (viralpraxis)
  • Faster file globbing for templates (Mikael Henriksson)
  • No longer produce weak dynamic render path warnings
  • Replace Erubis with Erubi (#1970)

7.1.2

This was released on December 25, 2025

  • Update ruby_parser to remove max version restriction (Chedli Bourguiba)
  • Increase minimum Ruby version to 3.2.0
  • Reduce SQL injection false positives from count (and other) calls (

Bumps the rails_default group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [rails](https://github.com/rails/rails) | `7.2.2.1` | `8.1.2` |
| [pg](https://github.com/ged/ruby-pg) | `1.5.9` | `1.6.3` |
| [puma](https://github.com/puma/puma) | `6.6.0` | `7.2.0` |
| [turbo-rails](https://github.com/hotwired/turbo-rails) | `2.0.16` | `2.0.23` |
| [jbuilder](https://github.com/rails/jbuilder) | `2.13.0` | `2.14.1` |
| [bootsnap](https://github.com/rails/bootsnap) | `1.18.6` | `1.22.0` |
| [slim-rails](https://github.com/slim-template/slim-rails) | `3.7.0` | `4.0.0` |
| [debug](https://github.com/ruby/debug) | `1.11.0` | `1.11.1` |
| [dotenv-rails](https://github.com/bkeepers/dotenv) | `3.1.8` | `3.2.0` |
| [rspec-rails](https://github.com/rspec/rspec-rails) | `8.0.1` | `8.0.2` |
| [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails) | `6.5.0` | `6.5.1` |
| [brakeman](https://github.com/presidentbeef/brakeman) | `7.0.2` | `8.0.1` |
| [bundler-audit](https://github.com/rubysec/bundler-audit) | `0.9.2` | `0.9.3` |
| [bullet](https://github.com/flyerhzm/bullet) | `8.0.8` | `8.1.0` |
| [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | `3.6.0` | `3.9.0` |
| [rubocop-rspec_rails](https://github.com/rubocop/rubocop-rspec_rails) | `2.31.0` | `2.32.0` |
| [rubocop-factory_bot](https://github.com/rubocop/rubocop-factory_bot) | `2.27.1` | `2.28.0` |
| [syntax_tree](https://github.com/kddnewton/syntax_tree) | `6.2.0` | `6.3.0` |
| [solargraph](https://github.com/castwide/solargraph) | `0.55.1` | `0.58.2` |
| [slim_lint](https://github.com/sds/slim-lint) | `0.33.0` | `0.34.0` |
| [lefthook](https://github.com/evilmartians/lefthook) | `1.11.14` | `2.0.16` |
| [shoulda-matchers](https://github.com/thoughtbot/shoulda-matchers) | `6.5.0` | `7.0.1` |



Updates `rails` from 7.2.2.1 to 8.1.2
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v7.2.2.1...v8.1.2)

Updates `pg` from 1.5.9 to 1.6.3
- [Changelog](https://github.com/ged/ruby-pg/blob/master/CHANGELOG.md)
- [Commits](ged/ruby-pg@v1.5.9...v1.6.3)

Updates `puma` from 6.6.0 to 7.2.0
- [Release notes](https://github.com/puma/puma/releases)
- [Changelog](https://github.com/puma/puma/blob/main/History.md)
- [Commits](puma/puma@v6.6.0...v7.2.0)

Updates `turbo-rails` from 2.0.16 to 2.0.23
- [Release notes](https://github.com/hotwired/turbo-rails/releases)
- [Commits](hotwired/turbo-rails@v2.0.16...v2.0.23)

Updates `jbuilder` from 2.13.0 to 2.14.1
- [Release notes](https://github.com/rails/jbuilder/releases)
- [Commits](rails/jbuilder@v2.13.0...v2.14.1)

Updates `bootsnap` from 1.18.6 to 1.22.0
- [Release notes](https://github.com/rails/bootsnap/releases)
- [Changelog](https://github.com/rails/bootsnap/blob/main/CHANGELOG.md)
- [Commits](rails/bootsnap@v1.18.6...v1.22.0)

Updates `slim-rails` from 3.7.0 to 4.0.0
- [Release notes](https://github.com/slim-template/slim-rails/releases)
- [Changelog](https://github.com/slim-template/slim-rails/blob/master/CHANGELOG.md)
- [Commits](slim-template/slim-rails@v3.7.0...v4.0.0)

Updates `debug` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.11.0...v1.11.1)

Updates `dotenv-rails` from 3.1.8 to 3.2.0
- [Release notes](https://github.com/bkeepers/dotenv/releases)
- [Changelog](https://github.com/bkeepers/dotenv/blob/main/Changelog.md)
- [Commits](bkeepers/dotenv@v3.1.8...v3.2.0)

Updates `rspec-rails` from 8.0.1 to 8.0.2
- [Changelog](https://github.com/rspec/rspec-rails/blob/main/Changelog.md)
- [Commits](rspec/rspec-rails@v8.0.1...v8.0.2)

Updates `factory_bot_rails` from 6.5.0 to 6.5.1
- [Release notes](https://github.com/thoughtbot/factory_bot_rails/releases)
- [Changelog](https://github.com/thoughtbot/factory_bot_rails/blob/main/NEWS.md)
- [Commits](thoughtbot/factory_bot_rails@v6.5.0...v6.5.1)

Updates `brakeman` from 7.0.2 to 8.0.1
- [Release notes](https://github.com/presidentbeef/brakeman/releases)
- [Changelog](https://github.com/presidentbeef/brakeman/blob/main/CHANGES.md)
- [Commits](presidentbeef/brakeman@v7.0.2...v8.0.1)

Updates `bundler-audit` from 0.9.2 to 0.9.3
- [Release notes](https://github.com/rubysec/bundler-audit/releases)
- [Changelog](https://github.com/rubysec/bundler-audit/blob/master/ChangeLog.md)
- [Commits](rubysec/bundler-audit@v0.9.2...v0.9.3)

Updates `bullet` from 8.0.8 to 8.1.0
- [Changelog](https://github.com/flyerhzm/bullet/blob/main/CHANGELOG.md)
- [Commits](flyerhzm/bullet@8.0.8...8.1.0)

Updates `rubocop-rspec` from 3.6.0 to 3.9.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.6.0...v3.9.0)

Updates `rubocop-rspec_rails` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/rubocop/rubocop-rspec_rails/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec_rails/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec_rails@v2.31.0...v2.32.0)

Updates `rubocop-factory_bot` from 2.27.1 to 2.28.0
- [Release notes](https://github.com/rubocop/rubocop-factory_bot/releases)
- [Changelog](https://github.com/rubocop/rubocop-factory_bot/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-factory_bot@v2.27.1...v2.28.0)

Updates `syntax_tree` from 6.2.0 to 6.3.0
- [Changelog](https://github.com/ruby-syntax-tree/syntax_tree/blob/main/CHANGELOG.md)
- [Commits](ruby-syntax-tree/syntax_tree@v6.2.0...v6.3.0)

Updates `solargraph` from 0.55.1 to 0.58.2
- [Changelog](https://github.com/castwide/solargraph/blob/master/CHANGELOG.md)
- [Commits](castwide/solargraph@v0.55.1...v0.58.2)

Updates `slim_lint` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/sds/slim-lint/releases)
- [Changelog](https://github.com/sds/slim-lint/blob/main/CHANGELOG.md)
- [Commits](sds/slim-lint@v0.33.0...v0.34.0)

Updates `lefthook` from 1.11.14 to 2.0.16
- [Release notes](https://github.com/evilmartians/lefthook/releases)
- [Changelog](https://github.com/evilmartians/lefthook/blob/master/CHANGELOG.md)
- [Commits](evilmartians/lefthook@v1.11.14...v2.0.16)

Updates `shoulda-matchers` from 6.5.0 to 7.0.1
- [Release notes](https://github.com/thoughtbot/shoulda-matchers/releases)
- [Changelog](https://github.com/thoughtbot/shoulda-matchers/blob/main/CHANGELOG.md)
- [Commits](thoughtbot/shoulda-matchers@v6.5.0...v7.0.1)

---
updated-dependencies:
- dependency-name: rails
  dependency-version: 8.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: pg
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: puma
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: turbo-rails
  dependency-version: 2.0.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: jbuilder
  dependency-version: 2.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: bootsnap
  dependency-version: 1.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: slim-rails
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: debug
  dependency-version: 1.11.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: dotenv-rails
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: rspec-rails
  dependency-version: 8.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: factory_bot_rails
  dependency-version: 6.5.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: brakeman
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: bundler-audit
  dependency-version: 0.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: rails_default
- dependency-name: bullet
  dependency-version: 8.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: rubocop-rspec
  dependency-version: 3.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: rubocop-rspec_rails
  dependency-version: 2.32.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: rubocop-factory_bot
  dependency-version: 2.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: syntax_tree
  dependency-version: 6.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: solargraph
  dependency-version: 0.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: slim_lint
  dependency-version: 0.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: rails_default
- dependency-name: lefthook
  dependency-version: 2.0.16
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: rails_default
- dependency-name: shoulda-matchers
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: rails_default
...

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 Feb 3, 2026
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.

0 participants