Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bootsnap 1.18.4 -> 1.18.6 age adoption passing confidence
dotenv-rails (changelog) 3.1.7 -> 3.1.8 age adoption passing confidence
graphql (source, changelog) 2.4.14 -> 2.5.8 age adoption passing confidence
rubocop (source, changelog) 1.74.0 -> 1.75.8 age adoption passing confidence
rubocop-rails (source, changelog) 2.30.3 -> 2.32.0 age adoption passing confidence
selenium-webdriver (source, changelog) 4.29.1 -> 4.33.0 age adoption passing confidence
sentry-rails (source, changelog) 5.23.0 -> 5.24.0 age adoption passing confidence
sentry-ruby (source, changelog) 5.23.0 -> 5.24.0 age adoption passing confidence

Release Notes

bkeepers/dotenv (dotenv-rails)

v3.1.8

Compare Source

Thanks to Stoked Seagull Software for sponsoring this release of dotenv!
Need help with a software project but don't know where to begin? Stoked Seagull can help.

Interested in sponsoring dotenv?

What's Changed

New Contributors

Full Changelog: bkeepers/dotenv@v3.1.7...v3.1.8

rmosolgo/graphql-ruby (graphql)

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

v2.4.16

Compare Source

New features
Bug fixes
  • Parser: raise when variable definitions don't include a type name #​5305
  • PerfettoTrace: Don't create zombie ActiveSupport::Notifications subscribers #​5307

v2.4.15

Compare Source

New features
  • Schema.from_definition: support custom base type classes #​5282
  • Schema.from_definition: support type extensions #​5281
Bug fixes
  • Handle GraphQL::ExecutionError from resolve_type #​5274
  • Backtrace: handle inline fragments # 5274
  • run_graphql_field: fix when .authorized? calls Dataloader #​5289
  • InputObject: run validators even when custom def prepare is present #​5285
  • Multiplex: don't attempt to execute zero queries #​5278
rubocop/rubocop (rubocop)

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

v1.75.5

Compare Source

Bug fixes
  • #​14148: Fix an infinite loop error for Layout/SpaceAfterSemicolon with Layout/SpaceBeforeSemicolon when a sequence of semicolons appears. ([@​koic][])
  • #​14145: Fix Lint/ArrayLiteralInRegexp cop error on empty interpolation. ([@​viralpraxis][])
  • #​14072: Fix autocorrect issue in Layout/HashAlignment. ([@​jonas054][])
  • #​14131: Fix false positives for Style/ArgumentsForwarding when using anonymous block argument forwarding to a method with a block. ([@​koic][])
  • #​14140: Fix Layout/LeadingCommentSpace to allow splitting long inline RBS comment signatures across multiple lines. ([@​Morriar][])
  • #​14147: Fix Lint/LiteralAsCondition cop error on if without body. ([@​viralpraxis][])
  • #​14151: Fix Lint/Void cop error on nested empty begin. ([@​viralpraxis][])
  • #​13547: Fix Style/IdenticalConditionalBranches cop failure in case of if node with implicit then. ([@​viralpraxis][])
  • #​14146: Fix Style/MethodCallWithArgsParentheses cop error on complex numbers when EnforcedStyle is set to omit_parentheses. ([@​viralpraxis][])
  • #​14137: Fix Style/TrailingCommaInArguments cop error if EnforcedStyleForMultiline is set to comma. ([@​viralpraxis][])
Changes
  • #​14144: Layout/SpaceInsideArrayLiteralBrackets make aware of array pattern matching. ([@​koic][])
  • #​14142: Layout/SpaceInsideHashLiteralBraces make aware of hash pattern matching. ([@​koic][])

v1.75.4

Compare Source

Bug fixes
  • #​14123: Fix an infinite loop error for Lint/BooleanSymbol when using the rocket hash syntax with a boolean symbol key. ([@​koic][])
  • #​14134: Fix an error for Style/ComparableBetween when comparing the value with itself. ([@​earlopain][])
  • #​14111: Fix an error for Style/SafeNavigation when the RHS of && is a complex || expression composed of && conditions. ([@​koic][])
  • #​14129: Fix false positives for Style/ArgumentsForwarding when using default positional arg, keyword arg, and block arg in Ruby 3.1. ([@​koic][])
  • #​14110: Fix false positives for Style/RedundantParentheses when parens around basic conditional as the second argument of a parenthesized method call. ([@​koic][])
  • #​14120: Fix false positives for Style/RedundantParentheses when parens around unparenthesized method call as the second argument of a parenthesized method call. ([@​koic][])
  • #​14133: Fix Lint/LiteralAsCondition autocorrect when a literal is the condition of an elsif followed by an else. ([@​zopolis4][])
  • #​14116: Make Style/TrailingCommaInArguments cop aware of trailing commas in [] method call. ([@​viralpraxis][])
  • #​14114: Fix Style/ClassAndModuleChildren cop error on tab-intended compactable modules. ([@​viralpraxis][])
Changes

v1.75.3

Compare Source

Bug fixes
  • #​13676: Allow RuboCop to inspect hidden directories if they are explicitly provided. ([@​viralpraxis][])
  • #​14080: Allow writing RBS::Inline annotation #: after end keyword in Style/CommentedKeyword. ([@​dak2][])
  • #​14075: Fix an error for Layout/EmptyLineAfterGuardClause when calling a method on the result of a single-line if with return. ([@​koic][])
  • #​14067: Fix false negatives for Style/RedundantParentheses when using parens around singleton method body. ([@​koic][])
  • #​14070: Fix false positives for EnforcedStyleForMultiline: diff_comma of Style/TrailingCommaInArrayLiteral and Style/TrailingCommaInHashLiteral when trailing comma with comment. ([@​koic][])
  • #​14092: Fix false negative for Style/RedundantParentheses when using some operator methods with a parenthesized argument. ([@​koic][])
  • #​14103: Fix Layout/MultilineOperationIndentation cop error on indexasgn node without arguments. ([@​viralpraxis][])
  • #​14089: Fix redundant current directory prefix regexp. ([@​sferik][])
  • #​14099: Fix Style/ClassAndModuleChildren cop error on one-liner class definition and nested enforced style. ([@​viralpraxis][])
  • #​14083: Fix Style/ConditionalAssignment cop error on one-line if-then-else. ([@​viralpraxis][])
  • #​14104: Fix Style/ConditionalAssignment cop error on indexed assignment without arguments. ([@​viralpraxis][])
  • #​14084: Fix Style/RedundantLineContinuation cop error on multiline assignment with line continuation. ([@​viralpraxis][])
  • #​14096: Fix error for Style/SafeNavigation with longer && chain (e.g. a && a.b && a.b.c). ([@​lovro-bikic][])
  • #​14068: Fix wrong autocorrection for Style/MapIntoArray when using push or append with hash argument without braces. ([@​lovro-bikic][])
Changes

v1.75.2

Compare Source

Changes
Bug fixes
  • #​14041: Fix an error when using ERB templated config YAML with server mode. ([@​koic][])
  • #​14048: Do not emit a warning for a zero-sized file while checking if it is executable. ([@​viralpraxis][])
  • #​14053: Fix incorrect autocorrect for Lint/DeprecatedOpenSSLConstant cipher constant argument is not cbc. ([@​koic][])
  • #​14051: Fix incorrect autocorrect for Style/RedundantCondition when true is used as the true branch and the condition takes arguments. ([@​koic][])
  • #​14062: Fix false positives for Lint/ReturnInVoidContext when returning inside define_method or a nested singleton method. ([@​earlopain][])
  • #​14057: Fix Style/ConditionalAssignment cop error on dynamic string node in branch. ([@​viralpraxis][])
  • #​14047: Fix Style/FrozenStringLiteralComment cop errors on emacs-styled magic comment. ([@​viralpraxis][])

v1.75.1

Compare Source

Changes
  • #​14038: Rename EnforcedStyle: allow_named_parameter to EnforcedStyle: only_numbered_parameters in Style/ItBlockParameter. ([@​koic][])

v1.75.0

Compare Source

New features
Bug fixes
  • #​14022: Fix an error for Style/HashFetchChain when no arguments are given to fetch. ([@​koic][])
  • #​14028: Fix false negative for Layout/MultilineMethodParameterLineBreaks when class method definitions are used. ([@​vlad-pisanov][])
  • #​14027: Fix false negative for Layout/LineLength when autocorrecting class method definitions. ([@​vlad-pisanov][])
  • #​8099: Fix infinite loop between Layout/SpaceAroundOperators and Layout/HashAlignment with EnforcedHashRocketStyle being an array containing table. ([@​dvandersluis][])
  • #​14021: Fix handling of long heredoc lines with SplitStrings enabled. ([@​mauro-oto][])
  • #​13968: Fix InternalAffairs/RedundantDescribedClassAsSubject cop error on missing describe. ([@​viralpraxis][])
  • #​14036: Fix false negative for Lint/ShadowingOuterLocalVariable when block local variable is used inside a condition. ([@​lovro-bikic][])
  • #​13990: Fix a false positive for Lint/UselessAssignment when a variable is reassigned in a different branch. ([@​eugeneius][])
  • #​14012: Fix incorrect autocorrections for Style/SoleNestedConditional. ([@​lovro-bikic][])
  • #​14020: Fix comment autocorrection for Style/IfInsideElse. ([@​lovro-bikic][])
Changes
rubocop/rubocop-rails (rubocop-rails)

v2.32.0

Compare Source

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

v2.31.0

Compare Source

New features
Bug fixes
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

v4.32.0

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

  • Add CDP for Chrome 136 and remove 133
  • log at info level with names and values when Guards#add_condition used
  • Add PrintOptions Implementation for Ruby WebDriver (#​15158)
  • [ruby] fix lint for print_options.rb (#​15608)
  • add enable_downloads to attr_accessor for all options classes
  • make logging of test guards debug level not info
  • Set remote active protocol in Firefox to BiDi only
  • handle issue with selenium manager exit status being nil (#​15676)
  • Add websocket-port parameter to firefox service (#​15458)

v4.31.0

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

  • Add support for 135 and remove 132
  • Remove the pre-compiled atoms from trunk
  • Allow symbols again to be passed on delete_cookie (#​15519)

v4.30.1

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

  • put back the driver#script method that was inadvertently deleted

v4.30.0

=========================
Ruby:

  • Raise error when trying to delete a cookie without a name (#​15386)
  • Remove deprecated html 5 web storage features
  • Remove deprecated script alias for execute_script
  • Add debug message for location of screenshot

BiDi:

  • Add set viewport for browsing context (#​15290)
  • Add support for handling user prompt (#​15291)
  • Add Browser context activate command (#​15365)

DevTools:

  • Add support for 134 and remove 131
  • Remove support for v85 since no longer required by Firefox
  • Add support for additional target types (#​15416)
getsentry/sentry-ruby (sentry-rails)

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)

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 timdex-pr-869 May 9, 2025 14:19 Inactive
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from fad80bb to 42059ae Compare May 15, 2025 04:21
@renovate renovate bot changed the title Update bundler non-major dependencies to v3.1.8 Update bundler non-major dependencies to v1.18.5 May 15, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 42059ae to 67f4c1b Compare May 16, 2025 09:39
@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 16, 2025
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from af5ab8a to de9fab3 Compare May 22, 2025 09:52
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch 2 times, most recently from 3e026e4 to 25525dd Compare May 29, 2025 09:09
@renovate renovate bot force-pushed the renovate/bundler-minor-patch branch from 25525dd to 31ba9e5 Compare May 29, 2025 12:51
@mitlib mitlib temporarily deployed to timdex-pr-869 May 29, 2025 18:33 Inactive
@JPrevost JPrevost merged commit 9c8d53a into main May 29, 2025
3 checks passed
@renovate renovate bot deleted the renovate/bundler-minor-patch branch May 29, 2025 18: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.

2 participants