Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 10, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
aws-sdk-s3 (source, changelog) 1.191.0 -> 1.199.1 age confidence
aws-sdk-sqs (source, changelog) 1.96.0 -> 1.104.0 age confidence
json 2.12.2 -> 2.15.0 age confidence
net-imap (changelog) 0.5.10 -> 0.5.11 age confidence
pg 1.5.9 -> 1.6.2 age confidence
puma 6.6.0 -> 6.6.1 age confidence
rubocop (source, changelog) 1.77.0 -> 1.81.1 age confidence
rubocop-rails (source, changelog) 2.32.0 -> 2.33.4 age confidence
scout_apm 5.6.4 -> 5.7.1 age confidence
selenium-webdriver (source, changelog) 4.34.0 -> 4.36.0 age confidence
sentry-rails (source, changelog) 5.26.0 -> 5.28.0 age confidence
sentry-ruby (source, changelog) 5.26.0 -> 5.28.0 age confidence
simplecov-lcov 0.8.0 -> 0.9.0 age confidence
sqlite3 2.7.1 -> 2.7.4 age confidence

Release Notes

aws/aws-sdk-ruby (aws-sdk-s3)

v1.199.1

  • Issue - Update TransferManager#download_file and Object#download_file documentation regarding temporary file usage and failure handling for different destination types.

v1.199.0

  • Feature - This release includes backward compatibility work on the "Expires" parameter.

v1.198.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

  • Issue - Fix multipart download_file to support Pathname, File and Tempfile objects as download destinations.

v1.197.0

  • Issue - When multipart stream uploader fails to complete multipart upload, it calls abort multipart upload.

  • Issue - For Aws::S3::Object class, the following methods have been deprecated: download_file, upload_file and upload_stream. Use Aws::S3::TransferManager instead.

  • Feature - Add Aws::S3::TransferManager, a S3 transfer utility that provides upload/download capabilities with automatic multipart handling, progress tracking, and handling of large files.

v1.196.1

  • Issue - Add range validation to multipart download to ensure all parts are successfully processed.

  • Issue - When multipart uploader fails to complete multipart upload, it calls abort multipart upload.

  • Issue - Clean up partially downloaded file on multipart download_file failure while preserving existing file.

v1.196.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.195.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.194.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.193.0

  • Feature - Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.

v1.192.0

  • Feature - Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
aws/aws-sdk-ruby (aws-sdk-sqs)

v1.104.0

  • Feature - Update invalid character handling documentation for SQS SendMessage API

v1.103.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.102.0

  • Feature - Documentation update for Amazon SQS Supports Large Payload Message feature

v1.101.0

  • Feature - Remove incorrect endpoint tests

v1.100.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.99.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.

v1.98.0

  • Feature - Documentation updates for Amazon SQS fair queues feature.

v1.97.0

  • Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's CHANGELOG.md for details.
ruby/net-imap (net-imap)

v0.5.11

Compare Source

What's Changed

Added
Fixed
Other Changes
Documentation
Miscellaneous

New Contributors

Full Changelog: ruby/net-imap@v0.5.10...v0.5.11

rubocop/rubocop (rubocop)

v1.81.1

Compare Source

Bug fixes
  • #​14563: Fix incorrect autocorrection for Lint/DeprecatedOpenSSLConstant when Cipher appears twice. ([@​koic][])
Changes
  • #​14565: Allow multiline method chain for Style/NumberedParameters and Style/ItBlockParameter with EnforcedStyle: allow_single_line when the block itself is on a single line. ([@​earlopain][])

v1.81.0

Compare Source

New features
Bug fixes
  • #​14560: Fix an error for Style/NilComparison cop when using the var.==(nil) and var.===(nil) syntax. ([@​viralpraxis][])
  • #​14535: Fix autocorrect for Style/ExplicitBlockArgument when there are two methods that share the same implementation. ([@​earlopain][])
  • #​14527: Fix false negatives for Style/NumberedParameters and Style/ItBlockParameter when using multiline method chain with EnforcedStyle: allow_single_line. ([@​koic][])
  • #​14522: Fix false negatives for Layout/MultilineOperationIndentation when using indented code on LHS of equality operator in modifier method definition. ([@​koic][])
  • #​14496: Fix false negatives for Layout/EmptyLineBetweenDefs for AllowAdjacentOneLineDefs: false and DefLikeMacros that take no block. ([@​earlopain][])
  • #​14553: Fix false positives when EnforcedStyle: allowed_in_returns and !! appears across multiple lines in return position. ([@​koic][])
  • #​14557: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression as a condition. ([@​koic][])
  • #​14525: Fix false positives for Style/RedundantRegexpEscape when an escaped variable sigil follows # (e.g., /#\@​foo/, /#\@​@​bar/, /#\$baz/). ([@​koic][])
  • #​14529: Fix false negative in Layout/RescueEnsureAlignment with a block whose send node is split over multiple lines. ([@​dvandersluis][])
  • #​14528: Fix Style/RedundantFormat when the format string has a variable width that isn't given as a literal value. ([@​dvandersluis][])
  • #​14541: Fix gemspec parsing error when ParserEngine: parser_prism is configured in a base config file. ([@​sudoremo][])
  • #​14544: Fix an incorrect autocorrect for Lint/Void when using a return value in assignment method definition. ([@​koic][])
  • #​14543: Fix an incorrect autocorrect for Style/RedundantRegexpArgument when using escaped single quote character. ([@​koic][])
  • #​14540: Fix an incorrect autocorrect for Style/UnlessElse when using unless with then. ([@​koic][])
  • #​14507: Fix the built-in Ruby LSP add-on not restarting when config files (.rubocop.yml, .rubocop_todo.yml) change. ([@​earlopain][])
  • #​14514: Fix the built-in Ruby LSP add-on not respecting .rubocop config file. ([@​earlopain][])
  • #​14508: Fix the built-in Ruby LSP add-on getting in an irrecoverable state when the config is invalid on startup. ([@​earlopain][])
  • #​14534: Prevent Layout/LineLength autocorrection from splitting a block if its receiver contains a heredoc. ([@​dvandersluis][])
  • #​14497: Fix a false positive for Lint/ShadowedArgument when assigning inside a rescue block. ([@​earlopain][])
Changes

v1.80.2

Compare Source

Bug fixes
  • #​14477: Fix a false positive for Style/SafeNavigation when using ternary expression with index access call with method chain. ([@​koic][])
  • #​14486: Fix false positives for Style/RedundantParentheses with unary operators and yield, super, or defined?. ([@​earlopain][])
  • #​14489: Fix false negatives for Style/RedundantParentheses with method calls taking argument without parentheses like return (x y) if z. ([@​earlopain][])
  • #​14499: Fix wrong autocorrect for Style/StringConcatenation when a double-quoted string contains escaped quotes and interpolation. ([@​earlopain][])
  • #​14502: Fix wrong autocorrect for Style/StringConcatenation when a single-quoted string contains interpolation like '#{foo}'. ([@​earlopain][])
Changes

v1.80.1

Compare Source

Bug fixes
  • #​14479: Don't invalidate cache when --display-time option is used on the CLI. ([@​lovro-bikic][])
  • #​14473: Fix a false negative for Style/RedundantBegin using begin with multiple statements without rescue or ensure. ([@​koic][])
  • #​14475: Fix cop errors during autocorrect for the build in LSP when analyzing as Ruby 3.4. ([@​earlopain][])
Changes

v1.80.0

Compare Source

Bug fixes
  • #​14469: Fix an incorrect autocorrect for Style/BitwisePredicate when using & with LHS flags in conjunction with == for comparisons. ([@​koic][])
  • #​14459: Fix wrong autocorrect for Style/For with save navigation in the collection. ([@​earlopain][])
  • #​14435: Fix false negatives for regexp cops when Lint/DuplicateRegexpCharacterClassElement is enabled. ([@​earlopain][])
  • #​14419: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in nested if branches inside a loop and the variable is used outside while loop. ([@​koic][])
  • #​14468: Fix false positives for Naming/MethodName when an operator method is defined using a string. ([@​koic][])
  • #​14427: Fix false positives for Style/RedundantParentheses when do...end block is wrapped in parentheses as a method argument. ([@​koic][])
  • #​14441: Better hash access handling in Style/SafeNavigation. ([@​issyl0][])
  • #​14443: Fix false positive in Layout/EmptyLinesAfterModuleInclusion when include does not have exactly one argument. ([@​issyl0][])
  • #​14424: Fix Style/SafeNavigation cop to preserve existing safe navigation in fixed code. ([@​martinemde][])
  • #​14455: Follow module inclusion with nonzero args with an empty line. ([@​issyl0][])
  • #​14445: Fix false positives for Lint/UselessAssignment with for loops when the variable is referenced in the collection. ([@​earlopain][])
  • #​14447: Fix wrong autocorrect for Style/RedundantCondition with a parenthesised method call in the condition. ([@​earlopain][])
Changes

v1.79.2

Compare Source

Bug fixes
  • #​11664: Cache wasn't getting used when using parallelization. ([@​jvlara][])
  • #​14411: Fix false negatives for Layout/EmptyLinesAroundClassBody when a class body starts with a blank line and defines a multiline superclass. ([@​koic][])
  • #​14413: Fix a false positive for Layout/EmptyLinesAroundArguments with multiline strings that contain only whitespace. ([@​earlopain][])
  • #​14408: Fix false-positive for Layout/EmptyLinesAfterModuleInclusion when inclusion is called with modifier. ([@​r7kamura][])
  • #​14402: Fix false positives for Lint/UselessAssignment when duplicate assignments appear in if branch inside a loop and the variable is used outside while loop. ([@​koic][])
  • #​14416: Fix false positives for Style/MapToHash when using to_h with block argument. ([@​koic][])
  • #​14418: Fix false positives for Style/MapToSet when using to_set with block argument. ([@​koic][])
  • #​14420: Fix false positives for Style/SafeNavigation when ternary expression with operator method call with method chain. ([@​koic][])
Changes
  • #​14407: Register offense for parentheses around method calls with blocks in Style/RedundantParentheses. ([@​lovro-bikic][])

v1.79.1

Compare Source

Bug fixes
  • #​14390: Fix wrong autocorrect for Style/ArgumentsForwarding when the method arguments contain *, ** or &, and the method call contains self as the first argument. ([@​earlopain][])
  • #​14399: Fix false positives for Layout/EmptyLinesAfterModuleInclusion when prepend is used with block methods. ([@​koic][])
  • #​14396: Fix a false positive for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside a ternary operator. ([@​koic][])
  • #​14383: Fix false positives for Lint/UselessAssignment when duplicate assignments in if branch inside a loop. ([@​koic][])
  • #​14394: Fix false positive for Lint/UselessAssignment with retry in rescue branch. ([@​earlopain][])
  • #​14386: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression inside array or hash literals. ([@​koic][])
  • #​14395: Fix LSP handling of URI-encoded paths with spaces. ([@​hakanensari][])
Changes

v1.79.0

Compare Source

New features
Bug fixes
  • #​14373: Fix an error for Style/ParallelAssignment when a lambda with parallel assignment is used on the RHS. ([@​koic][])
  • #​14370: Fix comment duplication bug in Style/AccessorGrouping separated autocorrect. ([@​r7kamura][])
  • #​14377: Fix a false positive for Lint/UselessAssignment when the assignment is inside a loop body. ([@​5hun-s][])
  • #​14355: Fix a false negative for Style/RedundantParentheses when using parentheses around a rescue expression on a one-line. ([@​koic][])
  • #​14354: Fix incorrect autocorrect for Style/AccessModifierDeclarations when using a grouped access modifier declaration. ([@​girasquid][])
  • #​14367: Fix an incorrect autocorrect for Style/SingleLineMethods when defining a single-line singleton method. ([@​koic][])
  • #​14344: Fix incorrect autocorrect for Style/SingleLineMethods when a single-line method definition contains a modifier. ([@​koic][])
  • #​14350: Fix Naming/MethodName cop false positives with define_method and operator names. ([@​viralpraxis][])
  • #​14333: Fix Naming/PredicateMethod ignoring the implicit nil from missing else branches. ([@​earlopain][])
  • #​14356: Fix Style/ItBlockParameter cop error on always style and missing block body. ([@​viralpraxis][])
  • #​14362: Update Lint/RequireRangeParentheses to not register false positives when range elements span multiple lines. ([@​dvandersluis][])
  • #​14309: Update Style/SoleNestedConditional to properly correct assignments within and. ([@​dvandersluis][])
Changes
  • #​14358: Add tsort gem to runtime dependency for Ruby 3.5-dev. ([@​koic][])
  • #​14322: Expand the scope of Style/ItAssignment to consider all local variable and method parameter names. ([@​dvandersluis][])
  • #​14378: Change Layout/SpaceAroundKeyword to offend for missing whitespace between return and opening parenthesis. ([@​lovro-bikic][])
  • #​14360: Make Layout/SpaceAroundOperators aware of alternative and as pattern matchings. ([@​koic][])
  • #​14375: Make Lint/RedundantSafeNavigation aware of builtin convert methods to_s, to_i, to_f, to_a, and to_h. ([@​koic][])
  • #​13835: Add InferNonNilReceiver config to Lint/RedundantSafeNavigation to check previous code paths if the receiver is non-nil. ([@​fatkodima][])
  • #​14381: Offend array1.any? { |elem| array2.member?(elem) } and array1.none? { |elem| array2.member?(elem) } in Style/ArrayIntersect. ([@​lovro-bikic][])

v1.78.0

Compare Source

New features
Bug fixes
  • #​14343: Fix autocorrect code for Style/HashConversion to avoid syntax error. ([@​koic][])
  • #​14346: Avoid requiring parentheses for Style/SingleLineMethods. ([@​koic][])
  • #​14339: Fix bug where specifying --format disables parallelization. ([@​r7kamura][])
  • #​14300: Fix false positives for Lint/DuplicateMethods cop when self-alias trick is used. ([@​viralpraxis][])
  • #​14329: Fix false positives for Lint/LiteralAsCondition when a literal is used inside || in case condition. ([@​koic][])
  • #​14326: Fix additional autocorrection errors in Style/HashConversion for nested Hash[] calls. ([@​dvandersluis][])
  • #​14031: Honor --config options on server mode. ([@​steiley][])
  • #​14319: Fix the following incorrect autocorrect for Lint/RedundantTypeConversion when using parentheses with no arguments or any arguments. ([@​koic][])
  • #​14336: Fix incorrect autocorrect for Style/ItBlockParameter when using a single numbered parameter after multiple numbered parameters in a method chain. ([@​koic][])
  • #​11782: Move pending cops warning out of ConfigLoader. ([@​nobuyo][])
Changes
  • #​14318: Add WaywardPredicates config to Naming/PredicateMethod to handle methods that look like predicates but aren't. ([@​dvandersluis][])
rubocop/rubocop-rails (rubocop-rails)

v2.33.4

Compare Source

Bug fixes
  • #​1530: Fix an incorrect autocorrect for Rails/FindByOrAssignmentMemoization when using endless method definition. ([@​koic][])
  • #​1522: Fix an error for Rails/FindBy when where takes a block. ([@​earlopain][])
  • #​1182: Fix a false positive for Rails/ActionControllerFlashBeforeRender when flash is called in a block. ([@​5hun-s][])

v2.33.3

Compare Source

Bug fixes

v2.33.2

Compare Source

Bug fixes

v2.33.1

Compare Source

Bug fixes
  • #​1508: Fix an error for Rails/TransactionExitStatement when transaction is part of a method chain. ([@​earlopain][])
  • #​1510: Fix Rails/OrderArguments cop false positives when using column index argument. ([@​viralpraxis][])
  • #​1511: Don't register offenses for Rails/WhereExists when exists? is given multiple or splat arguments. ([@​lovro-bikic][])

v2.33.0

Compare Source

New features
Bug fixes
  • #​1497: Fix bugs in Rails/PluckId and Rails/PluckInWhere. ([@​r7kamura][])
  • #​1478: Fix a false negative for Rails/EnvLocal when having preceding conditions. ([@​fatkodima][])
  • #​1505: Fix false negatives for Rails/Pluck when map method call is used in a block without a receiver. ([@​koic][])
  • #​1486: Fix false positives for Rails/Output when p method is a DSL. ([@​koic][])
  • #​1495: Fix false positives for Rails/TransactionExitStatement when break is used in loop in transactions. ([@​koic][])
  • #​1483: Fix autocorrection error when Rails/IndexWith has nested offenses. ([@​lovro-bikic][])
Changes
scoutapp/scout_apm_ruby (scout_apm)

v5.7.1

Compare Source

  • Update error capture API to use context (#​560)
  • Filter env in error records (#​559)

v5.7.0

Compare Source

  • Fix native extension compilation with GCC 15 (#​552)
  • Handle non Rails/ActiveSupport applications w/ sampling (#​557)

v5.6.5

Compare Source

  • Improve error capture API (#​555)
  • Add git sha and agent time tracking to error payloads (#​554)
  • Add support for named spaced jobs in sampling (#​549)
SeleniumHQ/selenium (selenium-webdriver)

v4.36.0

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

  • Add CDP for Chrome 140 and remove 137
  • [BiDi] Create browser module, added user context related methods (#​15371)
  • BiDi get client windows (#​16211)
  • Fix links to exception documentation on website (#​16305)
  • Update unhandled_prompt_behavior capability to support hash syntax (#​16289)

v4.35.0

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

  • Add CDP for Chrome 139 and remove 136
  • Fix typos in javascript & rb (#​16019)
  • Allow to use rubyzip v3 (#​16108)
getsentry/sentry-ruby (sentry-rails)

v5.28.0

Compare Source

Features
  • Auto-enable Rails structured logging when enable_logs is true (#​2721)
Miscellaneous

...

  config.metrics.enabled = true
  config.metrics.enable_code_locations = true
  config.metrics.before_emit = lambda {}
end

Sentry::Metrics.increment('button_click')
Sentry::Metrics.distribution('page_load', 15.0, unit: 'millisecond')
Sentry::Metrics.gauge('page_load', 15.0, unit: 'millisecond')
Sentry::Metrics.set('user_view', 'jane')
Sentry::Metrics.timing('how_long') { sleep(1) }
```
Internal
  • Fix leftover config.logger call in graphql patch (#​2722
  • Add Configuration.before and Configuration.after to run hooks before and after given event (#​2724)

v5.27.1

Compare Source

Features
  • Support for :origin attribute in log events (#​2712)
Bug Fixes
  • Skip including sentry.message.template in the log event attributes if there are no interpolation parameters provided (#​2700)
  • Respect log_level when logging via :std_lib_logger patch (#​2709)
  • Add sentry.origin attribute to log events (#​2712)

v5.27.0

Compare Source

Feature
  • Propagated sampling rates as specified in Traces docs (#​2671)

  • Support for Rails ActiveSupport log subscribers (#​2690)

  • Support for defining custom Rails log subscribers that work with Sentry Structured Logging (#​2689)

    Rails applications can now define custom log subscribers that integrate with Sentry's structured logging system. The feature includes built-in subscribers for ActionController, ActiveRecord, ActiveJob, and ActionMailer events, with automatic parameter filtering that respects Rails' config.filter_parameters configuration.

    To enable structured logging with Rails log subscribers:

    Sentry.init do |config|

... your setup ...

Make sure structured logging is enabled

config.enable_logs = true

Enable default Rails log subscribers (ActionController and ActiveRecord)

config.rails.structured_logging.enabled = true

end


To configure all subscribers:

```ruby
Sentry.init do |config|

### ... your setup ...
### Make sure structured logging is enabled
  config.enable_logs = true

### Enable Rails log subscribers
  config.rails.structured_logging.enabled = true

### Add ActionMailer and ActiveJob subscribers
  config.rails.structured_logging.subscribers.update(
    action_mailer: Sentry::Rails::LogSubscribers::ActionMailerSubscriber,
    active_job: Sentry::Rails::LogSubscribers::ActiveJobSubscriber
  )
end

You can also define custom log subscribers by extending the base class:

class MyCustomSubscriber < Sentry::Rails::LogSubscriber
  attach_to :my_component

  def my_event(event)
    log_structured_event(
      message: "Custom event occurred",
      level: :info,
      attributes: { duration_ms: event.duration }
    )
  end
end

Sentry.init do |config|

### ... your setup ...
### Make sure structured logging is enabled
  config.enable_logs = true

### Enable Rails log subscribers
  config.rails.structured_logging.enabled = true

### Add custom subscriber
  config.rails.structured_logging.subscribers[:my_component] = MyCustomSubscriber
end
  • Introduce structured_logging config namespace (#​2692)
Bug Fixes
  • Silence _perform method redefinition warning (#​2682)
  • Update sentry trace regexp (#​2678)
  • Remove redundant attr_reader (#​2673)
Internal
  • Factor out do_request in HTTP transport (#​2662)
  • Add Sentry::DebugTransport that captures events and stores them as JSON for debugging purposes (#​2664)
  • Add Sentry::DebugStructuredLogger that caputres log events and stores them as JSON to a file for debugging purposes (#​2693)
  • Rails test runner (#​2687)
  • Update common gem deps for development (#​2688)
  • Make devcontainer work with ancient Ruby/Rails (#​2679)
  • Improved devcontainer setup with e2e test mini infra (#​2672)
  • Address various flaky specs
fortissimo1997/simplecov-lcov (simplecov-lcov)

[`v0.9.0


Configuration

📅 Schedule: 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 ) (UTC), Automerge - At any time (no schedule defined).

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

🔕 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 thesis-submit-pr-1462 May 10, 2025 16:21 Inactive
@coveralls
Copy link

coveralls commented May 10, 2025

Coverage Status

coverage: 98.339%. remained the same
when pulling 0e57c4a on renovate/bundler-minor-patch
into a386aa7 on main.

@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 2ed1888 to 7bfee50 Compare May 15, 2025 04:15
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.185.0 Update bundler non-major dependencies to v1.186.0 May 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 7bfee50 to 63befbf Compare May 17, 2025 23:36
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.186.0 Update bundler non-major dependencies to v1.186.1 May 17, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 36c1d51 to 250e0fd Compare May 30, 2025 12:10
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.186.1 Update bundler non-major dependencies to v1.188.0 May 30, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 1532a35 to be43441 Compare June 2, 2025 21:09
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.188.0 Update bundler non-major dependencies to v1.189.0 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from e3a062d to ad80d32 Compare June 10, 2025 23:59
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.189.0 Update bundler non-major dependencies to v1.189.1 Jun 10, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 43ef4a6 to dfa38e9 Compare June 18, 2025 22:59
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.189.1 Update bundler non-major dependencies to v1.190.0 Jun 18, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from b61ee4d to eefd637 Compare June 25, 2025 21:41
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.190.0 Update bundler non-major dependencies to v1.191.0 Jun 25, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from b02da86 to c2615b3 Compare June 30, 2025 15:29
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.191.0 Update bundler non-major dependencies to v1.191.0 - autoclosed Jun 30, 2025
@renovate renovate bot closed this Jun 30, 2025
@renovate renovate bot deleted the renovate/bundler-minor-patch branch June 30, 2025 19:22
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from f2dda2a to f95932a Compare August 26, 2025 21:51
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.197.0 Update bundler non-major dependencies to v1.198.0 Aug 26, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from c2f4a8e to fe6be64 Compare September 2, 2025 13:06
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 242143f to 23c0a81 Compare September 8, 2025 20:43
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.198.0 Update bundler non-major dependencies to v1.199.0 Sep 8, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 6 times, most recently from 4c5519e to 78d99be Compare September 24, 2025 12:21
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from bfddaca to 3063537 Compare September 25, 2025 23:08
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.199.0 Update bundler non-major dependencies to v1.199.1 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from 7ca201e to 8b0392a Compare October 2, 2025 16:37
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 8b0392a to 2b6e155 Compare October 3, 2025 17:50
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 2b6e155 to 0e57c4a Compare October 3, 2025 17:55
@JPrevost JPrevost merged commit ae2614a into main Oct 3, 2025
1 check passed
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.

4 participants