Skip to content

Update bundler non-major dependencies to v0.4.0 #213

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 10, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
bot_challenge_page 0.3.0 -> 0.4.0 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.6 age adoption passing confidence
rubocop (source, changelog) 1.74.0 -> 1.75.5 age adoption passing confidence
rubocop-rails (source, changelog) 2.30.3 -> 2.31.0 age adoption passing confidence
selenium-webdriver (source, changelog) 4.29.1 -> 4.32.0 age adoption passing confidence
sqlite3 2.6.0-arm64-darwin -> 2.6.0 age adoption passing confidence

Release Notes

samvera-labs/bot_challenge_page (bot_challenge_page)

v0.4.0

Compare Source

v0.3.1

Compare Source

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

Compare Source

New features
Bug fixes
SeleniumHQ/selenium (selenium-webdriver)

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)

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.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 14947075499

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 1 unchanged line in 1 file lost coverage.
  • Overall coverage decreased (-0.2%) to 98.49%

Files with Coverage Reduction New Missed Lines %
app/controllers/search_controller.rb 1 98.11%
Totals Coverage Status
Change from base Build 14913700718: -0.2%
Covered Lines: 587
Relevant Lines: 596

💛 - Coveralls

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