Skip to content

Bump the dependencies group across 1 directory with 3 updates - #123

Merged
cbeer merged 1 commit into
masterfrom
dependabot/bundler/dependencies-fabecc80cd
Aug 3, 2026
Merged

Bump the dependencies group across 1 directory with 3 updates#123
cbeer merged 1 commit into
masterfrom
dependabot/bundler/dependencies-fabecc80cd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 3 updates in the / directory: rails, simplecov and sitemap_generator.

Updates rails from 8.1.3 to 8.1.3.1

Release notes

Sourced from rails's releases.

8.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.

... (truncated)

Commits

Updates simplecov from 1.0.2 to 1.0.3

Release notes

Sourced from simplecov's releases.

v1.0.3

What's Changed

New Contributors

Full Changelog: simplecov-ruby/simplecov@v1.0.2...v1.0.3

Changelog

Sourced from simplecov's changelog.

1.0.3 (2026-07-26)

Bugfixes

  • Generating a report no longer crashes when the coverage universe contains a module that shadows #inspect with an incompatible signature. Rendering a method coverage key's receiver calls to_s, and a singleton class's to_s renders its attached object via #inspect — Liquid's Utils module defines inspect(value, max_depth = 2) as a module_function, so any suite whose report included Liquid's files (typically a vendored bundle under the project root, which is why this surfaced only in CI) raised ArgumentError from the at_exit hook and lost its report. The exposure predates 1.0.2's key normalization, which only moved the call. Rendering now recovers by rebuilding the name from Module#name via bound methods, which user code cannot shadow, falling back to an address form that the existing normalization collapses. The external_at_exit workaround is no longer needed. Reported with an exemplary diagnosis by @​bkuhlmann. See #1236.
  • Method coverage entries are now aggregated by source location alone, completing the aggregation introduced in 1.0.2 (which keyed on name and location). Ruby records one method entry per defined method, so a builder looping container.each_key { |key| define_method(key) { ... } } produces an entry per generated name, all at the block's location — and every name whose generated wrapper no test happened to call showed as an uncovered method on a line with full line and branch coverage. A source location is the unit a file-based report can express, and regular defs map one location to one name, so they are unaffected. The same identity is used when merging resultsets across processes. This also covers methods copied into refinements via import_methods, which Ruby records once per importing refinement at the shared module's original location, so exercising the method through any refinement now marks the shared definition covered and the skip workaround for shared refinement modules can be dropped. Reported with exemplary diagnoses by @​bkuhlmann. See #1234 and #1237.
  • SimpleCov.formatter and SimpleCov.formatters now accept formatter instances in addition to formatter classes, so constructor options can actually be passed — most notably SimpleCov::Formatter::HTMLFormatter.new(silent: true) to suppress the "Coverage report generated" status line. Previously SimpleCov unconditionally called .new on whatever was configured, so passing an instance crashed with NoMethodError at report time. See #1240.

Performance

  • Fix 5x performance regression on report combining (introduced in 1.0.0 as a result of using Ripper#parse in a hot path) by adding parsed key memoisation to RubyDataParser.call.
Commits
  • e9fddf0 Bump version to 1.0.3
  • 1bc8a8c bundle update
  • 0e6eae8 fix: memoise key parsing in RubyDataParser to fix combiner performance regres...
  • 1a8a9ba Accept formatter instances in formatter configuration
  • 3ef1068 Bump ruby/setup-ruby from 1.316.0 to 1.318.0
  • f33a574 Assert engine-independent invariants for receiver name fallbacks
  • 3492da6 Aggregate method coverage by source location alone
  • 2e60550 Survive user code that breaks receiver name rendering
  • See full diff in compare view

Updates sitemap_generator from 7.1.0 to 7.1.1

Changelog

Sourced from sitemap_generator's changelog.

7.1.1

  • Fix: rake sitemap:clean (clean_files) now respects the configured sitemaps_path/public_path and also removes uncompressed .xml sitemaps, instead of only deleting hardcoded public/sitemap*.xml.gz files. #474 #502
  • Fix: SitemapGenerator::Interpreter now respects ActionController::Base.default_url_options, so Rails URL helpers honor globally configured defaults (e.g. :protocol, :port) instead of ignoring them. #355 #507
  • Fix: Non-ASCII characters in URL paths are now percent-encoded in the <loc> element, so generated sitemaps conform to the sitemap protocol. #346 #506
  • Fix: Relative alternate hreflang hrefs (starting with /) are now expanded to absolute URLs using the configured host, producing valid sitemap XML instead of broken relative links. #343 #504
  • Fix: SitemapGenerator.verbose = false is now respected by rake sitemap:refresh and other rake tasks, silencing output as configured. #332 #503
  • Fix: Sitemap file lastmod is now captured at write time rather than read back via File.mtime, fixing incorrect timestamps and improving compatibility with time-freezing test helpers. #508
  • Fix: URL lastmod now defaults to Time.zone.now under Rails (falling back to Time.now otherwise), so the configured Rails timezone and time-freezing helpers like travel_to are respected instead of always using system local time. #422 #505
  • Internal: Enable RuboCop on the spec suite (previously fully excluded), fix real bugs the linting surfaced along the way (always-passing tests with no assertions, a latent NameError, broken path comparisons), and resolve all temporary RuboCop spec-suite exclusions. #510 #511 #512 #513 #514
Commits
  • ce2c377 chore(release): prepare 7.1.1 (#515)
  • 209416c test: resolve the last RuboCop relaxations across the spec suite (#514)
  • dcc4421 fix(specs): resolve RSpec/SubjectStub, RSpec/InstanceVariable, and RSpec/Stub...
  • 3c24c29 test(specs): resolve the second batch of RuboCop spec-suite exclusions (#512)
  • 14d5e03 test(specs): resolve the first batch of RuboCop spec-suite exclusions (#511)
  • a8e0129 chore(specs): enable RuboCop to catch broken and silently-passing tests (#510)
  • 12d81b6 fix: use timezone-aware current time for default lastmod (#505)
  • b7bcd69 fix: capture write time in SitemapFile to support frozen time in tests (#508)
  • 254a9f4 fix: respect SitemapGenerator.verbose in rake tasks (#503)
  • 4f63b24 fix: prepend host to relative alternate hrefs (#504)
  • 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 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 3 updates in the / directory: [rails](https://github.com/rails/rails), [simplecov](https://github.com/simplecov-ruby/simplecov) and [sitemap_generator](https://github.com/kjvarga/sitemap_generator).


Updates `rails` from 8.1.3 to 8.1.3.1
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v8.1.3...v8.1.3.1)

Updates `simplecov` from 1.0.2 to 1.0.3
- [Release notes](https://github.com/simplecov-ruby/simplecov/releases)
- [Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md)
- [Commits](simplecov-ruby/simplecov@v1.0.2...v1.0.3)

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

---
updated-dependencies:
- dependency-name: rails
  dependency-version: 8.1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: simplecov
  dependency-version: 1.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sitemap_generator
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Aug 3, 2026
@cbeer
cbeer merged commit f8dc27a into master Aug 3, 2026
1 check failed
@dependabot
dependabot Bot deleted the dependabot/bundler/dependencies-fabecc80cd branch August 3, 2026 14:59
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