Skip to content

Update bundler non-major dependencies to v1.18.6 #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 7, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bootsnap 1.18.4 -> 1.18.6 age adoption passing confidence
csv (changelog) 3.3.4 -> 3.3.5 age adoption passing confidence
graphql (source, changelog) 2.4.16 -> 2.5.9 age adoption passing confidence
http (changelog) 5.2.0 -> 5.3.1 age adoption passing confidence
rubocop (source, changelog) 1.75.5 -> 1.76.1 age adoption passing confidence
rubocop-graphql (changelog) 1.5.5 -> 1.5.6 age adoption passing confidence
rubocop-minitest (source, changelog) 0.38.0 -> 0.38.1 age adoption passing confidence
rubocop-rails (source, changelog) 2.31.0 -> 2.32.0 age adoption passing confidence
selenium-webdriver (source, changelog) 4.32.0 -> 4.33.0 age adoption passing confidence
sentry-rails (source, changelog) 5.23.0 -> 5.25.0 age adoption passing confidence
sentry-ruby (source, changelog) 5.23.0 -> 5.25.0 age adoption passing confidence
sqlite3 2.6.0-aarch64-linux-gnu -> 2.7.0 age adoption passing confidence
turbo-rails (changelog) 2.0.13 -> 2.0.16 age adoption passing confidence

Release Notes

ruby/csv (csv)

v3.3.5: csv 3.3.5 - 2025-06-01

Compare Source

Improvements
  • docs: Fixed StringScanner document URL.
    • GH-343
    • Patch by Petrik de Heus
Thanks
  • Petrik de Heus
rmosolgo/graphql-ruby (graphql)

v2.5.9

Compare Source

New features
  • Improve metadata on Scalar coercion errors #​5375
Bug fixes
  • Directives: fix validation of Ruby values on definition directive arguments #​5377
  • loads:: fix typechecking of Interface loads: values #​5379

v2.5.8

Compare Source

New features
  • Timeout: support disabling during a query #​5361
  • Query::Partial: support running a fragment in isolation #​5362
Bug fixes
  • Visibility: improve performance for loadable? #​5355
  • RequiredValidator: Fix typo #​5359
  • Scalar validation: remove redundant infinity handling #​5358
  • Directives: fix validation of schema definition directives #​5368

v2.5.7

Compare Source

Bug fixes
  • PerfettoTrace: Handle non-ascii strings #​5351
  • Partial: Add #selected_operation_name to support GraphQL::Current #​5353

v2.5.6

Compare Source

New features
  • Execution: Add Query#run_partials for running sub-trees of valid queries #​5183

v2.5.5

Compare Source

Bug fixes
  • Visibility: fix when ::Rails doesn't have .env #​5339
  • Compatibility: restore default (legacy) behavior when no setting is configured #​5343
  • ActiveSupport::Notifications: fix fiber resume without previous event #​5335
  • Simplify non-null input object argument handling #​5333
  • Fix compatibility with ruby-head #​5342

v2.5.4

Compare Source

Bug fixes
  • ActiveRecordSource: Support composite primary keys #​5330
  • ActiveRecordAssociationSource: Support has_many associations #​5331
  • Remove broken Context#path method (use #current_path instead) #​5332

v2.5.3

Compare Source

Deprecations
  • Validation: two non-spec behaviors are deprecated:
    • When a query includes two scalar fields of different types which may occur in the same place in the response, the query was previously allowed. The spec says it should be rejected. This version emits a warning in this case. See Schema.allow_legacy_invalid_return_type_conflicts for migration support. #​4351
    • When a query selects a field which returns a Union, but doesn't make any subselections on the Union, the spec says the query should be rejected as invalid but previous GraphQL-Ruby allowed it. It now emits a warning. See Schema.allow_legacy_invalid_empty_selections_on_union for migration support #​5322
  • Complexity: several bugs about merging complexity cost across branches of a query have been fixed but require opting in. They may produce higher complexity scores. See Schema.complexity_cost_calculation_mode for migration support. #​4843
New features
  • AlwaysVisible: improve speed (using Schema::Visibility) #​5326
  • Return more descriptive errors when non-nullable list elements are null #​5301
  • Visibility: improve performance on large schemas #​5325

v2.5.2

Compare Source

New features
  • Resolver: accept deprecation_reason #​5320
Bug fixes
  • Visibility: hide argument types whose uses are all hidden (to match Warden) #​5291
  • InputObject: fix validation for nested input object with prepare: method configs #​5321

v2.5.1

Compare Source

Bug fixes
  • Datadog trace: fix Dataloader source tracing method #​5318
  • Sentry trace: handle nil current span #​5313

v2.5.0

Compare Source

Breaking changes
  • Subscriptions: GraphQL-Ruby now implements the spec's requirement that a subscription has only one root selection #​5250
  • Datadog trace: the custom prepare_span hook now receives an execution-related object instead of a hash of keywords. #​5298
New features
  • Tracers: APM tracers have been updated to reflect Dataloader's fiber stops and starts #​5296 #​5298

v2.4.17

Compare Source

httprb/http (http)

v5.3.1

Compare Source

v5.3.0

Compare Source

rubocop/rubocop (rubocop)

v1.76.1

Compare Source

Bug fixes
  • #​14245: Fix an error for Lint/EmptyInterpolation when using primitives in interpolation. ([@​ka8725][])
  • #​14233: Fix an error for Style/SafeNavigation when using ternary expression with index access call. ([@​koic][])
  • #​14236: Fix an error for Style/SafeNavigation when using ternary expression with operator method call. ([@​koic][])
  • #​14249: Fix false positives for Style/RedundantArrayFlatten when Array#join is used with an argument other than the default nil. ([@​koic][])
  • #​14239: Fix false positives for Style/RedundantParentheses when using one-line in pattern matching in operator. ([@​koic][])
  • #​14240: Fix Naming/PredicateMethod cop error on empty parentheses method body. ([@​viralpraxis][])
  • #​14235: Fix Style/SafeNavigation cop error on indexed assignment in ternary expression. ([@​viralpraxis][])
  • #​14247: Fix Style/SafeNavigation invalid autocorrection on double colon method call. ([@​viralpraxis][])

v1.76.0

Compare Source

New features
Bug fixes
  • #​14228: Fix a false positive for Style/RedundantParentheses when using a one-line rescue expression as a method argument. ([@​koic][])
  • #​14224: Fix false negatives for Style/RedundantParentheses when using one-line pattern matching. ([@​koic][])
  • #​14205: False negatives in Style/SafeNavigation when a ternary expression is used in a method argument. ([@​steiley][])
  • #​14226: Fix Lint/LiteralAsCondition autocorrect when branches of a condition have comments. ([@​zopolis4][])
Changes

v1.75.8

Compare Source

Bug fixes
  • #​14191: Fix Lint/FloatComparison cop to detect floating-point number comparisons in case statements. ([@​daisuke][])
  • #​14209: Fix an error for Style/RedundantFormat with invalid format arguments. ([@​earlopain][])
  • #​14200: Fix false positives for Style/DefWithParentheses when using endless method definition with empty parentheses and a space before =. ([@​koic][])
  • #​14197: Fix infinite loop error for EnforcedStyle: with_fixed_indentation of Layout/ArgumentAlignment and EnforcedStyle: consistent of Layout/FirstArgumentIndentation and Layout/HashAlignment. ([@​koic][])
  • #​14204: Fix Layout/EmptyLinesAroundAccessModifier cop error on trailing access modifier. ([@​viralpraxis][])
  • #​14198: Fix Lint/DuplicateMethods cop error on to option is dynamically generated and prefix is enabled. ([@​viralpraxis][])
  • #​14199: Fix wrong autocorrection for Style/MapToHash with destructuring argument. ([@​lovro-bikic][])
  • #​14050: Modify condition for rubocop:todo EOL comment. ([@​jonas054][])

v1.75.7

Compare Source

Bug fixes
  • #​14185: Fix an error for Style/IfUnlessModifierOfIfUnless when using nested modifier. ([@​koic][])
  • #​14192: Fix negatives for Layout/SpaceBeforeBrackets when using space between method argument parentheses and left bracket. ([@​koic][])
  • #​14189: Fix incorrect autocorrect for Layout/SpaceBeforeBrackets when using space between receiver and left brackets, and a space inside left bracket. ([@​koic][])
  • #​14170: Fix Style/AccessModifierDeclarations cop error on semicolon after modifier. ([@​viralpraxis][])
  • #​14195: Fix Style/AccessModifierDeclarations cop error on symbol modifier without surrounding scope. ([@​viralpraxis][])
  • #​14172: Fix Style/AccessModifierDeclarations cop false positives when there are no method definitions and style is inline. ([@​viralpraxis][])
  • #​14193: Fix Lint/UselessAssignment cop error when using nested assignment with splat. ([@​earlopain][])
Changes

v1.75.6

Compare Source

Bug fixes
  • #​14176: Fix an error for Style/MultilineIfModifier when using nested modifier. ([@​koic][])
  • #​14077: Change nil representation in todo file comments. ([@​jonas054][])
  • #​14164: Fix an error for Lint/UselessAssignment when variables are assigned using unary operator in chained assignment and remain unreferenced. ([@​koic][])
  • #​14173: Fix an error for Style/StringConcatenation when using implicit concatenation with string interpolation. ([@​koic][])
  • #​14177: Fix false positives for Style/SoleNestedConditional when using nested if and not in condition. ([@​koic][])
  • #​14152: Fix Layout/SpaceInsideArrayLiteralBrackets cop error on array pattern without brackets. ([@​viralpraxis][])
  • #​14153: Fix Style/PercentQLiterals cop error on Unicode escape sequence. ([@​viralpraxis][])
Changes
DmitryTsepelev/rubocop-graphql (rubocop-graphql)

v1.5.6

Compare Source

rubocop/rubocop-minitest (rubocop-minitest)

v0.38.1

Compare Source

Bug fixes
rubocop/rubocop-rails (rubocop-rails)

v2.32.0

Compare Source

Bug fixes
Changes
  • #​234: Use globs that are compatible with Engine or Packwerk. ([@​tdeo][])
SeleniumHQ/selenium (selenium-webdriver)

v4.33.0

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

  • Add CDP for Chrome 137 and remove 134
  • Let firefox choose the bidi port by default (#​15727)
  • Upgrade to Ruby 3.2
getsentry/sentry-ruby (sentry-rails)

v5.25.0

Compare Source

Features
  • Support for before_send_log (#​2634)
  • Default user attributes are now automatically added to logs (#​2647)
Bug Fixes
  • Structured logging consumes way less memory now (#​2643)

v5.24.0

Compare Source

Features
  • Add new sidekiq config report_only_dead_jobs (#​2581)

  • Add max_nesting of 10 to breadcrumbs data serialization (#​2583)

  • Add sidekiq config propagate_traces to control trace header injection (#​2588)

    If you use schedulers you can get one large trace with all your jobs which is undesirable.
    We recommend using the following to propagate traces only from the Rails server and not elsewhere.

    config.sidekiq.propagate_traces = false unless Rails.const_defined?('Server')
  • Only expose active_storage keys on span data if send_default_pii is on (#​2589)

  • Add new Sentry.logger for Structured Logging feature (#​2620).

    To enable structured logging you need to turn on the enable_logs configuration option:

    Sentry.init do |config|

... your setup ...

config.enable_logs = true

end


Once you configured structured logging, you get access to a new `Sentry.logger` object that can be
used as a regular logger with additional structured data support:

```ruby
Sentry.logger.info("User logged in", user_id: 123)

Sentry.logger.error("Failed to process payment",
  transaction_id: "tx_123",
  error_code: "PAYMENT_FAILED"
)

You can also use message templates with positional or hash parameters:

Sentry.logger.info("User %{name} logged in", name: "Jane Doe")

Sentry.logger.info("User %s logged in", ["Jane Doe"])

Any other arbitrary attributes will be sent as part of the log event payload:

### Here `user_id` and `action` will be sent as extra attributes that Sentry Logs UI displays
Sentry.logger.info("User %{user} logged in", user: "Jane", user_id: 123, action: "create")

⚠️ When enable_logs is true, previous Sentry.logger should no longer be used for internal SDK
logging - it was replaced by Sentry.configuration.sdk_logger and should be used only by the SDK
itself and its extensions.

  • New configuration option called active_job_report_on_retry_error which enables reporting errors on each retry error (#​2617)
Bug Fixes
  • Gracefully fail on malformed utf-8 breadcrumb message (#​2582)
  • Fix breadcrumb serialization error message to be an object (#​2584)
  • Fix compatibility issues with sidekiq-cron 2.2.0 (#​2591)
  • Update sentry-sidekiq to work correctly with Sidekiq 8.0 and its new timestamp format (#​2570)
  • Ensure we capture exceptions after each job retry (#​2597)
Internal
  • Remove user_segment from DSC (#​2586)
  • Replace logger with sdk_logger (#​2621)
  • Sentry.logger is now deprecated when enable_logs is turned off. It's original behavior was ported to Sentry.configuration.sdk_logger. Please notice that this logger is internal and should only be used for SDK-specific logging needs. (#​2621)
hotwired/turbo-rails (turbo-rails)

v2.0.16

Compare Source

v2.0.14

Compare Source

What's Changed

New Contributors

Full Changelog: hotwired/turbo-rails@v2.0.13...v2.0.14


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 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-231 May 7, 2025 22:38 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from c16584e to 308f09a Compare May 14, 2025 18:46
@renovate renovate bot changed the title Update bundler non-major dependencies to v2.5.6 Update bundler non-major dependencies to v1.18.5 May 14, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 308f09a to 8cbd398 Compare May 15, 2025 12:24
@renovate renovate bot changed the title Update bundler non-major dependencies to v1.18.5 Update bundler non-major dependencies to v1.18.6 May 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 8fb8be3 to 7cc0029 Compare May 21, 2025 17:25
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 3 times, most recently from 4bf804c to 51eb97d Compare May 28, 2025 22:45
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 6 times, most recently from a153954 to ccd64b1 Compare June 7, 2025 12:55
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 4 times, most recently from 4ffa87e to 566843f Compare June 9, 2025 22:29
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 566843f to 7b60545 Compare June 12, 2025 11:39
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