Skip to content

Update bundler non-major dependencies to v0.1.0#316

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bundler-minor-patch
Open

Update bundler non-major dependencies to v0.1.0#316
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bundler-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Mar 5, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
barnes 0.0.90.1.0 age confidence
bootsnap 1.23.01.24.6 age confidence
http 6.0.26.0.3 age confidence
jbuilder (changelog) 2.14.12.15.1 age confidence
pagy (source, changelog) 43.4.443.5.6 age confidence
rubocop (source, changelog) 1.86.01.87.0 age confidence
rubocop-capybara (changelog) 2.22.12.23.0 age confidence
rubocop-rails (source, changelog) 2.34.32.35.4 age confidence
scout_apm (source, changelog) 6.1.16.2.0 age confidence
selenium-webdriver (source, changelog) 4.41.04.44.0 age confidence
sentry-rails (source, changelog) 6.5.06.6.2 age confidence
sentry-ruby (source, changelog) 6.5.06.6.2 age confidence
sqlite3 2.9.22.9.5 age confidence
web-console 4.2.14.3.0 age confidence

Release Notes

heroku/barnes (barnes)

v0.1.0

rails/jbuilder (jbuilder)

v2.15.1

Compare Source

What's Changed

New Contributors

Full Changelog: rails/jbuilder@v2.15.0...v2.15.1

v2.15.0

Compare Source

What's Changed

New Contributors

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

rubocop/rubocop (rubocop)

v1.87.0

Compare Source

New features
  • #​15167: Add --enable-all-cops and --disable-all-cops command line options that override AllCops/EnabledByDefault and AllCops/DisabledByDefault in configuration files. ([@​koic][])
  • #​15185: Make Layout/EmptyLineAfterGuardClause accept the new # simplecov:disable and # simplecov:enable directive comments. ([@​koic][])
  • #​15173: Add optional Rubydex integration via AllCops/UseProjectIndex to enable cross-file detection in Lint/ConstantReassignment (experimental). ([@​koic][])
Bug fixes
  • #​15168: Fix false positives in Lint/ParenthesesAsGroupedExpression when the first argument is a call-like expression with its own parentheses, such as yield(...). ([@​koic][])
  • #​15188: Fix false positives in Style/YodaCondition when one side is an array or hash literal containing non-literal elements. ([@​koic][])
  • #​15182: Fix incorrect autocorrect for Style/Alias causing a syntax error when the return value of alias_method is used, such as an argument to public, private, protected, or module_function, or the right-hand side of an assignment. ([@​koic][])
  • #​15174: Fix incorrect autocorrect for Style/ClassAndModuleChildren causing a syntax error when the namespace contains a method call (e.g., class self.class::Foo; end). ([@​koic][])
  • #​15180: Fix incorrect autocorrect for Style/FileWrite causing a syntax error when the written heredoc is chained with another method call. ([@​koic][])
  • #​15186: Fix incorrect autocorrect for Style/HashConversion causing a syntax error when Hash[...] is passed an anonymous splat (*). ([@​koic][])
  • #​15192: Fix incorrect autocorrect for Style/StructInheritance causing a syntax error when the inherited Struct.new is called without parentheses. ([@​koic][])
  • #​15170: Fix an infinite loop for Layout/RedundantLineBreak when a single-line block is chained with a safe navigation method call. ([@​koic][])
  • #​15175: Fix Layout/IndentationWidth to indent block bodies relative to the method selector for trailing-dot multi-line method chains when EnforcedStyleAlignWith is relative_to_receiver. ([@​ddbrendan][])
  • #​15135: Fix incorrect autocorrect for Style/RedundantParentheses that swallowed chained method calls into a trailing inline comment on the line above the closing parenthesis. ([@​hammadxcm][])
  • #​15184: Fix various typos and grammar mistakes in documentation and cop descriptions. ([@​bbatsov][])
Changes
  • #​15171: Cache FilePatterns#match? results per path so cops sharing the same Include/Exclude configuration do not each repeat File.fnmatch? work on every file. ([@​Darhazer][])

v1.86.2

Compare Source

New features
Bug fixes
  • #​15156: Fix an error for Style/HashLookupMethod when chaining fetch (or []) calls on the same expression. ([@​koic][])
  • #​15161: Fix an error for Style/ReduceToHash when nested each_with_object/inject/reduce calls would build hashes. ([@​koic][])
  • #​15144: Fix an error in Style/SoleNestedConditional when autocorrecting nested conditionals containing comments. ([@​koic][])
  • #​15040: Exclude constants from Style/ModuleMemberExistenceCheck. ([@​t-daisuke][])
  • #​15155: Fix false negatives in Style/RedundantSelf when an explicit self receiver in one scope matches the LHS of an ||=, &&=, or op_asgn in another scope. ([@​koic][])
  • #​15107: Fix false positives in Lint/RequireRelativeSelfPath when a non-.rb file uses require_relative with its own basename. ([@​koic][])
  • #​15137: Fix incorrect "does not support IndentationWidth parameter" warning for Layout/ClosingParenthesisIndentation and Layout/CommentIndentation. ([@​koic][])
  • #​15148: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in rescue or ensure bodies. ([@​koic][])
  • #​15147: Fix false positives in Lint/RedundantSafeNavigation when safe navigation appears in the body of unless. ([@​koic][])
  • #​15163: Fix false positives in Style/Copyright when Notice pattern starts with \A#, uses \s metacharacters, or has multiple spaces after #. ([@​koic][])
  • #​10179: Fix false positives in Style/DocumentDynamicEvalDefinition when the heredoc contains an escaped interpolation (\#{...}). ([@​eyupcanakman][])
  • #​15154: Fix bug where specifying --out disables parallelization. ([@​deivid-rodriguez][])
  • #​15106: Fix TargetFinder to work correctly inside hidden parent directories. ([@​alpaca-tc][])
  • #​15102: Fix FrozenError in DisabledConfigFormatter for frozen array config parameters. ([@​koic][])
  • #​15141: Fix incorrect autocorrect for Gemspec/RequireMFA causing an infinite loop when rubygems_mfa_required metadata uses a symbol key. ([@​koic][])
  • #​15142: Fix infinite loop for --disable-uncorrectable and offense near heredoc. ([@​jonas054][])
  • #​15054: Fix false positive for Layout/MultilineMethodCallIndentation when a dot-aligned method chain is inside a hash pair value. ([@​nicolas-finary][])
  • #​15136: Fix false positive for Lint/MissingCopEnableDirective when # rubocop:disable is wrapped in a # rubocop:push / # rubocop:pop block. ([@​koic][])
  • #​15115: Fix an incorrect autocorrect in Style/RegexpLiteral when the regexp contains unbalanced braces that conflict with the preferred %r delimiters. ([@​koic][])
  • #​15130: Fix incorrect autocorrect in Style/Copyright when AutocorrectNotice lacks a # prefix or Notice pattern starts with ^#. ([@​koic][])
  • #​14821: Fix Style/IfInsideElse autocorrect moving comments into the wrong branch when a comment precedes the nested if in an else. ([@​hammadxcm][])
  • #​14583: Fix template extractor applying only the last fragment's autocorrection. ([@​zeronosu77108][])
  • #​14971: Fix false positive for Style/WhileUntilModifier when the body is a conditional. ([@​fujitanisora][])

v1.86.1

Compare Source

Bug fixes
  • #​11051: Fix Style/AccessModifierDeclarations inline autocorrect dropping comments between the access modifier and the following method definition. ([@​dduugg][])
  • #​14665: Cache plugin integration in CopHelper to avoid repeated loading. ([@​55728][])
  • #​15091: Fix Lint/DuplicateMethods false positives for anonymous classes in constant assignments and method return values. ([@​eugeneius][])
  • #​15055: Fix Lint/DuplicateMethods false positives with anonymous classes inside blocks (e.g. RSpec let, describe). ([@​ShkumbinDelija][])
  • #​15035: Exclude included_modules from Style/ModuleMemberExistenceCheck. ([@​koic][])
  • #​15087: Fix false positive for Style/RedundantLineContinuation when using interpolated string literals. ([@​koic][])
  • #​14361: Fix false positive in file_to_include? when a relative Include pattern matches a parent directory name in the absolute file path. ([@​jonas054][])
  • #​15090: Fix false positives for Layout/EmptyLineAfterGuardClause when consecutive guard clauses use and return. ([@​eugeneius][])
  • #​15070: Fix false positive for Lint/RedundantSafeNavigation when chained safe navigation is used in a conditional expression with InferNonNilReceiver enabled. ([@​koic][])
  • #​15074: Fix false positives in Style/RedundantParentheses when using parentheses around an endless range in assignment. ([@​koic][])
  • #​15048: Fix issue where the url_for is missing for Cops without instance methods. ([@​Fryguy][])
  • #​15051: Fix Style/RedundantParentheses handling of beginless ranges. ([@​oggy][])
  • #​14980: Fix Lint/Syntax zero-length diagnostic range for syntax errors at EOF. ([@​55728][])
  • #​15084: Handle heredocs with methods calls correctly when fixing guard clauses. ([@​G-Rath][])
  • #​11398: Fix incorrect Include path adjustment when local config overrides an inherited Include. ([@​jonas054][])
  • #​15092: Fix Layout/EndAlignment cop error on an empty begin. ([@​viralpraxis][])
  • #​15059: Fix an error in Layout/LineLength when SplitStrings option is enabled and __FILE__ is used. ([@​jeromedalbert][])
  • #​5876: Fix Lint/UnusedMethodArgument false positive when block argument is used via yield. ([@​dduugg][])
  • #​15093: Return tool execution errors instead of protocol errors in MCP server. ([@​koic][])
Changes
rubocop/rubocop-capybara (rubocop-capybara)

v2.23.0

Compare Source

  • Bump RuboCop requirement to +1.81. ([@​ydah])
  • Add new Capybara/RSpec/HaveContent cop. ([@​nzlaura])
  • Move the department associated with Capybara::RSpecMatchers to Capybara/RSpec/*. ([@​ydah])
    • Rename Capybara/CurrentPathExpectation to Capybara/RSpec/CurrentPathExpectation
    • Rename Capybara/SpecificMatcher to Capybara/RSpec/SpecificMatcher
    • Rename Capybara/NegationMatcher to Capybara/RSpec/NegationMatcher
    • Rename Capybara/NegationMatcherAfterVisit to Capybara/RSpec/NegationMatcherAfterVisit
    • Rename Capybara/VisibilityMatcher to Capybara/RSpec/VisibilityMatcher
  • Split Capybara/MatchStyle into Capybara/AssertStyle and Capybara/RSpec/MatchStyle. ([@​ydah])
  • Fix a false positive for Capybara/FindAllFirst when using logical operators with all('...')[0]. ([@​ydah])
  • Fix an incorrect autocorrect for Capybara/FindAllFirst when find or all with match: :first uses a receiver and mark autocorrection as unsafe. ([@​ydah])
  • Fix an error for Capybara/RSpec/HaveSelector when passing only a selector type. ([@​ydah])
rubocop/rubocop-rails (rubocop-rails)

v2.35.4

Compare Source

Bug fixes
  • #​1418: Fix a false positive for Rails/StrongParametersExpect when require is given an array literal, such as params.require([:foo, :bar]).permit(:baz). ([@​koic][])
  • #​1574: Fix an invalid autocorrection for Rails/StrongParametersExpect when permit receives a single dynamic argument, such as params.require(:user).permit(permitted_attributes). ([@​koic][])
  • #​1635: Fix Rails/StrongParametersExpect to allow params[:foo].inspect. ([@​jdelStrother][])

v2.35.3

Compare Source

Bug fixes
  • #​1630: Fix a false positive in Rails/StrongParametersExpect when negating params[:key] with !, such as !params[:key]. ([@​koic][])
  • #​1629: Fix false positives in Rails/StrongParametersExpect when using the safe navigation operator (&.) on params[:key]. Autocorrecting params[:key]&.downcase to params.expect(:key).downcase silently changes behavior — a missing param goes from returning nil to raising ActionController::ParameterMissing. ([@​lucasmazza][])

v2.35.2

Compare Source

Bug fixes
  • #​1625: Fix false positives in Rails/StrongParametersExpect when using collection methods (such as delete, keys, merge, slice, dig, fetch, or transform_values) on params[:key], as well as block-style calls such as params[:key].each { ... } or params[:key].map(&:to_s). ([@​koic][])
  • #​1627: Fix false positives in Rails/StrongParametersExpect for usages like params[:key].try(:method) and params[:key].try!(:method). ([@​nicholasdower][])

v2.35.1

Compare Source

Bug fixes
  • #​1616: Fix false positives in Rails/StrongParametersExpect when using nil-safe conversion methods such as to_i, to_s, to_a, to_f, and to_h on params[:key]. ([@​koic][])
  • #​1622: Fix false positives in Rails/StrongParametersExpect when using key-check methods such as key?, has_key?, include?, and member? on params[:key]. ([@​koic][])
  • #​1620: Fix false positives in Rails/StrongParametersExpect when using type-check methods such as is_a?, kind_of?, and instance_of? on params[:key]. ([@​koic][])

v2.35.0

Compare Source

Bug fixes
  • #​1595: Fix a false negative for Rails/I18nLocaleTexts when using redirect_back_or_to with a flash message. ([@​55728][])
  • #​1587: Fix false positives for Rails/Presence with operator methods like <<, =~, and others. ([@​eugeneius][])
  • #​1586: Don't add unnecessary parentheses in Rails/Presence. ([@​eugeneius][])
  • #​1602: Fix an error in Rails/SelectMap when .select appears inside a subquery in an argument. ([@​koic][])
  • #​1604: Allow DatabaseTypeResolvable to fall back to an adapter configuration specified in a shared key. ([@​codergeek121][])
  • #​1582: Fix a false negative where local was incorrectly treated as a known environment name when using == comparison in Rails/UnknownEnv. ([@​lovro-bikic][])
Changes
  • #​1571: Add more detection patterns on Rails/ResponseParsedBody. ([@​r7kamura][])
  • #​1583: Extend Rails/StrongParametersExpect to detect params[:key] in method calls and raising finder methods. ([@​koic][])
  • #​1584: Add support for case statements to Rails/UnknownEnv. ([@​lovro-bikic][])
  • #​1592: Fix false negative for != comparison in Rails/UnknownEnv. ([@​lovro-bikic][])
  • #​1598: Use glob patterns compatible with Engine or Packwerk for cops targeting spec/ and test/ directories. ([@​y-yagi][])
scoutapp/scout_apm_ruby (scout_apm)

v6.2.0

Compare Source

  • Fix compatibility with http >= 6.0.0 (#​613)
SeleniumHQ/selenium (selenium-webdriver)

v4.44.0

Compare Source

=========================

  • Support CDP versions: v146, v147, v148
  • Modern Firefox does not like both the -v and --log flags at the same time (#​17412)
  • Fix credential issue with private key (#​17188)

v4.43.0

Compare Source

=========================

  • Support CDP versions: v145, v146, v147

v4.42.0

Compare Source

=========================

  • Support CDP versions: v144, v145, v146
getsentry/sentry-ruby (sentry-rails)

v6.6.2

Compare Source

Bug Fixes 🐛

v6.6.1

Compare Source

Bug Fixes 🐛

v6.6.0

Compare Source

New Features ✨
  • (yabeda) Add sentry-yabeda adapter gem by @​dingsdax in #​2925

    There's a new sentry-yabeda gem that integrates Sentry Metrics with Yabeda.
    Add the new gem to your Gemfile:

    gem "sentry-yabeda"

    Initialize Sentry with metrics enabled. The Yabeda adapter registers itself automatically when sentry-yabeda is required — there's no extra setup:

    Sentry.init do |config|
      config.dsn = ENV["SENTRY_DSN"]
      config.enable_metrics = true
    end
  • Add release detection from Kamal deployment by @​t27duck in #​2895

Bug Fixes 🐛
Internal Changes 🔧

We made some memory performance and caching improvements with the help of pi-autoresearch. Enjoy the lower overhead!

rails/web-console (web-console)

v4.3.0

Compare Source

  • #​342 Always permit IPv4-mapped IPv6 loopback addresses ([@​zunda]).
  • Fixed Rails 8.2.0.alpha support
  • Drop Rails 7.2 support
  • Drop Ruby 3.1 support

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
    • Only on Sunday and Saturday (* * * * 0,6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


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

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

@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 5, 2026 22:15 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 60551d8 to 3318f4b Compare March 9, 2026 21:27
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.85.1 Update bundler non-major dependencies to v2.5.21 Mar 9, 2026
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 9, 2026 21:27 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 3318f4b to 07d0aa1 Compare March 10, 2026 13:01
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 10, 2026 13:01 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 07d0aa1 to ccc9475 Compare March 13, 2026 04:40
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 13, 2026 04:40 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from ccc9475 to 54712b7 Compare March 15, 2026 01:36
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 15, 2026 01:36 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 54712b7 to f07dfc1 Compare March 15, 2026 20:49
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 15, 2026 20:49 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from f07dfc1 to 8a7e287 Compare March 16, 2026 13:30
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 16, 2026 13:30 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 8a7e287 to 5c4f21f Compare March 16, 2026 17:14
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 16, 2026 17:14 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 5c4f21f to 62a683d Compare March 18, 2026 05:43
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 18, 2026 05:43 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 62a683d to 3d6be55 Compare March 19, 2026 10:18
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 19, 2026 10:18 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 3d6be55 to 263d8f0 Compare March 21, 2026 09:18
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 21, 2026 09:18 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 263d8f0 to d523fe2 Compare March 23, 2026 14:11
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 23, 2026 14:11 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from d523fe2 to 693174d Compare March 23, 2026 18:13
@renovate renovate Bot changed the title Update bundler non-major dependencies to v2.5.21 Update bundler non-major dependencies to v2.5.22 Mar 23, 2026
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 23, 2026 18:13 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 693174d to d8883fc Compare March 25, 2026 13:58
@mitlib mitlib temporarily deployed to tacos-api-pipeline-pr-316 March 25, 2026 13:59 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from d8883fc to 68eab63 Compare March 26, 2026 09:26
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch 6 times, most recently from 910bb4e to 55ac502 Compare April 16, 2026 09:41
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch 5 times, most recently from 6913954 to 1a7cdfb Compare April 22, 2026 21:17
@renovate renovate Bot changed the title Update bundler non-major dependencies to v2.5.23 Update bundler non-major dependencies to v0.1.0 Apr 22, 2026
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch 11 times, most recently from 59777fc to 1e76e7e Compare April 30, 2026 11:41
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch 6 times, most recently from 467a399 to 78f76e7 Compare May 8, 2026 20:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant