Skip to content

Bump the minor-and-patch group across 1 directory with 6 updates#186

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/minor-and-patch-7c379ebfdd
Open

Bump the minor-and-patch group across 1 directory with 6 updates#186
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/minor-and-patch-7c379ebfdd

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 20, 2026

Bumps the minor-and-patch group with 2 updates in the / directory: rake and graphql.

Updates rake from 13.3.1 to 13.4.2

Commits
  • 503b8ec v13.4.2
  • 46038e7 Merge pull request #723 from ruby/fix/testopts-preserve-existing-value
  • 604a3d9 Isolate TESTOPTS env in TestRakeTestTask setup/teardown
  • 5886caa Preserve ENV["TESTOPTS"] when verbose is enabled
  • 92193ac v13.4.1
  • b74be0b Merge pull request #721 from ruby/fix/add-options-to-gemspec
  • 829f66d Add lib/rake/options.rb to gemspec
  • 2d55bc4 v13.4.0
  • 1415070 Exclude dependabot updates from release note
  • b3dc948 Merge pull request #713 from pvdb/simplify_standard_system_dir
  • Additional commits viewable in compare view

Updates rubocop from 1.86.0 to 0.16.0

Changelog

Sourced from rubocop's changelog.

0.16.0 (25/12/2013)

New features

  • #612: BracesAroundHashParameters cop does auto-correction. ([@​dblock][])
  • #614: ParenthesesAroundCondition cop does auto-correction. ([@​dblock][])
  • #624: EmptyLines cop does auto-correction. ([@​dblock][])
  • New Rails cop DefaultScope ensures default_scope is called properly with a block argument. ([@​bbatsov][])
  • All cops now support the Include param, which specifies the files on which they should operate. ([@​bbatsov][])
  • All cops now support the Exclude param, which specifies the files on which they should not operate. ([@​bbatsov][])
  • #631: IndentationWidth cop now detects inconsistent indentation between lines that should have the same indentation. ([@​jonas054][])
  • #649: EmptyLinesAroundBody cop does auto-correction. ([@​dblock][])
  • #657: Alias cop does auto-correction. ([@​dblock][])
  • Rake task now support setting formatters. ([@​pmenglund][])
  • #653: CaseIndentation cop is now configurable with parameters IndentWhenRelativeTo and IndentOneStep. ([@​jonas054][])
  • #654: For cop is now configurable to enforce either each (default) or for. ([@​jonas054][])
  • #661: EndAlignment cop is now configurable for alignment with keyword (default) or variable. ([@​jonas054][])
  • Allow to overwrite the severity of a cop with the new Severity param. ([@​codez][])
  • New cop FlipFlop checks for flip flops. ([@​agrimm][])
  • #577: Introduced MethodDefParentheses to allow for for requiring either parentheses or no parentheses in method definitions. Replaces DefWithoutParentheses. ([@​skanev][])
  • #693: Generation of parameter values (i.e., not only Enabled: false) in rubocop-todo.yml by the --auto-gen-config option is now supported for some cops. ([@​jonas054][])
  • New cop AccessorMethodName checks accessor method names for non-idiomatic names like get_attribute and set_attribute. ([@​bbatsov][])
  • New cop PredicateName checks the names of predicate methods for non-idiomatic names like is_something, has_something, etc. ([@​bbatsov][])

Changes

  • Removed SymbolNames as it was generating way too many false positives. ([@​bbatsov][])
  • Renamed ReduceArguments to SingleLineBlockParams and made it configurable. ([@​bbatsov][])

Bugs fixed

  • Handle properly heredocs in StringLiterals cop. ([@​bbatsov][])
  • Fix SpaceAroundOperators to not report missing space around operator for def self.method *args. ([@​jonas054][])
  • Properly handle ['AllCops']['Includes'] and ['AllCops']['Excludes'] when passing config via -c. ([@​fancyremarker][], [@​codez][])
  • #611: Fix crash when loading an empty config file ([@​sinisterchipmunk][])
  • Fix DotPosition cop with trailing style for method calls on same line. ([@​vonTronje][])
  • #627: Fix counting of slashes in complicated regexps in RegexpLiteral cop. ([@​jonas054][])
  • #638: Fix bug in auto-correct that changes each{ |x| to each d o |x|. ([@​jonas054][])
  • #418: Stop searching for configuration files above the work directory of the isolated environment when running specs. ([@​jonas054][])
  • Fix error on implicit match conditionals (e.g. if /pattern/; end) in MultilineIfThen. ([@​agrimm][])
  • #651: Handle properly method arguments in RedundantSelf. ([@​bbatsov][])
  • #628: Allow self.Foo in RedundantSelf cop. ([@​chulkilee][])
  • #668: Fix crash in EndOfLine that occurs when default encoding is US_ASCII and an inspected file has non-ascii characters. ([@​jonas054][])
  • #664: Accept oneline while when condition has local variable assignment. ([@​emou][])
  • Fix auto-correct for MethodDefParentheses when parentheses are required. ([@​skanev][])

0.15.0 (06/11/2013)

New features

... (truncated)

Commits
  • 6e1d595 Release 0.16.0
  • 0498828 Merge pull request #696 from yujinakayama/parser-2.1
  • 2f46ed9 Test against Ruby 2.1.0-rc1 on Travis CI
  • 17e8944 Handle API change of Parser::Diagnostic.new
  • cbf6a85 Revert "[Fix #647] Workaround for Ruby 2.1"
  • 29630e1 Use Parser 2.1 or later
  • 26ecd40 New cop PredicateName
  • 1ac25b8 New cop AccessorMethodName
  • faccb8d Rename set_options_config to options_config=
  • 7c259f5 Merge pull request #693 from jonas054/improve_rubocop_todo
  • Additional commits viewable in compare view

Updates rubocop-rake from 0.7.1 to 0.5.1

Changelog

Sourced from rubocop-rake's changelog.

0.7.1 (2025-02-16)

Bug fixes

  • #59: Fix incorrect plugin version when displaing rubocop -V. ([@​koic][])

0.7.0 (2025-02-16)

New features

Changes

  • #57: Drop support Ruby 2.5 and 2.6 for runtime environment. ([@​koic][])

0.6.0 (2021-06-29)

Changes

0.5.1 (2020-02-14)

Bug fixes

  • #28: Fix Rake/Desc to avoid an error when task is not a task definition. ([@​pocke][])

0.5.0 (2019-10-31)

New features

0.4.0 (2019-10-13)

New features

0.3.1 (2019-10-06)

Bug fixes

  • #17: Filter target files for Rake/ClassDefinitionInTask cop. ([@​pocke][])

0.3.0 (2019-09-25)

... (truncated)

Commits
  • 419e82e Bump up version to 0.5.1
  • 6388b59 Merge pull request #32 from pocke/fix-28
  • 925e827 [Fix #28] Fix Rake/Desc to avoid an error when task is not a task definition
  • 0d82e93 Merge pull request #31 from pocke/ruby-26-ci
  • 8d852f0 Enable CI with Ruby 2.6
  • 285e76d Merge pull request #30 from pocke/require-false
  • 9fa8546 Add require: false to example code in README
  • 80f3fe9 Merge pull request #29 from koic/ci_against_ruby_2_7
  • c624b39 CI against Ruby 2.7
  • 5437591 Merge pull request #27 from koic/move_line_length_cop_to_layout_department
  • Additional commits viewable in compare view

Updates rubocop-rspec from 3.9.0 to 1.4.0

Changelog

Sourced from rubocop-rspec's changelog.

3.9.0 (2026-01-07)

  • Fix a false positive for RSpec/LeakyLocalVariable when variables are used only in example metadata (e.g., skip messages). ([@​ydah])
  • Fix a false positive for RSpec/ScatteredSetup when the hook is defined inside a class method. ([@​d4rky-pl])
  • Fix a false positive for RSpec/DescribedClass inside dynamically evaluated blocks (class_eval, module_eval, instance_eval, class_exec, module_exec, instance_exec). ([@​sucicfilip])
  • Add new cop RSpec/Output. ([@​kevinrobell-st])
  • Add new cop RSpec/DiscardedMatcher to detect matchers in void context (e.g. missing .and between compound matchers). ([@​ydakuka])

3.8.0 (2025-11-12)

  • Add new cop RSpec/LeakyLocalVariable. ([@​lovro-bikic])
  • Bump RuboCop requirement to +1.81. ([@​ydah])
  • Fix a false positive for RSpec/LetSetup when let! used in outer scope. ([@​ydah])
  • Fix a false positive for RSpec/ReceiveNever cop when allow(...).to receive(...).never. ([@​ydah])
  • Fix detection of nameless doubles with methods in RSpec/VerifiedDoubles. ([@​ushi-as])
  • Improve an offense message for RSpec/RepeatedExample cop. ([@​ydah])
  • Let RSpec/SpecFilePathFormat leverage ActiveSupport inflections when configured. ([@​corsonknowles], [@​bquorning])

3.7.0 (2025-09-01)

  • Mark RSpec/IncludeExamples as SafeAutoCorrect: false. ([@​yujideveloper])
  • Fix a false positive for RSpec/LeakyConstantDeclaration when defining constants in explicit namespaces. ([@​naveg])
  • Add support for error matchers (raise_exception and raise_error) to RSpec/Dialect. ([@​lovro-bikic])
  • Don't register offenses for RSpec/DescribedClass within Data.define blocks. ([@​lovro-bikic])
  • Add autocorrection support for RSpec/IteratedExpectation for single expectations. ([@​lovro-bikic])
  • Exclude all cops from inspecting factorybot files, except if explicitly included. ([@​Mth0158])
  • Fix a false positive for RSpec/ExcessiveDocstringSpacing when receivers are not RSpec methods. ([@​ydah])

3.6.0 (2025-04-18)

  • Fix false positive in RSpec/Pending, where it would mark the default block it as an offense. ([@​bquorning])
  • Fix issue when Style/ContextWording is configured with a Prefix being interpreted as a boolean, like on. ([@​sakuro])
  • Add new RSpec/IncludeExamples cop to enforce using it_behaves_like over include_examples. ([@​dvandersluis])
  • Change RSpec/ScatteredSetup to allow around hooks to be scattered. ([@​ydah])
  • Fix an error RSpec/ChangeByZero cop when without expect block. ([@​lee266])
  • Fix a false positive for RSpec/DescribedClass when SkipBlocks is true and numblocks are used. ([@​earlopain])

3.5.0 (2025-02-16)

  • Don't let RSpec/PredicateMatcher replace respond_to? with two arguments with the RSpec respond_to matcher. ([@​bquorning])
  • Fix RSpec/PredicateMatcher support for eql and equal matchers. ([@​bquorning])
  • Pluginfy RuboCop RSpec. ([@​koic])

3.4.0 (2025-01-20)

  • Fix RSpec/SortMetadata cop to limit sorting to trailing metadata arguments. ([@​cbliard])
  • Replace RSpec/StringAsInstanceDoubleConstant with RSpec/VerifiedDoubleReference configured to only support constant class references. ([@​corsonknowles])
  • Fix RSpec/EmptyExampleGroup cop false positive when a simple conditional is used inside an iterator. ([@​lovro-bikic])

3.3.0 (2024-12-12)

... (truncated)

Commits

Updates solargraph from 0.58.3 to 0.13.0

Changelog

Sourced from solargraph's changelog.

0.58.3 - March 9, 2026

  • Ignore workspace dependencies in cache processes (#1174)

0.58.2 - January 19, 2026

  • Avoid rbs pollution (#1146)
  • Fix 'solargraph pin --references ClassName' private method call (#1150)
  • Improve memory efficiency of Position class (#1054)
  • Raise InvalidOffsetError for offsets > text (#1155)

0.58.1 - January 2, 2026

  • Normalize line endings to LF (#1142)

0.58.0 - January 1, 2026

  • Faster constant resolution (#1083)
  • [regression] Handle RBS static method aliases (#1094)
  • More type fills and shims (#1005)
  • Fix resolution in blocks in type checker (#890)
  • Annotation fixes for strong typechecking (#1057)
  • Remove dead code (#1077)
  • Fix flakey spec (#1080)
  • Fix bad sexpr generation in op_asgn (#1089)
  • Opt-in for MFA requirement (#730)
  • [regression] Fix resolution issues with namespaces from YARD (#1097)
  • Improve a pin combination case around selfy types (#1024)
  • Rescue reference errors in hosts (#1105)
  • Relax bundler runtime dependency version constraint to support newer versions (#1125)
  • Remove stale Pathname test (#1135)
  • Enable strong type checking in CI (#928)
  • Stale sg-ignore
  • Use rbs 3.9.5 in tests (#1136)
  • Drop broken 'namespaces' method (#1065)
  • Add ActiveRecord example from RBS (#1074)
  • Keep workspace directories as absolute paths (#1076)
  • Handle bad gem_dir from gemspec object (#1079)
  • Test for absolute require paths (#1137)
  • [regression] Fix resolution of ambiguous argument types (#1098)
  • Remove sg-ignore for String#=~ (#1138)
  • Allow levels to be changed for typechecking rules in .solargraph.yml (#1126)

0.57.0 - September 16, 2025

  • Support ActiveSupport::Concern pattern for class methods (#948)
  • More CI checks (#996)
  • Linting / type annotation fixes (#999)
  • Avoid overlapping chdir calls in multiple threads (#1007)
  • Fix kwarg generation in ApiMap::SourceToYard (#1003)
  • Enable Steep typechecking of Solargraph code (#1004)
  • Fix convention requires (#1008)
  • Plugin Util: Add Combination Priority (#1010)
  • [regression] Fix crash while typechecking files with Struct use (#1031)
  • Remove yard reference from gemfile (#1033)

... (truncated)

Commits
  • 6695042 Thread for preparing workspace.
  • 1c1f9dc Fencepost error in code_for.
  • c80b940 ApiMap replaces new with initialize.
  • c0fafcd Removed stale and test code.
  • 9c559c7 Stale code.
  • 43f857b Refactored source and pins.
  • 8ce134a Constant pins.
  • 1dbab4b Track requires.
  • 8c325c7 Search YardMap for superclass instance methods.
  • 25a8617 Class variables in nil guards and specs.
  • Additional commits viewable in compare view

Updates graphql from 2.5.22 to 2.5.23

Changelog

Sourced from graphql's changelog.

2.5.23

New features

Bug fixes

  • Fix Dataloader state on list items #5597
Commits
  • b0f812b 2.5.23
  • 5a50495 Merge pull request #5597 from rmosolgo/list-dataloader-bug
  • fa8fd61 Add test for Dataloader state
  • 170c5df Use fresh state for list item dataloader fibers
  • 3584553 Merge pull request #5582 from rmosolgo/exec-next-fixes
  • dc3b87f generate id method for exec-next
  • fce77a0 Fix call signature
  • be42b03 Merge branch 'master' into exec-next-fixes
  • fa35e79 Merge pull request #5589 from rmosolgo/exec-next-subscriptions
  • becbe89 Merge pull request #5591 from rmosolgo/optimize-fields-will-merge
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor-and-patch group with 2 updates in the / directory: [rake](https://github.com/ruby/rake) and [graphql](https://github.com/rmosolgo/graphql-ruby).


Updates `rake` from 13.3.1 to 13.4.2
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.3.1...v13.4.2)

Updates `rubocop` from 1.86.0 to 0.16.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/v0.16.0/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.86.0...v0.16.0)

Updates `rubocop-rake` from 0.7.1 to 0.5.1
- [Release notes](https://github.com/rubocop/rubocop-rake/releases)
- [Changelog](https://github.com/rubocop/rubocop-rake/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rake@v0.7.1...v0.5.1)

Updates `rubocop-rspec` from 3.9.0 to 1.4.0
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-rspec@v3.9.0...v1.4.0)

Updates `solargraph` from 0.58.3 to 0.13.0
- [Changelog](https://github.com/castwide/solargraph/blob/master/CHANGELOG.md)
- [Commits](castwide/solargraph@v0.58.3...0.13.0)

Updates `graphql` from 2.5.22 to 2.5.23
- [Release notes](https://github.com/rmosolgo/graphql-ruby/releases)
- [Changelog](https://github.com/rmosolgo/graphql-ruby/blob/master/CHANGELOG.md)
- [Commits](rmosolgo/graphql-ruby@v2.5.22...v2.5.23)

---
updated-dependencies:
- dependency-name: rake
  dependency-version: 13.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: minor-and-patch
- dependency-name: rubocop-rake
  dependency-version: 0.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-rspec
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: minor-and-patch
- dependency-name: solargraph
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: graphql
  dependency-version: 2.5.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Apr 20, 2026
@sonarqubecloud
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants