Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Feature DependencyDiff CLI (Version 0 Part 1) #2030

Merged
merged 17 commits into from
Jul 12, 2022
4 changes: 2 additions & 2 deletions pkg/check-depdiff/dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ type DependencyCheckResult struct {
PackageURL *string `json:"packageUrl"`

// SrcRepoURL is the source repository URL of the dependency.
SrcRepoURL *string `json:"srcRepoUrl"`
SrcRepoURL *string `json:"sourceRepositoryURL"`
aidenwang9867 marked this conversation as resolved.
Show resolved Hide resolved

// ChangeType indicates whether the dependency is added, updated, or removed.
ChangeType *ChangeType `json:"changeType"`

// ManifestFileName is the name of the manifest file of the dependency, such as go.mod for Go.
ManifestPath *string `json:"manifest"`
ManifestPath *string `json:"manifestPath"`

// Ecosystem is the name of the package management system, such as NPM, GO, PYPI.
Ecosystem *string `json:"ecosystem"`
Expand Down