Skip to content

chore(deps): update all non-major dependencies#62

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#62
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Aug 22, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
pry-byebug (changelog) 3.9.03.12.0 age confidence minor
rake (changelog) '~> 13.3.0''~> 13.4.0' age confidence minor
rubocop (source, changelog) '~> 1.79.0''~> 1.88.0' age confidence minor
ruby (source) 3.4.53.4.10 age confidence patch
styfle/cancel-workflow-action 0.12.10.13.1 age confidence action minor

Release Notes

deivid-rodriguez/pry-byebug (pry-byebug)

v3.12.0

Compare Source

Added
Removed
  • Support for Ruby 3.1. Pry-byebug no longer installs on these platforms (#​467).

v3.11.0

Compare Source

Added
  • Byebug 12 compatibility, with Ruby 3.1, 3.2, and 3.3 support (#​434).
  • Support for pry 0.15 (#​428).
Removed
  • Support for Ruby 2.7, and 3.0. Pry-byebug no longer installs on these platforms (#​433).

v3.10.1

Compare Source

Fixed
  • Rails console loading a debugger REPL instead of the standard Pry REPL (#​392)

v3.10.0

Compare Source

Added
  • Support for pry 0.14 (#​346, #​386). NOTE: pry-byebug now needs to be explicitly required from ~/.pryrc since plugin autoloading has been removed from Pry.
Removed
  • Support for Ruby 2.4, 2.5, and 2.6. Pry-byebug no longer installs on these platforms (#​380).
ruby/rake (rake)

v13.4.2

Compare Source

What's Changed

Full Changelog: ruby/rake@v13.4.1...v13.4.2

v13.4.1

Compare Source

What's Changed

Full Changelog: ruby/rake@v13.4.0...v13.4.1

v13.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/rake@v13.3.1...v13.4.0

v13.3.1

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/rake@v13.3.0...v13.3.1

v13.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/rake@v13.2.1...v13.3.0

v13.2.1

Compare Source

What's Changed

Full Changelog: ruby/rake@v13.2.0...v13.2.1

v13.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/rake@v13.1.0...v13.2.0

v13.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: ruby/rake@v13.0.6...v13.1.0

rubocop/rubocop (rubocop)

v1.88.1

Compare Source

Bug fixes
  • #​15408: Fix a crash for Bundler/GemComment with a non-literal gem option key. ([@​bbatsov][])
  • #​9571: Fix a crash for Layout/ClassStructure when a class body is a single safe-navigation call (e.g. test&.private_methods(def foo; end)). ([@​bbatsov][])
  • #​15413: Fix a crash for Gemspec/DevelopmentDependencies when AllowedGems is nil. ([@​bbatsov][])
  • #​15404: Fix a crash for Metrics/MethodLength with an anonymous define_method. ([@​bbatsov][])
  • #​15414: Fix a crash for Naming/InclusiveLanguage with nil or empty FlaggedTerms. ([@​bbatsov][])
  • #​15405: Fix a crash for Security/IoMethods with a non-string-literal argument. ([@​bbatsov][])
  • #​15330: Fix a crash for Style/EmptyStringInsideInterpolation with a modifier conditional. ([@​bbatsov][])
  • #​15351: Fix a crash for Style/OpenStructUse with a bare OpenStruct root node. ([@​bbatsov][])
  • #​15379: Fix a crash for Style/TrailingUnderscoreVariable when a nested destructuring group consists only of underscore variables. ([@​bbatsov][])
  • #​15412: Fix a false negative for Security/MarshalLoad with a proc argument. ([@​bbatsov][])
  • #​15386: Fix a false negative for Style/MethodDefParentheses with named rest arguments under EnforcedStyle: require_no_parentheses. ([@​bbatsov][])
  • #​15396: Fix a false negative for Style/MultilineMethodSignature where a signature that fits on one line was skipped because the multi-line source length was measured instead of the collapsed width. ([@​bbatsov][])
  • #​15386: Fix a false negative for Style/OptionalArguments with singleton methods. ([@​bbatsov][])
  • #​15383: Fix a false negative for Style/RedundantFilterChain with numbered-parameter blocks. ([@​bbatsov][])
  • #​15290: Fix a false negative for Lint/ToEnumArguments when a braced hash is passed to keyword parameters (e.g. to_enum(:m, { required: required })), which raises ArgumentError when the enumerator is used. ([@​RedZapdos123][])
  • #​11956: Fix a false positive for Naming/FileName when a class or module name contains multiple consecutive AllowedAcronyms. ([@​camallen][])
  • #​15324: Fix a false positive for Style/DirEmpty with a block. ([@​bbatsov][])
  • #​15326: Fix a false positive for Style/EmptyLiteral with numbered and it block parameters. ([@​bbatsov][])
  • #​15335: Fix a false positive for Style/EnvHome. ([@​bbatsov][])
  • #​15345: Fix a false positive for Style/InlineComment with rubocop:todo directives. ([@​bbatsov][])
  • #​15348: Fix a false positive for Style/MultilineIfThen. ([@​bbatsov][])
  • #​15383: Fix a false positive for Style/NumericPredicate when an allowed method encloses a numbered-parameter or it block. ([@​bbatsov][])
  • #​15389: Fix a false positive for Style/OptionHash when the options hash is forwarded with an explicit super. ([@​bbatsov][])
  • #​15350: Fix a false positive for Style/RedundantFormat with a lone format sequence. ([@​bbatsov][])
  • #​15374: Fix a false positive for Style/RedundantSelf with a rescue exception variable. ([@​bbatsov][])
  • #​15376: Fix a false positive for Style/Semicolon with a semicolon inside a string literal. ([@​bbatsov][])
  • #​15398: Fix an incorrect autocorrect for Layout/ConditionPosition that dropped a body statement sharing the condition's line via a semicolon. ([@​bbatsov][])
  • #​15399: Fix an incorrect autocorrect for Layout/EmptyComment that deleted a heredoc when removing an empty comment trailing its opener. ([@​bbatsov][])
  • #​15400: Fix an incorrect autocorrect for Layout/EmptyLineBetweenDefs that inserted a blank line inside a heredoc body when an endless method's body was a heredoc. ([@​bbatsov][])
  • #​15401: Fix an incorrect autocorrect for Layout/SpaceAroundOperators that turned **= and /= compound assignments into **//, dropping the assignment. ([@​bbatsov][])
  • #​15406: Fix an incorrect autocorrect for Naming/MemoizedInstanceVariableName. ([@​bbatsov][])
  • #​15411: Fix an incorrect autocorrect for Naming/RescuedExceptionsVariableName. ([@​bbatsov][])
  • #​15319: Fix an incorrect autocorrect for Style/DataInheritance with a brace block. ([@​bbatsov][])
  • #​15323: Fix an incorrect autocorrect for Style/EmptyCaseCondition as a yield/super argument. ([@​bbatsov][])
  • #​15323: Fix an incorrect autocorrect for Style/EmptyCaseCondition with low-precedence when values. ([@​bbatsov][])
  • #​15322: Fix an incorrect autocorrect for Style/EmptyClassDefinition with a namespaced constant. ([@​bbatsov][])
  • #​15336: Fix an incorrect autocorrect for Style/EmptyHeredoc. ([@​bbatsov][])
  • #​15332: Fix an incorrect autocorrect for Style/EvenOdd. ([@​bbatsov][])
  • #​15329: Fix an incorrect autocorrect for Style/ExactRegexpMatch with a single quote. ([@​bbatsov][])
  • #​15333: Fix an incorrect autocorrect for Style/FileNull. ([@​bbatsov][])
  • #​15334: Fix an incorrect autocorrect for Style/For. ([@​bbatsov][])
  • #​15331: Fix an incorrect autocorrect for Style/FormatString with a low-precedence argument. ([@​bbatsov][])
  • #​15331: Fix an incorrect autocorrect for Style/FormatString with a splat argument. ([@​bbatsov][])
  • #​15337: Fix an incorrect autocorrect for Style/HashSlice. ([@​bbatsov][])
  • #​15327: Fix an incorrect autocorrect for Style/HashSyntax with a multi-pair braceless return. ([@​bbatsov][])
  • #​15368: Fix an incorrect autocorrect for Style/IfWithSemicolon that changed semantics when the condition was an assignment, by parenthesizing it in the resulting ternary. ([@​bbatsov][])
  • #​15340: Fix an incorrect autocorrect for Style/KeywordArgumentsMerging with a block-pass argument. ([@​bbatsov][])
  • #​15387: Fix an incorrect autocorrect for Style/KeywordParametersOrder that inserted a spurious blank line when a keyword optional parameter already trailed the parameters list. ([@​bbatsov][])
  • #​15341: Fix an incorrect autocorrect for Style/MapIntoArray with a block-pass argument. ([@​bbatsov][])
  • #​15342: Fix an incorrect autocorrect for Style/MethodCallWithoutArgsParentheses with it() in a numbered block. ([@​bbatsov][])
  • #​15343: Fix an incorrect autocorrect for Style/MinMaxComparison with unless. ([@​bbatsov][])
  • #​15348: Fix an incorrect autocorrect for Style/MultilineMemoization with rescue/ensure. ([@​bbatsov][])
  • #​15348: Fix an incorrect autocorrect for Style/MultilineMethodSignature. ([@​bbatsov][])
  • #​15394: Fix an incorrect autocorrect for Style/NilLambda when a non-lambda proc returns nil with return. ([@​bbatsov][])
  • #​15352: Fix an incorrect autocorrect for Style/ParallelAssignment with a %i element needing quoting. ([@​bbatsov][])
  • #​15352: Fix an incorrect autocorrect for Style/ParallelAssignment with a %w element needing escaping. ([@​bbatsov][])
  • #​15366: Fix an incorrect autocorrect for Style/PercentLiteralDelimiters that produced invalid Ruby for a %s symbol whose content contains the preferred delimiter. ([@​bbatsov][])
  • #​15370: Fix an incorrect autocorrect for Style/PerlBackrefs that rewrote $+/$LAST_PAREN_MATCH to the non-equivalent Regexp.last_match(-1); these are no longer flagged. ([@​bbatsov][])
  • #​15371: Fix an incorrect autocorrect for Style/RedundantException that changed the exception message when raising RuntimeError with a nil message. ([@​bbatsov][])
  • #​15350: Fix an incorrect autocorrect for Style/RedundantFormat with a nil argument. ([@​bbatsov][])
  • #​15365: Fix an incorrect autocorrect for Style/RedundantLineContinuation that corrupted an earlier line when removing a line continuation at the end of a multi-line file. ([@​bbatsov][])
  • #​15373: Fix an incorrect autocorrect for Style/RedundantRegexpEscape that stripped a necessary \@​/\$ escape after # in %r{}/%r// literals, enabling unintended interpolation. ([@​bbatsov][])
  • #​15375: Fix an incorrect autocorrect for Style/RedundantStructKeywordInit when keyword_init is not the last pair. ([@​bbatsov][])
  • #​15377: Fix an incorrect autocorrect for Style/SingleLineDoEndBlock when the block body contains a heredoc. ([@​bbatsov][])
  • #​15378: Fix an incorrect autocorrect for Style/StringHashKeys when the hash key is a heredoc. ([@​bbatsov][])
  • #​15380: Fix an incorrect autocorrect for Style/TernaryParentheses when the condition is a modifier if/unless expression. ([@​bbatsov][])
  • #​15407: Fix an infinite loop for Gemspec/RequireMFA with multiple specifications. ([@​bbatsov][])
  • #​15356: Fix an infinite loop between Lint/AssignmentInCondition and Style/RedundantParentheses when an assignment is a statement of a multi-statement begin in a condition. ([@​koic][])
  • #​14370: Fix comment duplication for Style/AccessorGrouping with a single-line trailing comment. ([@​bbatsov][])
  • #​15318: Fix --fail-fast not reporting offenses and exiting with a zero status when offenses are found. ([@​koic][])
  • #​15312: Fix false positives for Layout/BlockAlignment when EnforcedStyleAlignWith: start_of_block is used and do is on a continuation line of a parenthesisless multiline method call. ([@​koic][])
  • #​15339: Fix incorrect autocorrects for Style/HashTransformKeys and Style/HashTransformValues with a splat. ([@​bbatsov][])
  • #​15344: Fix incorrect autocorrects for Style/Lambda with block-local arguments. ([@​bbatsov][])
  • #​15311: Fix a false negative for Layout/IndentationWidth when the body of a multiline grouped expression in parentheses is not indented. ([@​koic][])
  • #​15302: Fix an incorrect autocorrect for Bundler/OrderedGems and Gemspec/OrderedDependencies when the last declaration has no trailing newline, which joined two declarations into a single line. ([@​koic][])
  • #​15307: Fix a false positive for Lint/UnescapedBracketInRegexp when a character class starts with a bare ] (e.g. /[^]]/). ([@​koic][])
Changes
  • #​15390: Mark Style/MapCompactWithConditionalBlock autocorrect as unsafe because compact also removes nil elements already present in the collection. ([@​bbatsov][])
  • #​15300: Update Metrics/PerceivedComplexity to weight simple case/in pattern branches the same as case/when branches. ([@​koic][])

v1.88.0

Compare Source

New features
  • #​15166: Add a new Recursive option to Style/MutableConstant. When enabled, the cop checks and freezes mutable literals nested inside arrays and hashes. The option is disabled by default to preserve existing behavior. ([@​paracycle][])
Bug fixes
  • #​15220: Fix a bad autocorrect for Lint/RedundantSplatExpansion when splatting an empty literal (e.g. when *[] or rescue *[]), which expanded to invalid or semantically different code. ([@​bbatsov][])
  • #​15221: Fix a bad autocorrect for Lint/RegexpAsCondition when the regexp literal is negated (e.g. if !/foo/), which inverted the condition. ([@​bbatsov][])
  • #​15242: Fix a bad autocorrect for Lint/SymbolConversion when the receiver is an interpolated string containing an embedded double quote (e.g. "foo#{bar}\"qux".to_sym), which produced a syntax error. ([@​bbatsov][])
  • #​15270: Fix a crash for Style/CombinableLoops when a for loop has an empty body, and stop autocorrecting consecutive for loops whose iteration variables differ (which produced code referencing an undefined variable). ([@​bbatsov][])
  • #​15272: Fix a crash for Style/ConstantVisibility when a visibility declaration has a numeric literal argument (e.g. private_constant 42). ([@​bbatsov][])
  • #​15215: Fix a false negative for Lint/OrderedMagicComments when an encoding magic comment is preceded by a magic comment other than frozen_string_literal (e.g. shareable_constant_value). ([@​bbatsov][])
  • #​15228: Fix a false negative for Lint/RedundantWithIndex when the block takes no arguments (e.g. ary.each_with_index { do_something }). ([@​bbatsov][])
  • #​15230: Fix a false negative for Lint/RequireRelativeSelfPath when requiring the current file by name with its extension (e.g. require_relative 'foo.rb') and the file path is absolute. ([@​bbatsov][])
  • #​15229: Fix a false negative for Lint/SafeNavigationChain when an ordinary method is chained after a parenthesized safe navigation call (e.g. (x&.foo).bar). ([@​bbatsov][])
  • #​15225: Fix a false negative for Lint/SafeNavigationWithEmpty when the receiver of &.empty? is a local variable, instance variable, constant, or other non-method-call expression. ([@​bbatsov][])
  • #​15231: Fix a false negative for Lint/SendWithMixinArgument when send/public_send/__send__ is called with no explicit receiver or with a self receiver (e.g. send(:include, Bar)). ([@​bbatsov][])
  • #​15248: Fix a false negative for Lint/ToEnumArguments when more positional arguments are passed than the method accepts (e.g. def m(x); to_enum(:m, x, extra); end), which raises ArgumentError when the enumerator is used. ([@​bbatsov][])
  • #​15249: Fix a false negative for Lint/UnescapedBracketInRegexp when an unescaped ] is preceded by an escaped backslash (e.g. /abc\\]123/). ([@​bbatsov][])
  • #​15267: Fix a false positive for Style/ArrayIntersectWithSingleElement with a splat argument (e.g. array.intersect?([*foo])), which is not a single element and was incorrectly rewritten to array.include?(*foo). ([@​bbatsov][])
  • #​15272: Fix a false positive for Style/ColonMethodCall with chained JRuby interop calls (e.g. Java::com::something_method). ([@​bbatsov][])
  • #​15271: Fix a false positive for Style/ConditionalAssignment with EnforcedStyle: assign_inside_condition when assigning an unless without an else branch (e.g. x = unless cond; 1; end), which was rewritten to move the assignment inside the unless and changed behavior when the condition was true. ([@​bbatsov][])
  • #​14401: Fix a false positive for Layout/BlockAlignment with EnforcedStyleAlignWith: start_of_line when a block is passed as a method argument. ([@​augustocbx][])
  • #​15216: Fix a false positive for Lint/RaiseException when raise Exception is used inside a module nested within an allowed implicit namespace (e.g. Gem). ([@​bbatsov][])
  • #​15219: Fix a false positive for Lint/RedundantDirGlobSort when sort is given a comparator block or a block-pass argument, which is not redundant with the default sorting. ([@​bbatsov][])
  • #​15224: Fix a false positive for Lint/ShadowingOuterLocalVariable when a block argument has the same name as a pattern variable from a different in branch of the same case. ([@​bbatsov][])
  • #​15239: Fix a false positive for Lint/SuppressedExceptionInNumberConversion when the numeric constructor already passes exception: false (e.g. Integer(arg, exception: false) rescue nil), which also produced an autocorrect with a duplicate exception: false keyword. ([@​bbatsov][])
  • #​15243: Fix a false positive for Lint/TopLevelReturnWithArgument when a return with an argument is inside a numbered-parameter block or an it block. ([@​bbatsov][])
  • #​15245: Fix a false positive for Lint/UselessRuby2Keywords when ruby2_keywords in a nested class or module refers to a method of the same name defined in an outer scope. ([@​bbatsov][])
  • #​15246: Fix a false positive for Lint/UselessSetterCall when a multiple assignment uses nested destructuring (e.g. (a, b), c = arg, other_arg), which misaligned variables with the right-hand side values. ([@​bbatsov][])
  • #​15125: Fix a false positive for Style/ZeroLengthPredicate when File::Stat.new(...).size.zero? is used. ([@​augustocbx][])
  • #​15196: Fix --start-server to wait until the server is running before returning, which fixes a flaky --restart-server spec and a race for commands run right after starting the server. ([@​koic][])
  • #​15272: Fix Style/Alias not detecting block scope for numbered-parameter and it blocks, which caused a false positive for alias_method and a false negative for alias inside such blocks. ([@​bbatsov][])
  • #​15281: Fix an incorrect autocorrect when Style/IfUnlessModifier and Style/Next correct the same conditional. ([@​fynsta][])
  • #​15260: Fix an error for Style/FileWrite when a literal or variable is passed to write in the block form. ([@​koic][])
  • #​15276: Fix an error for Style/RedundantFormat when the format string is a heredoc with format arguments. ([@​fynsta][])
  • #​15270: Fix an incorrect autocorrect for Style/AndOr when an operand is next, break, or yield with an argument (e.g. foo and next 1), which produced invalid Ruby like foo && next 1. ([@​bbatsov][])
  • #​15267: Fix an incorrect autocorrect for Style/ArrayFirstLast when arr[0]/arr[-1] is the target of a compound assignment (e.g. arr[0] += 1), which produced arr.first += 1 and raised NoMethodError. ([@​bbatsov][])
  • #​15267: Fix an incorrect autocorrect for Style/ArrayIntersect where a negated predicate on a safe-navigation chain (e.g. a&.intersection(b)&.none?) was rewritten to !a&.intersect?(b), flipping the result when the receiver is nil. ([@​bbatsov][])
  • #​15273: Fix an incorrect autocorrect for Style/BlockDelimiters that converted a single-line do...end block containing a block-level rescue or ensure to {...}, producing invalid Ruby. ([@​bbatsov][])
  • #​15268: Fix an incorrect autocorrect for Style/CaseEquality when the argument is an operator or unary expression (e.g. Array === a + b), which produced mis-parsed code like a + b.is_a?(Array). ([@​bbatsov][])
  • #​15268: Fix an incorrect autocorrect for Style/ClassEqualityComparison inside a namespace when the class name string is already fully qualified (e.g. bar.class.name == '::Bar'), which produced instance_of?(::::Bar) and was a syntax error. ([@​bbatsov][])
  • #​15268: Fix an incorrect autocorrect for Style/ClassEqualityComparison when comparing Class itself to a string literal (e.g. var.class == 'Date'), which produced var.instance_of?('Date') and raised `Typ

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Aug 22, 2025

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Gemfile.lock

/opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/shared_helpers.rb:272:in 'Bundler::SharedHelpers#search_up': undefined method 'untaint' for an instance of String (NoMethodError)

      current  = File.expand_path(SharedHelpers.pwd).untaint
                                                    ^^^^^^^^
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/shared_helpers.rb:259:in 'Bundler::SharedHelpers#find_file'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/shared_helpers.rb:251:in 'Bundler::SharedHelpers#find_gemfile'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/shared_helpers.rb:27:in 'Bundler::SharedHelpers#root'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler.rb:234:in 'Bundler.root'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler.rb:246:in 'Bundler.app_config_path'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler.rb:273:in 'Bundler.settings'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/feature_flag.rb:21:in 'block in Bundler::FeatureFlag#settings_method'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/cli.rb:97:in '<class:CLI>'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/cli.rb:7:in '<module:Bundler>'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/cli.rb:6:in '<top (required)>'
	from <internal:/opt/containerbase/tools/ruby/3.4.10/lib/ruby/3.4.0/rubygems/core_ext/kernel_require.rb>:136:in 'Kernel#require'
	from <internal:/opt/containerbase/tools/ruby/3.4.10/lib/ruby/3.4.0/rubygems/core_ext/kernel_require.rb>:136:in 'Kernel#require'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/exe/bundle:23:in 'block in <top (required)>'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/lib/bundler/friendly_errors.rb:124:in 'Bundler.with_friendly_errors'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/exe/bundle:22:in '<top (required)>'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/exe/bundler:4:in 'Kernel#load'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/gems/bundler-1.17.2/exe/bundler:4:in '<top (required)>'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/bin/bundler:25:in 'Kernel#load'
	from /opt/containerbase/tools/bundler/1.17.2/3.4.10/bin/bundler:25:in '<main>'

@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a9416d3 to ec4584c Compare September 16, 2025 05:55
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from ec4584c to f4bbb8e Compare September 25, 2025 21:30
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f4bbb8e to 313836f Compare October 8, 2025 04:07
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 125b353 to 7b1c38e Compare December 17, 2025 15:04
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 7b1c38e to c2fd728 Compare January 15, 2026 06:23
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from c2fd728 to 847232b Compare January 27, 2026 10:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 847232b to ba91b3b Compare February 26, 2026 10:52
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2050765 to 1ddcb30 Compare March 11, 2026 18:55
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1ddcb30 to 1bffc5d Compare March 23, 2026 13:41
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 1bffc5d to 37e3840 Compare April 14, 2026 09:49
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 37e3840 to a68a674 Compare May 30, 2026 13:07
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from a68a674 to f971ad7 Compare June 16, 2026 18:46
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from f971ad7 to 7a58231 Compare June 30, 2026 13:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants