Skip to content

Commit

Permalink
Merge pull request #10809 from dependabot/dependabot/bundler/updater/…
Browse files Browse the repository at this point in the history
…dev-dependencies-4814bc55f0

Bump the dev-dependencies group across 1 directory with 5 updates
  • Loading branch information
markhallen authored Oct 18, 2024
2 parents 4d77f48 + 5df338f commit f0ba684
Show file tree
Hide file tree
Showing 7 changed files with 3,626 additions and 3,092 deletions.
13 changes: 6 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -275,24 +275,23 @@ GEM
rspec-sorbet (1.9.2)
sorbet-runtime
rspec-support (3.12.1)
rubocop (1.65.0)
rubocop (1.67.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 (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.3)
rubocop-ast (1.32.3)
parser (>= 3.3.1.0)
rubocop-capybara (2.20.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.25.1)
rubocop (~> 1.41)
rubocop-performance (1.21.0)
rubocop-performance (1.22.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rspec (2.29.1)
Expand Down Expand Up @@ -396,8 +395,8 @@ DEPENDENCIES
rake (~> 13)
rspec-its (~> 1.3)
rspec-sorbet (~> 1.9.2)
rubocop (~> 1.65.0)
rubocop-performance (~> 1.21.0)
rubocop (~> 1.67.0)
rubocop-performance (~> 1.22.1)
rubocop-rspec (~> 2.29.1)
rubocop-sorbet (~> 0.8.5)
simplecov (~> 0.22.0)
Expand Down
4 changes: 2 additions & 2 deletions common/dependabot-common.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ 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.65.0"
spec.add_development_dependency "rubocop-performance", "~> 1.21.0"
spec.add_development_dependency "rubocop", "~> 1.67.0"
spec.add_development_dependency "rubocop-performance", "~> 1.22.1"
spec.add_development_dependency "rubocop-rspec", "~> 2.29.1"
spec.add_development_dependency "rubocop-sorbet", "~> 0.8.5"
spec.add_development_dependency "simplecov", "~> 0.22.0"
Expand Down
2 changes: 1 addition & 1 deletion common/lib/dependabot/git_metadata_fetcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def uri_with_auth(uri)

uri.scheme = "https" if uri.scheme != "http"

if !uri.password && cred && cred.fetch("username", nil) && cred.fetch("password", nil)
if !uri.password && cred&.fetch("username", nil) && cred.fetch("password", nil)
# URI doesn't have authentication details, but we have credentials
uri.user = URI.encode_www_form_component(cred["username"])
uri.password = URI.encode_www_form_component(cred["password"])
Expand Down
Loading

0 comments on commit f0ba684

Please sign in to comment.