Skip to content

chore(deps): bump the ruby-deps group across 1 directory with 6 updates#2712

Merged
mroderick merged 1 commit into
masterfrom
dependabot/bundler/ruby-deps-83e19c7cd1
Jul 16, 2026
Merged

chore(deps): bump the ruby-deps group across 1 directory with 6 updates#2712
mroderick merged 1 commit into
masterfrom
dependabot/bundler/ruby-deps-83e19c7cd1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the ruby-deps group with 6 updates in the / directory:

Package From To
terser 1.2.7 1.2.8
commonmarker 2.8.2 2.8.3
haml_lint 0.74.0 0.75.0
rubocop 1.88.1 1.88.2
capybara-playwright-driver 0.5.9 0.5.10
sitemap_generator 7.0.2 7.1.0

Updates terser from 1.2.7 to 1.2.8

Changelog

Sourced from terser's changelog.

1.2.8 (08 July 2026)

  • update TerserJS to [5.49.0]
Commits

Updates commonmarker from 2.8.2 to 2.8.3

Release notes

Sourced from commonmarker's releases.

v2.8.3

What's Changed

Full Changelog: gjtorikian/commonmarker@v2.8.2...v2.8.3

Changelog

Sourced from commonmarker's changelog.

[v2.8.3] - 03-07-2026

What's Changed

Full Changelog: gjtorikian/commonmarker@v2.8.2...v2.8.3

Commits
  • 4a0d40c Merge pull request #469 from gjtorikian/release/v2.8.3
  • 3d270c6 [skip test] update changelog
  • 0ed3ed1 Merge pull request #468 from gjtorikian/windows-syntect-fix
  • b1d91cb gem bump to 2.8.3
  • 53335a1 Trigger Build
  • 9d2cb06 Trigger Build
  • 95c5458 fix: switch Windows builds to a different regex engine
  • b50d6b6 Merge pull request #466 from gjtorikian/dependabot/github_actions/actions/cac...
  • d95912e Bump actions/cache from 5 to 6
  • 517a4c0 Merge pull request #464 from gjtorikian/dependabot/github_actions/actions/che...
  • Additional commits viewable in compare view

Updates haml_lint from 0.74.0 to 0.75.0

Release notes

Sourced from haml_lint's releases.

0.75.0

What's Changed

Full Changelog: sds/haml-lint@v0.74.0...v0.75.0

Changelog

Sourced from haml_lint's changelog.

0.75.0

  • Fix performance regression when using --parallel flag
Commits

Updates rubocop from 1.88.1 to 1.88.2

Release notes

Sourced from rubocop's releases.

RuboCop v1.88.2

Bug fixes

  • #15417: Fix a false negative for Lint/ToJSON, which did not flag singleton def self.to_json definitions. (@​bbatsov)
  • #15418: Fix a false negative for Lint/UnreachableCode, which only flagged the first statement after a flow-of-control statement instead of every unreachable statement that followed it. (@​bbatsov)
  • #15416: Fix a false negative for Lint/UselessNumericOperation, which only flagged bare method-call receivers and ignored local variables, instance/class/global variables, and constants (e.g. @x + 0, CONST * 1). (@​bbatsov)
  • #15419: Fix a false negative for Lint/Void where safe-navigation calls to nonmutating methods (e.g. x&.sort) were not flagged when CheckForMethodsWithNoSideEffects is enabled. (@​bbatsov)
  • #15421: Fix a false negative for Style/ArrayIntersect with the block form using include? (e.g. array1.any? { |e| array2.include?(e) }), which was only detected for member?. (@​bbatsov)
  • #15420: Fix a false negative for Style/CollectionCompact, which did not flag grep_v(nil)/grep_v(NilClass) on a safe-navigation call (e.g. array&.grep_v(nil)). (@​bbatsov)
  • #15422: Fix a false negative for Style/DefWithParentheses with a single-line definition whose body follows a semicolon (e.g. def foo(); end), where the parentheses can be safely omitted. (@​bbatsov)
  • #15388: Fix a false negative for Style/MixinUsage when including multiple modules in one statement. (@​bbatsov)
  • #15388: Fix a false negative for Style/ModuleFunction when the module body is a single statement. (@​bbatsov)
  • #15388: Fix a false negative for Style/RedundantCurrentDirectoryInPath with double-quoted strings containing interpolation. (@​bbatsov)
  • #15395: Fix a false negative for Style/RedundantHeredocDelimiterQuotes with double-quoted delimiters whose body contains interpolation or escapes. (@​bbatsov)
  • #15409: Fix a false positive for Gemspec/DuplicatedAssignment with multiple specifications. (@​bbatsov)
  • #15403: Fix a false positive for Layout/CommentIndentation with a comment above an inline access modifier (e.g. private def foo) when Layout/AccessModifierIndentation is configured with EnforcedStyle: outdent. (@​grk)
  • #15372: Fix a false positive for Style/InvertibleUnlessCondition with a multi-statement begin condition. (@​bbatsov)
  • #15360: Fix an incorrect autocorrect for Style/ArgumentsForwarding and Style/MethodDefParentheses when autocorrection conflicts while adding parentheses to method definition arguments. (@​koic)
  • #15417: Fix an incorrect autocorrect for Lint/ToJSON that produced invalid Ruby (def to_json(*_args)()) when the method had explicit empty parentheses. (@​bbatsov)
  • #15426: Fix an incorrect autocorrect for Style/MethodCallWithoutArgsParentheses when empty parentheses span multiple lines and the method call has a block. (@​koic)
  • #15328: Fix a false positive for Style/HashConversion with a splat argument, which previously produced an invalid hash literal. (@​bbatsov)
  • #15338: Fix a false positive for Style/HashLookupMethod with safe navigation, where the suggested bracket form would be the unreadable hash&.[](https://github.com/rubocop/rubocop/blob/HEAD/key). (@​bbatsov)
  • #15397: Fix an incorrect autocorrect for Style/IdenticalConditionalBranches that hoisted the moved expression to column zero instead of matching the surrounding indentation. (@​bbatsov)
  • #15372: Fix an incorrect autocorrect for Style/InvertibleUnlessCondition with mixed &&/|| conditions, which lost the required parentheses when inverting. (@​bbatsov)
  • #15428: Fix an incorrect autocorrect for Style/TrivialAccessors when AllowPredicates: false is set and a trivial reader is defined as a predicate class method. (@​koic)
  • #15402: Fix an infinite loop and file corruption for Layout/LineLength with SplitStrings when an over-long string is indented under a multi-line parent. (@​bbatsov)
  • #15384: Fix a false positive and a false negative for Style/MissingRespondToMissing when method_missing is defined at the top level or alongside sibling classes. (@​bbatsov)
  • #15432: Fix false positives in Layout/ElseAlignment when using else within a block that is part of a larger expression. (@​koic)
  • #15423: Fix false positives in Layout/MultilineMethodCallIndentation when a method chain is nested inside a parenthesized argument list or a grouped expression within a hash pair value. (@​koic)
  • #15424: Fix Style/StructInheritance autocorrect dropping leading indentation when class is inside a module or namespace. (@​amckinnie)
  • #15325: Fix Style/DocumentationMethod ignoring AllowedMethods for inline modifier defs. (@​bbatsov)
  • #15369: Fix a false positive for Style/LambdaCall when the argument list contains a comment, which the autocorrect would have dropped. (@​bbatsov)

Changes

  • #15430: Improve performance of offense reporting by not allocating a new source range per offense outside of embedded sources. (@​bbatsov)
  • #15430: Improve investigation performance by dispatching on_new_investigation, on_investigation_end, and on_other_file only to cops that refine them, and by skipping after_* dispatch when no cop needs it. (@​bbatsov)
  • #15430: Improve performance of the per-file cop relevancy check by skipping gem requirement evaluation for cops without gem requirements. (@​bbatsov)
  • #15430: Improve Lint/Debugger performance on code without debugger calls. (@​bbatsov)
  • #15430: Improve autocorrection performance by keeping corrections in memory across inspection iterations and writing each corrected file only once. (@​bbatsov)
  • #15415: Mark Lint/NumericOperationWithConstantResult autocorrect as unsafe because it drops the operands, discarding their side effects and silencing cases where the result is not actually constant (e.g. x / x raises when x is 0). (@​bbatsov)
  • #15430: Improve performance of cops using AllowedPatterns, ForbiddenPatterns, and AllowedMethods by compiling the configured patterns only once. (@​bbatsov)
  • #15430: Improve performance of Style/IfUnlessModifier and other modifier cops on files with many comments or conditionals. (@​bbatsov)
Changelog

Sourced from rubocop's changelog.

1.88.2 (2026-07-08)

Bug fixes

  • #15417: Fix a false negative for Lint/ToJSON, which did not flag singleton def self.to_json definitions. ([@​bbatsov][])
  • #15418: Fix a false negative for Lint/UnreachableCode, which only flagged the first statement after a flow-of-control statement instead of every unreachable statement that followed it. ([@​bbatsov][])
  • #15416: Fix a false negative for Lint/UselessNumericOperation, which only flagged bare method-call receivers and ignored local variables, instance/class/global variables, and constants (e.g. @x + 0, CONST * 1). ([@​bbatsov][])
  • #15419: Fix a false negative for Lint/Void where safe-navigation calls to nonmutating methods (e.g. x&.sort) were not flagged when CheckForMethodsWithNoSideEffects is enabled. ([@​bbatsov][])
  • #15421: Fix a false negative for Style/ArrayIntersect with the block form using include? (e.g. array1.any? { |e| array2.include?(e) }), which was only detected for member?. ([@​bbatsov][])
  • #15420: Fix a false negative for Style/CollectionCompact, which did not flag grep_v(nil)/grep_v(NilClass) on a safe-navigation call (e.g. array&.grep_v(nil)). ([@​bbatsov][])
  • #15422: Fix a false negative for Style/DefWithParentheses with a single-line definition whose body follows a semicolon (e.g. def foo(); end), where the parentheses can be safely omitted. ([@​bbatsov][])
  • #15388: Fix a false negative for Style/MixinUsage when including multiple modules in one statement. ([@​bbatsov][])
  • #15388: Fix a false negative for Style/ModuleFunction when the module body is a single statement. ([@​bbatsov][])
  • #15388: Fix a false negative for Style/RedundantCurrentDirectoryInPath with double-quoted strings containing interpolation. ([@​bbatsov][])
  • #15395: Fix a false negative for Style/RedundantHeredocDelimiterQuotes with double-quoted delimiters whose body contains interpolation or escapes. ([@​bbatsov][])
  • #15409: Fix a false positive for Gemspec/DuplicatedAssignment with multiple specifications. ([@​bbatsov][])
  • #15403: Fix a false positive for Layout/CommentIndentation with a comment above an inline access modifier (e.g. private def foo) when Layout/AccessModifierIndentation is configured with EnforcedStyle: outdent. ([@​grk][])
  • #15372: Fix a false positive for Style/InvertibleUnlessCondition with a multi-statement begin condition. ([@​bbatsov][])
  • #15360: Fix an incorrect autocorrect for Style/ArgumentsForwarding and Style/MethodDefParentheses when autocorrection conflicts while adding parentheses to method definition arguments. ([@​koic][])
  • #15417: Fix an incorrect autocorrect for Lint/ToJSON that produced invalid Ruby (def to_json(*_args)()) when the method had explicit empty parentheses. ([@​bbatsov][])
  • #15426: Fix an incorrect autocorrect for Style/MethodCallWithoutArgsParentheses when empty parentheses span multiple lines and the method call has a block. ([@​koic][])
  • #15328: Fix a false positive for Style/HashConversion with a splat argument, which previously produced an invalid hash literal. ([@​bbatsov][])
  • #15338: Fix a false positive for Style/HashLookupMethod with safe navigation, where the suggested bracket form would be the unreadable hash&.[](https://github.com/rubocop/rubocop/blob/master/key). ([@​bbatsov][])
  • #15397: Fix an incorrect autocorrect for Style/IdenticalConditionalBranches that hoisted the moved expression to column zero instead of matching the surrounding indentation. ([@​bbatsov][])
  • #15372: Fix an incorrect autocorrect for Style/InvertibleUnlessCondition with mixed &&/|| conditions, which lost the required parentheses when inverting. ([@​bbatsov][])
  • #15428: Fix an incorrect autocorrect for Style/TrivialAccessors when AllowPredicates: false is set and a trivial reader is defined as a predicate class method. ([@​koic][])
  • #15402: Fix an infinite loop and file corruption for Layout/LineLength with SplitStrings when an over-long string is indented under a multi-line parent. ([@​bbatsov][])
  • #15384: Fix a false positive and a false negative for Style/MissingRespondToMissing when method_missing is defined at the top level or alongside sibling classes. ([@​bbatsov][])
  • #15432: Fix false positives in Layout/ElseAlignment when using else within a block that is part of a larger expression. ([@​koic][])
  • #15423: Fix false positives in Layout/MultilineMethodCallIndentation when a method chain is nested inside a parenthesized argument list or a grouped expression within a hash pair value. ([@​koic][])
  • #15424: Fix Style/StructInheritance autocorrect dropping leading indentation when class is inside a module or namespace. ([@​amckinnie][])
  • #15325: Fix Style/DocumentationMethod ignoring AllowedMethods for inline modifier defs. ([@​bbatsov][])
  • #15369: Fix a false positive for Style/LambdaCall when the argument list contains a comment, which the autocorrect would have dropped. ([@​bbatsov][])

Changes

  • #15430: Improve performance of offense reporting by not allocating a new source range per offense outside of embedded sources. ([@​bbatsov][])
  • #15430: Improve investigation performance by dispatching on_new_investigation, on_investigation_end, and on_other_file only to cops that refine them, and by skipping after_* dispatch when no cop needs it. ([@​bbatsov][])
  • #15430: Improve performance of the per-file cop relevancy check by skipping gem requirement evaluation for cops without gem requirements. ([@​bbatsov][])
  • #15430: Improve Lint/Debugger performance on code without debugger calls. ([@​bbatsov][])
  • #15430: Improve autocorrection performance by keeping corrections in memory across inspection iterations and writing each corrected file only once. ([@​bbatsov][])
  • #15415: Mark Lint/NumericOperationWithConstantResult autocorrect as unsafe because it drops the operands, discarding their side effects and silencing cases where the result is not actually constant (e.g. x / x raises when x is 0). ([@​bbatsov][])
  • #15430: Improve performance of cops using AllowedPatterns, ForbiddenPatterns, and AllowedMethods by compiling the configured patterns only once. ([@​bbatsov][])
  • #15430: Improve performance of Style/IfUnlessModifier and other modifier cops on files with many comments or conditionals. ([@​bbatsov][])
Commits
  • ceb6377 Cut 1.88.2
  • ee87be8 Update Changelog
  • e161fe6 Keep autocorrections in memory during the inspection loop
  • c8e0c83 Speed up Style/IfUnlessModifier eligibility checks
  • ef10f8a Dispatch investigation callbacks only to cops that refine them
  • 4de41ea Avoid allocating a Range per offense in the common case
  • be1bb58 Fast-path the gem requirements check in cop relevancy
  • 278525b Memoize compiled regexps in pattern mixins
  • 28b6cd6 Improve Lint/Debugger performance on non-debugger code
  • 1066e7b Merge pull request #15434 from koic/fix_else_alignment_for_block_in_expression
  • Additional commits viewable in compare view

Updates capybara-playwright-driver from 0.5.9 to 0.5.10

Commits
  • 3c543b7 0.5.10
  • 98c9952 Merge pull request #148 from YusukeIwaki/codex/simplify-compatibility-specs
  • 5a7332a Use DRIVER for compatibility workflow
  • 35f4a99 Simplify compatibility specs
  • 45c8080 Merge pull request #147 from YusukeIwaki/codex/fix-node-set-tab-compatibility
  • 455b70f Fix Node#set tab key compatibility
  • 0ad07e7 Merge pull request #146 from YusukeIwaki/codex/selenium-window-size
  • 14d8123 Align window size with Selenium
  • 5a40db0 Merge pull request #145 from YusukeIwaki/fix-98
  • 0270756 Keep contenteditable branch in set_text
  • Additional commits viewable in compare view

Updates sitemap_generator from 7.0.2 to 7.1.0

Changelog

Sourced from sitemap_generator's changelog.

7.1.0

  • Breaking: SitemapGenerator::FileAdapter#plain has been removed. It was an internal helper inlined into #write to fix a file descriptor leak; any code calling it directly should call #write instead. #492
  • Breaking: SitemapGenerator::FileAdapter#gzip is now private. It was always an implementation detail; external callers should not need to invoke it directly. #492
  • Fix: AwsSdkAdapter and S3Adapter now derive the Content-Type header from the file extension (.xmlapplication/xml, .xml.gzapplication/x-gzip) via the new SitemapLocation#content_type helper, rather than always sending application/x-gzip. #329 #338 #495
  • Docs: Replace broken links in README and CHANGES.md; add deprecation notices for mobile sitemaps (deprecated by Google in August 2022) and geo sitemaps (retired by Google in February 2012). #497
  • Internal: enforce RuboCop across all source files, resolve all pre-existing offenses, add RuboCop and mdl (Markdown) linting to GitHub Actions CI, and add pre-commit git hooks that lint staged Ruby and Markdown files locally. #487 #492 #493 #494 #500

7.0.3

  • Regression fix: Revert railtie enhancements (#478) that were unintentionally included in 7.0.2. Those changes introduced an ArgumentError: Missing host to link to! during assets:precompile and other Rails boot contexts where no host is configured (reported in #488). The railtie is restored to its 7.0.1 behaviour: it loads rake tasks only. The enhancements will return in a future release with proper documentation and test coverage. #489
  • Bugfix: Restore sitemap generation on Ruby 2.x when --enable=frozen-string-literal is set globally. Ruby 2.6/2.7 freezes interpolated heredocs under that flag, causing gsub! to raise FrozenError. #486
  • Internal: skip duplicate git tag creation in the release task if the tag already points at HEAD.
Commits
  • b5e55bf chore: release 7.1.0 (#501)
  • 5ae58ad chore: configure Copilot review behaviour and update test naming conventions ...
  • 601477a fix: derive content-type from file extension in AwsSdkAdapter (#495)
  • 293c38f fix: replace dead links across README and docs (#497)
  • e56738d chore: add mdl markdown linter and fix all violations (#494)
  • e118f02 ci: add RuboCop job to GitHub Actions (#493)
  • de3726d chore: resolve all remaining RuboCop offenses (124 → 0) (#492)
  • ca16506 fix: use explicit 'bundle install --local' in build task (#491)
  • dbf1f5f chore: bring all source files up to date with RuboCop rules (#487)
  • 6bcc2ec docs: add Claude Code documentation suite (#485)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies ruby Pull requests that update Ruby code labels Jul 16, 2026
Bumps the ruby-deps group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [terser](https://github.com/ahorek/terser-ruby) | `1.2.7` | `1.2.8` |
| [commonmarker](https://github.com/gjtorikian/commonmarker) | `2.8.2` | `2.8.3` |
| [haml_lint](https://github.com/sds/haml-lint) | `0.74.0` | `0.75.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.88.1` | `1.88.2` |
| [capybara-playwright-driver](https://github.com/YusukeIwaki/capybara-playwright-driver) | `0.5.9` | `0.5.10` |
| [sitemap_generator](https://github.com/kjvarga/sitemap_generator) | `7.0.2` | `7.1.0` |



Updates `terser` from 1.2.7 to 1.2.8
- [Release notes](https://github.com/ahorek/terser-ruby/releases)
- [Changelog](https://github.com/ahorek/terser-ruby/blob/master/CHANGELOG.md)
- [Commits](ahorek/terser-ruby@1.2.7...1.2.8)

Updates `commonmarker` from 2.8.2 to 2.8.3
- [Release notes](https://github.com/gjtorikian/commonmarker/releases)
- [Changelog](https://github.com/gjtorikian/commonmarker/blob/main/CHANGELOG.md)
- [Commits](gjtorikian/commonmarker@v2.8.2...v2.8.3)

Updates `haml_lint` from 0.74.0 to 0.75.0
- [Release notes](https://github.com/sds/haml-lint/releases)
- [Changelog](https://github.com/sds/haml-lint/blob/main/CHANGELOG.md)
- [Commits](sds/haml-lint@v0.74.0...v0.75.0)

Updates `rubocop` from 1.88.1 to 1.88.2
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.88.1...v1.88.2)

Updates `capybara-playwright-driver` from 0.5.9 to 0.5.10
- [Commits](YusukeIwaki/capybara-playwright-driver@0.5.9...0.5.10)

Updates `sitemap_generator` from 7.0.2 to 7.1.0
- [Changelog](https://github.com/kjvarga/sitemap_generator/blob/master/CHANGES.md)
- [Commits](kjvarga/sitemap_generator@v7.0.2...v7.1.0)

---
updated-dependencies:
- dependency-name: capybara-playwright-driver
  dependency-version: 0.5.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: commonmarker
  dependency-version: 2.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: haml_lint
  dependency-version: 0.75.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: rubocop
  dependency-version: 1.88.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
- dependency-name: sitemap_generator
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ruby-deps
- dependency-name: terser
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ruby-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the ruby-deps group with 6 updates chore(deps): bump the ruby-deps group across 1 directory with 6 updates Jul 16, 2026
@dependabot
dependabot Bot force-pushed the dependabot/bundler/ruby-deps-83e19c7cd1 branch from 2a71771 to d5d596e Compare July 16, 2026 07:09
@mroderick

Copy link
Copy Markdown
Collaborator

Dependency Upgrade Review: ruby-deps group (6 updates)

PR Scope

Dependency-only — only Gemfile and Gemfile.lock changed.

Changes Summary

Package From To Risk What Changed
terser 1.2.7 1.2.8 Low Bumps TerserJS to 5.49.0
commonmarker 2.8.2 2.8.3 Low Windows regex engine fix
haml_lint 0.74.0 0.75.0 Low Fixes --parallel perf regression
rubocop 1.88.1 1.88.2 Low Bug fixes + perf improvements
capybara-playwright-driver 0.5.9 0.5.10 Low Tab key fix, window size alignment
sitemap_generator 7.0.2 7.1.0 Low Minor with 2 breaking changes (internal APIs only)

Usage in Repository

  • terser — configured as config.assets.js_compressor = :terser in config/environments/production.rb. Rails asset pipeline integration, no API surface change.
  • commonmarkerrequire 'commonmarker' in initializer, used for Markdown rendering in helpers. Windows-only regex engine fix in new version.
  • haml_lint — dev tool configured in .haml-lint.yml. Fixes a performance regression in --parallel mode.
  • rubocop — dev tool configured in .rubocop.yml. Patch bump with bug fixes and performance improvements only.
  • capybara-playwright-driver — test driver configured in spec/support/capybara.rb. Fixes tab key compatibility and window size alignment with Selenium.
  • sitemap_generator — used via config/sitemap.rb with the standard SitemapGenerator::Sitemap.create DSL. The 2 breaking changes (FileAdapter#plain removed, FileAdapter#gzip made private) affect internal API methods the codebase doesn't call.

Compatibility Assessment

Compatible — none of the 6 dependencies have breaking changes affecting the public API surface used by this codebase.

Confidence Rating

High — all changes are backward-compatible for the specific APIs this codebase uses.

@mroderick mroderick left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved. See analysis comment above.

@mroderick
mroderick merged commit e91b5d5 into master Jul 16, 2026
9 checks passed
@mroderick
mroderick deleted the dependabot/bundler/ruby-deps-83e19c7cd1 branch July 16, 2026 08:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant