Skip to content

Commit

Permalink
Bump the dev-dependencies group across 1 directory with 4 updates (#1…
Browse files Browse the repository at this point in the history
…0191)

* Bump the dev-dependencies group across 1 directory with 4 updates

Bumps the dev-dependencies group with 4 updates in the /updater directory: [rubocop](https://github.com/rubocop/rubocop), [rubocop-performance](https://github.com/rubocop/rubocop-performance), [turbo_tests](https://github.com/serpapi/turbo_tests) and [webmock](https://github.com/bblimke/webmock).


Updates `rubocop` from 1.63.2 to 1.65.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.63.2...v1.65.0)

Updates `rubocop-performance` from 1.21.0 to 1.21.1
- [Release notes](https://github.com/rubocop/rubocop-performance/releases)
- [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-performance@v1.21.0...v1.21.1)

Updates `turbo_tests` from 2.2.3 to 2.2.4
- [Release notes](https://github.com/serpapi/turbo_tests/releases)
- [Commits](serpapi/turbo_tests@v2.2.3...v2.2.4)

Updates `webmock` from 3.23.0 to 3.23.1
- [Changelog](https://github.com/bblimke/webmock/blob/master/CHANGELOG.md)
- [Commits](bblimke/webmock@v3.23.0...v3.23.1)

---
updated-dependencies:
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: rubocop-performance
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: turbo_tests
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: webmock
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update lockfile as dependabot couldn't update it in frozen mode

* Fix sorbet errors

* Fix rubocop errors

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alfred Mazimbe <amazimbe@github.com>
  • Loading branch information
dependabot[bot] and amazimbe authored Jul 15, 2024
1 parent 51bcebe commit a372b63
Show file tree
Hide file tree
Showing 13 changed files with 1,239 additions and 822 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ GEM
sorbet-runtime (>= 0.5.9204)
rdoc (6.6.3.1)
psych (>= 4.0.0)
regexp_parser (2.9.0)
regexp_parser (2.9.2)
reline (0.5.2)
io-console (~> 0.5)
rest-client (2.1.0)
Expand Down Expand Up @@ -283,13 +283,13 @@ GEM
rspec-sorbet (1.9.2)
sorbet-runtime
rspec-support (3.12.1)
rubocop (1.63.2)
rubocop (1.65.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
Expand Down Expand Up @@ -404,7 +404,7 @@ DEPENDENCIES
rake (~> 13)
rspec-its (~> 1.3)
rspec-sorbet (~> 1.9.2)
rubocop (~> 1.63.2)
rubocop (~> 1.65.0)
rubocop-performance (~> 1.21.0)
rubocop-rspec (~> 2.29.1)
rubocop-sorbet (~> 0.8.1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module BundlerResolverSpecGroupSaneEql
def eql?(other)
return false unless other.is_a?(self.class)

super(other)
super
end
end

Expand Down
2 changes: 1 addition & 1 deletion common/dependabot-common.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "rspec-its", "~> 1.3"
spec.add_development_dependency "rspec-sorbet", "~> 1.9.2"
spec.add_development_dependency "rubocop", "~> 1.63.2"
spec.add_development_dependency "rubocop", "~> 1.65.0"
spec.add_development_dependency "rubocop-performance", "~> 1.21.0"
spec.add_development_dependency "rubocop-rspec", "~> 2.29.1"
spec.add_development_dependency "rubocop-sorbet", "~> 0.8.1"
Expand Down
2 changes: 1 addition & 1 deletion common/lib/dependabot/clients/bitbucket.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def pull_requests(repo, source_branch, target_branch, status = %w(OPEN MERGED DE
next_page_url = base_url + pr_path
pull_requests = paginate({ "next" => next_page_url })

pull_requests unless source_branch && target_branch
pull_requests unless source_branch && target_branch # rubocop:disable Lint/Void

pull_requests.select do |pr|
if source_branch.nil?
Expand Down
2 changes: 1 addition & 1 deletion common/lib/dependabot/workspace/git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Git < Base

sig { params(path: T.any(Pathname, String)).void }
def initialize(path)
super(path)
super
@initial_head_sha = T.let(head_sha, String)
configure_git
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def self.required_files_message
end
def initialize(source:, credentials:, repo_contents_path: nil, options: {})
@workflow_files = T.let([], T::Array[DependencyFile])
super(source: source, credentials: credentials, repo_contents_path: repo_contents_path, options: options)
super
end

sig { override.returns(T::Array[DependencyFile]) }
Expand Down
4 changes: 2 additions & 2 deletions go_modules/lib/dependabot/go_modules/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def self.correct?(version)
version = version.gsub(/^v/, "") if version.is_a?(String)
version = version.to_s.split("+").first if version.to_s.include?("+")

super(version)
super
end

sig { override.params(version: VersionParameter).void }
Expand All @@ -52,7 +52,7 @@ def to_s

sig { params(other: Object).returns(T.nilable(Integer)) }
def <=>(other)
result = super(other)
result = super
return if result.nil?
return result unless result.zero?

Expand Down
2 changes: 1 addition & 1 deletion hex/lib/dependabot/hex/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def inspect # :nodoc:
end

def <=>(other)
version_comparison = super(other)
version_comparison = super
return version_comparison unless version_comparison&.zero?

return build_info.nil? ? 0 : 1 unless other.is_a?(Hex::Version)
Expand Down
2 changes: 1 addition & 1 deletion nuget/lib/dependabot/nuget/file_fetcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def self.required_files_message
).void
end
def initialize(source:, credentials:, repo_contents_path: nil, options: {})
super(source: source, credentials: credentials, repo_contents_path: repo_contents_path, options: options)
super

@sln_files = T.let(nil, T.nilable(T::Array[Dependabot::DependencyFile]))
@sln_project_files = T.let(nil, T.nilable(T::Array[Dependabot::DependencyFile]))
Expand Down
2 changes: 1 addition & 1 deletion python/lib/dependabot/python/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def <=>(other)
epoch_comparison = epoch_comparison(other)
return epoch_comparison unless epoch_comparison.zero?

version_comparison = super(other)
version_comparison = super
return version_comparison unless version_comparison&.zero?

post_version_comparison = post_version_comparison(other)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a372b63

Please sign in to comment.