Update bundler non-major dependencies#1513
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 16, 2026 17:32
b4c87c1 to
26c52e7
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 17, 2026 01:59
26c52e7 to
04aa55d
Compare
renovate
Bot
force-pushed
the
renovate/bundler-minor-patch
branch
from
July 18, 2026 13:04
04aa55d to
24ea12a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.227.0→1.228.0v1.4→v1.51.0.1→1.0.24.2.1→4.3.0Release Notes
aws/aws-sdk-ruby (aws-sdk-s3)
v1.228.0mitlibraries/mitlibraries-theme (mitlibraries-theme)
v1.5: Rails 8.xCompare Source
What's Changed
New Contributors
Full Changelog: MITLibraries/mitlibraries-theme@v1.4...v1.5
simplecov-ruby/simplecov (simplecov)
v1.0.2Compare Source
==================
Bugfixes
simplecovCLI's colorizing subcommands (report,uncovered,coverage,diff) no longer crash withNoMethodError: undefined method 'color'when run in a project without a.simplecovfile. The CLI deliberately loads onlysimplecov/clirather than the full library, soSimpleCov.colorwas undefined unless a dotfile load had incidentally defined it — and--no-colorwas the only workaround, since the documentedNO_COLORenv var was checked after the line that raised.Color.enabled?now treats missing configuration the same as its:autodefault and falls through toNO_COLOR/FORCE_COLOR/ TTY detection. Reported with an exemplary diagnosis by @hasghari. See #1231.Coveragefor a safe-navigation call that takes a block. Forx&.foo { ... }(and the second link of a chain likex&.foo&.bar { ... }) the extractor keyed the branch on the call node's full source range, which extends through the attached block, whileCoverageends the range at the call itself — so a simulated entry merging with a real one produced a phantom, permanently-missed branch, the same failure mode as theelsiffix in 1.0.1. Reported with an exemplary diagnosis and a suggested fix by @alexdeng-mp. See #1233.StaticCoverageExtractoragainst Ruby'sCoverage— a fuzzing harness that runs thousands of generated programs through both and diffs the branch tuples, now part of the spec suite (opt-in viaSIMPLECOV_FUZZ=1) — surfaced and fixed four more mismatches of the same phantom-branch class. Conditions that are compile-time literals (if true,if 1, a ternary on a literal) are folded away by Ruby's compiler and no longer produce synthesized branches (while truestill does — loops are not folded). On Ruby 3.3, three legacy conventions now match: the body range of a do-while (begin ... end while), the location of empty branch arms (which on 3.3 depends on whether the construct is in value or void position), and one-line pattern matching (x => pattern/x in pattern), which emits a:casebranch on 3.3 and nothing on 3.4+. The audit also caught a crash on Ruby 3.3's stdlib Prism (0.19), which still exposes the else clause ofUnlessNode/CaseNode/CaseMatchNodeunder its pre-1.3 nameconsequent: the extractor raised internally and silently dropped simulated branch and method data for any file containingunless/elseor acasewith an empty arm, unless a newer prism gem happened to be installed.define_method/define_singleton_methodblocks defined onto more than one receiver — e.g. a module'sincludedhook defining the same block on every including class. Ruby records one method entry per receiver, all pointing at the same source location, so any receiver whose copy was never called showed as an uncovered method on a line with 100% line coverage. Entries are now aggregated by (name, source location) with hit counts summed, and cross-process merging matches methods on the same source identity rather than on the receiver class. Reported with an exemplary diagnosis by @bkuhlmann. See #1234.enable_coverage :evalno longer inflates denominators or reports phantom missed branches for templates compiled more than once — e.g. hanami-view compiles each template once per view class, and everyERB.new(...).resultis a fresh compile. Ruby'sCoverageemits a fresh set of branch entries per compile of the same file (nondeterministically through Ruby 4.0, consistently on current ruby master — see https://bugs.ruby-lang.org/issues/22203), each counting only the renders that flowed through that compile, so a side exercised under one compile appeared as a permanently-missed branch in another compile's entry at the same location, andignore_branches :implicit_elseswung the report wildly by stripping only the synthetic-else halves of the duplicates. Duplicated conditions are now aggregated by source location with arm counts summed. Reported with an exemplary diagnosis by @bkuhlmann. See #1235.rails/web-console (web-console)
v4.3.0Compare Source
Configuration
📅 Schedule: (UTC)
* 0-4,22-23 * * 1-5)* * * * 0,6)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.