-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7620 from dependabot/brrygrdn/add-support-for-upd…
…ate-types [Grouped Updates] Add support for grouping by dependency type
- Loading branch information
Showing
11 changed files
with
2,866 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
updater/spec/fixtures/bundler_grouped_by_types/original/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rack", "~> 2.1.4" | ||
gem "toml-rb", "~> 2.2.0" | ||
|
||
group :development do | ||
gem "rubocop", "~> 0.76.0" | ||
end |
35 changes: 35 additions & 0 deletions
35
updater/spec/fixtures/bundler_grouped_by_types/original/Gemfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
citrus (3.0.2) | ||
jaro_winkler (1.5.6) | ||
parallel (1.23.0) | ||
parser (3.2.2.3) | ||
ast (~> 2.4.1) | ||
racc | ||
racc (1.7.1) | ||
rack (2.1.4.3) | ||
rainbow (3.1.1) | ||
rubocop (0.76.0) | ||
jaro_winkler (~> 1.5.1) | ||
parallel (~> 1.10) | ||
parser (>= 2.6) | ||
rainbow (>= 2.2.2, < 4.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 1.4.0, < 1.7) | ||
ruby-progressbar (1.13.0) | ||
toml-rb (2.2.0) | ||
citrus (~> 3.0, > 3.0) | ||
unicode-display_width (1.6.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
rack (~> 2.1.4) | ||
rubocop (~> 0.76.0) | ||
toml-rb (~> 2.2.0) | ||
|
||
BUNDLED WITH | ||
1.14.6 |
10 changes: 10 additions & 0 deletions
10
updater/spec/fixtures/bundler_grouped_by_types/updated_development_deps/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rack", "~> 2.1.4" | ||
gem "toml-rb", "~> 2.2.0" | ||
|
||
group :development do | ||
gem "rubocop", "~> 1.54.1" | ||
end |
44 changes: 44 additions & 0 deletions
44
updater/spec/fixtures/bundler_grouped_by_types/updated_development_deps/Gemfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
citrus (3.0.2) | ||
json (2.6.3) | ||
language_server-protocol (3.17.0.3) | ||
parallel (1.23.0) | ||
parser (3.2.2.3) | ||
ast (~> 2.4.1) | ||
racc | ||
racc (1.7.1) | ||
rack (2.1.4.3) | ||
rainbow (3.1.1) | ||
regexp_parser (2.8.1) | ||
rexml (3.2.5) | ||
rubocop (1.54.1) | ||
json (~> 2.3) | ||
language_server-protocol (>= 3.17.0) | ||
parallel (~> 1.10) | ||
parser (>= 3.2.2.3) | ||
rainbow (>= 2.2.2, < 4.0) | ||
regexp_parser (>= 1.8, < 3.0) | ||
rexml (>= 3.2.5, < 4.0) | ||
rubocop-ast (>= 1.28.0, < 2.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 2.4.0, < 3.0) | ||
rubocop-ast (1.29.0) | ||
parser (>= 3.2.1.0) | ||
ruby-progressbar (1.13.0) | ||
toml-rb (2.2.0) | ||
citrus (~> 3.0, > 3.0) | ||
unicode-display_width (2.4.2) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
rack (~> 2.1.4) | ||
rubocop (~> 1.54.1) | ||
toml-rb (~> 2.2.0) | ||
|
||
BUNDLED WITH | ||
1.14.6 |
10 changes: 10 additions & 0 deletions
10
updater/spec/fixtures/bundler_grouped_by_types/updated_production_deps/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "rack", "~> 3.0.8" | ||
gem "toml-rb", "~> 2.2.0" | ||
|
||
group :development do | ||
gem "rubocop", "~> 0.76.0" | ||
end |
35 changes: 35 additions & 0 deletions
35
updater/spec/fixtures/bundler_grouped_by_types/updated_production_deps/Gemfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.2) | ||
citrus (3.0.2) | ||
jaro_winkler (1.5.6) | ||
parallel (1.23.0) | ||
parser (3.2.2.3) | ||
ast (~> 2.4.1) | ||
racc | ||
racc (1.7.1) | ||
rack (3.0.8) | ||
rainbow (3.1.1) | ||
rubocop (0.76.0) | ||
jaro_winkler (~> 1.5.1) | ||
parallel (~> 1.10) | ||
parser (>= 2.6) | ||
rainbow (>= 2.2.2, < 4.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 1.4.0, < 1.7) | ||
ruby-progressbar (1.13.0) | ||
toml-rb (2.2.0) | ||
citrus (~> 3.0, > 3.0) | ||
unicode-display_width (1.6.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
rack (~> 3.0.8) | ||
rubocop (~> 0.76.0) | ||
toml-rb (~> 2.2.0) | ||
|
||
BUNDLED WITH | ||
1.14.6 |
Oops, something went wrong.