Skip to content

Commit

Permalink
adding the unresolvable_version to parse_error_details
Browse files Browse the repository at this point in the history
  • Loading branch information
robaiken committed Dec 18, 2024
1 parent 84f9f0b commit 56728db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/lib/dependabot/errors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ def self.parser_error_details(error)
"error-type": "git_dependencies_not_reachable",
"error-detail": { "dependency-urls": error.dependency_urls }
}
when Dependabot::UnresolvableVersionError
{
"error-type": "unresolvable_version",
"error-detail": { dependencies: error.dependencies }
}
when Dependabot::NotImplemented
{
"error-type": "not_implemented",
Expand Down

0 comments on commit 56728db

Please sign in to comment.