Skip to content

Update bundler non-major dependencies to v1.183.0#966

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

Update bundler non-major dependencies to v1.183.0#966
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/bundler-minor-patch

Conversation

@renovate

@renovate renovate Bot commented May 30, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
aws-sdk-lambda (source, changelog) 1.181.01.183.0 age confidence
bootsnap 1.24.51.24.6 age confidence
jekyll-remote-theme 0.5.00.5.1 age confidence
rubocop (source, changelog) 1.86.21.88.0 age confidence
rubocop-rails (source, changelog) 2.35.32.35.4 age confidence
selenium-webdriver (source, changelog) 4.44.04.45.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.42.9.5 age confidence
web-console 4.2.14.3.0 age confidence

Release Notes

aws/aws-sdk-ruby (aws-sdk-lambda)

v1.183.0

  • Feature - Adds configuration for tag propagation to Lambda-managed resources.

v1.182.0

  • Feature - Adding new BDD representation of endpoint ruleset
benbalter/jekyll-remote-theme (jekyll-remote-theme)

v0.5.1

Compare Source

Fixes
  • Fix RuboCop load failure on Ruby 4.0
  • Add base64 dependency for Ruby 3.4+
Dependencies
  • Allow openssl 4.x to fix install on Ruby 4.0 (#​133)
  • Bump github/codeql-action from 3 to 4 (#​130)
Infrastructure
  • Test CI against Ruby 4.0
  • Exclude Ruby 4.0 + Jekyll 3.x from CI matrix
  • Upgrade RuboCop to 1.57 and resolve violations
  • Pin rubocop-ast below 1.38 to avoid deprecation warning
rubocop/rubocop (rubocop)

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 TypeError; such comparisons are no longer autocorrected. ([@​bbatsov][])
  • #​15274: Fix an incorrect autocorrect for Style/ClassMethodsDefinitions that corrupted a preceding comment containing def <name> and left the method undefined as a class method. ([@​bbatsov][])
  • #​15270: Fix an incorrect autocorrect for Style/ComparableClamp when the clamped value is an operator expression (e.g. a + b), which produced mis-parsed code like a + b.clamp(low, high). ([@​bbatsov][])
  • #​15267: Fix an incorrect autocorrect for Style/ConcatArrayLiterals with an empty array literal argument (e.g. arr.concat([], [b])), which produced invalid Ruby like arr.push(, b). ([@​bbatsov][])
  • #​15274: Fix an incorrect autocorrect for Style/DigChain that duplicated a trailing comment and dropped indentation when the chain was inside a method or block. ([@​bbatsov][])
  • #​15288: Fix an incorrect autocorrect for Lint/UselessTimes when a 1.times block takes a single destructured (|(a, b)|) or splat (|*a|) argument, which produced a body referencing an undefined variable. ([@​bbatsov][])
  • #​15280: Fix an incorrect autocorrect for Style/ConditionalAssignment with EnforcedStyle: assign_inside_condition and a single-line case. ([@​fynsta][])
  • #​15278: Fix an incorrect autocorrect for Style/ParallelAssignment when the right-hand side contains a heredoc. ([@​fynsta][])
  • #​15279: Fix an incorrect autocorrect for Style/Semicolon when a heredoc is opened before the semicolon. ([@​fynsta][])
  • #​15277: Fix an incorrect autocorrect for Style/WordArray when the array contains heredocs. ([@​fynsta][])
  • #​15240: Fix an incorrect autocorrect for Lint/UselessAssignment that rewrote a first-seen foo &&= 1 to foo && 1, raising NameError at runtime. ([@​bbatsov][])
  • #​15269: Fix a false positive where a cop's relative Include pattern could match directories above the project root. ([@​augustocbx][])
  • #​15209: Fix a false negative for Lint/InterpolationCheck when interpolation appears in a multiline single-quoted string. ([@​bbatsov][])
  • #​15211: Fix a false negative for Lint/NonLocalExitFromIterator when the iterator receiver uses safe navigation. ([@​bbatsov][])
  • #​15227: Fix false negatives for Lint/RedundantSafeNavigation with &.respond_to? on a guaranteed-instance receiver (e.g. foo.to_s&.respond_to?(:class)) and with &.to_h using a numbered-parameter or it block (e.g. foo&.to_h { _1 } || {}). ([@​bbatsov][])
  • #​15226: Fix false negatives for Lint/RescueType when rescuing from true, false, a rational literal (1r), or a complex literal (1i), all of which raise a TypeError at runtime. ([@​bbatsov][])
  • #​15233: Fix false negatives for Lint/SelfAssignment with ||= and &&= on constants, attributes, and hash keys (e.g. Foo ||= Foo, foo.bar ||= foo.bar, hash['foo'] ||= hash['foo']). ([@​bbatsov][])
  • #​15247: Fix false negatives for Lint/SharedMutableDefault when a mutable default is combined with a capacity: keyword argument and given as an array or Array.new/Hash.new (e.g. Hash.new([], capacity: 42)). ([@​bbatsov][])
  • #​15206: Fix a false positive for Lint/FloatComparison when comparing against a parenthesized zero or nil. ([@​bbatsov][])
  • #​15208: Fix a false positive for Lint/IncompatibleIoSelectWithFiberScheduler when the single array argument element is a splat. ([@​bbatsov][])
  • #​15207: Fix a false positive for Lint/LiteralAssignmentInCondition when a literal is assigned inside a block in the condition. ([@​bbatsov][])
  • #​15272: Fix false positives for Style/DateTime: a bare to_datetime call on implicit self is no longer flagged, and historic-date calls using safe navigation (e.g. DateTime&.iso8601(str, Date::ENGLAND)) are now exempted. ([@​bbatsov][])
  • #​14979: Fix false positives in Layout/BlockAlignment when there is a line break between method arguments before the block. ([@​koic][])
  • #​15204: Fix false positives in Lint/EnsureReturn and Lint/NoReturnInBeginEndBlocks for return inside a nested method definition or lambda. ([@​bbatsov][])
  • #​15197: Fix false positives in Style/WhileUntilDo when the loop body is on the same line as the do keyword. ([@​koic][])
  • #​15205: Fix an incorrect autocorrect for Lint/ErbNewArguments when a keyword argument follows the safe_level argument. ([@​bbatsov][])
  • #​15210: Fix an incorrect autocorrect for Lint/LambdaWithoutLiteralBlock that dropped safe navigation from the block argument. ([@​bbatsov][])
  • #​15214: Fix an incorrect autocorrect for Lint/NumericOperationWithConstantResult when using safe navigation, as the result is nil when the receiver is nil. ([@​bbatsov][])
  • #​15217: Fix an incorrect autocorrect for Lint/RedundantCopDisableDirective and Lint/RedundantCopEnableDirective when a cop name in the directive is a prefix of another cop name in the same directive (e.g. Lint/AmbiguousOperator and Lint/AmbiguousOperatorPrecedence). ([@​bbatsov][])
  • #​15275: Fix incorrect autocorrects for Style/FileWrite that deleted or duplicated heredoc bodies when a heredoc was used as the filename, in an argument expression, or in an inline block. ([@​fynsta][])
  • #​15241: Fix incorrect autocorrects for Lint/UselessTimes when the times block uses next/break (which became a syntax error) or takes multiple block arguments (which became undefined references). ([@​bbatsov][])
  • #​15222: Fix Lint/ScriptPermission to honor a cop-level AutoCorrect: false setting and to not crash on sources without a file on disk (e.g. unsaved editor buffers). ([@​bbatsov][])
  • #​15244: Fix Lint/TrailingCommaInAttributeDeclaration to detect a trailing comma before a singleton method definition (e.g. def self.bar) and to not crash when a def is the sole argument (e.g. attr_reader def bar; end). ([@​bbatsov][])
  • #​15250: Fix incorrect autocorrects for Lint/LiteralInInterpolation with embedded quotes and escaped interpolation text. ([@​RedZapdos123][])
  • #​15291: Fix an incorrect autocorrect for Lint/LiteralInInterpolation when interpolated hashes contain symbols that require quoted syntax, such as :'foo-bar'. ([@​RedZapdos123][])
  • #​14364: Fix .rubocop_todo.yml autocorrect safety comments for local custom cops configured in the project config. ([@​RedZapdos123][])
  • #​15252: Stop autocorrecting Lint/NumberConversion offenses on safe navigation calls. ([@​RedZapdos123][])
  • #​12276: Fix --auto-gen-config to record --disable-pending-cops and --enable-pending-cops in the generated .rubocop_todo.yml command so that --regenerate-todo preserves them. ([@​augustocbx][])
  • #​15202: Fix InternalAffairs/RedundantLetRuboCopConfigNew crash when let(:config) has no enclosing describe. ([@​bbatsov][])
Changes
  • #​15234: Reword the Lint/RequireRangeParentheses offense message, which incorrectly called the flagged (finite) range "endless". ([@​bbatsov][])
  • #​15235: Add autocorrection to Lint/RefinementImportMethods (replacing include/prepend with import_methods) and report that the functionality was removed (not just deprecated) on Ruby 3.2+. ([@​bbatsov][])
  • #​15198: Reword cop descriptions that did not start with a verb (e.g. Lint/UnreachableCode, Metrics/AbcSize, Security/Eval) for consistency. ([@​bbatsov][])
  • #​15223: Make Lint/RedundantWithObject autocorrect unsafe, since each_with_object returns the memo object while the corrected each returns the receiver. ([@​bbatsov][])
  • #​15194: Rename inconsistently named cop parameters to follow RuboCop's conventions (the old names are deprecated but still work): Bundler/GemComment's IgnoredGems to AllowedGems, Lint/NumberConversion's IgnoredClasses to AllowedClasses, Lint/MissingCopEnableDirective's MaximumRangeSize to MaxRangeSize, Metrics/CollectionLiteralLength's LengthThreshold to Max, and Style/FetchEnvVar's AllowedVars to AllowedVariables. ([@​bbatsov][])

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][])
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][])
SeleniumHQ/selenium (selenium-webdriver)

v4.45.0

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

  • Support CDP versions: v147, v148, v149
  • deprecate curb http client support (#​17443)
  • move Ruby bindings to use typescript get attribute atom (#​17524)
  • Move atoms to use the typescript versions (#​17532)
  • deprecate Chromium Profile classes (#​17557)
  • update bazel test tags (#​17558)
  • separate concerns between Service, DriverFinder, and Options (#​17564)
  • fix using environment variables to set drivers (#​17571)
  • create more obvious test guard keywords as aliases (#​17636)
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 timdex-api-p-renovate-b-zwea7w May 30, 2026 09:43 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 3b28e3b to 54b297b Compare May 31, 2026 22:03
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.87.0 Update bundler non-major dependencies to v0.5.1 May 31, 2026
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w May 31, 2026 22:03 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 54b297b to 0c0e54b Compare June 2, 2026 01:53
@renovate renovate Bot changed the title Update bundler non-major dependencies to v0.5.1 Update bundler non-major dependencies to v1.182.0 Jun 2, 2026
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 2, 2026 01:54 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 0c0e54b to 8c566f0 Compare June 2, 2026 22:50
@renovate renovate Bot changed the title Update bundler non-major dependencies to v1.182.0 Update bundler non-major dependencies to v1.183.0 Jun 2, 2026
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 2, 2026 22:50 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 8c566f0 to 2dff9ea Compare June 3, 2026 16:48
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 3, 2026 16:49 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 2dff9ea to 24c588d Compare June 7, 2026 05:40
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 7, 2026 05:40 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 24c588d to 68bca4b Compare June 7, 2026 18:11
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 7, 2026 18:11 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 68bca4b to dff9263 Compare June 8, 2026 17:49
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 8, 2026 17:49 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from dff9263 to 5971b95 Compare June 9, 2026 14:42
@mitlib mitlib temporarily deployed to timdex-api-p-renovate-b-zwea7w June 9, 2026 14:42 Inactive
@renovate renovate Bot force-pushed the renovate/bundler-minor-patch branch from 5971b95 to 53c40d4 Compare June 16, 2026 10:59
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