-
Notifications
You must be signed in to change notification settings - Fork 2
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
* Added Secret Scanning Alert call to Repository #37
Conversation
* Added Dependabot Alert call to Repository * Added missing Code Scan Alert call to Repository pyi * Created Secret Scanning Alert Object * Created Dependabot Alert Object * Created Security Vulnerability Object * Created Dependency Object * Created Package Object * Fixed Code Scanning Alert object to use already existing CodeScanTool class * Remove Tool object (redundant)
* Fixed bugs discovered with tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!!!
github/DependabotAlert.py
Outdated
def _initAttributes(self): | ||
self._created_at = github.GithubObject.NotSet | ||
self._dependency = github.GithubObject.NotSet | ||
self._dismissed_at = github.GithubObject.NotSet | ||
self._dismissed_comment = github.GithubObject.NotSet | ||
self._dismissed_reason = github.GithubObject.NotSet | ||
self._fixed_at = github.GithubObject.NotSet | ||
self._html_url = github.GithubObject.NotSet | ||
self._number = github.GithubObject.NotSet | ||
self._security_vulnerability = github.GithubObject.NotSet | ||
self._state = github.GithubObject.NotSet | ||
self._updated_at = github.GithubObject.NotSet | ||
self._url = github.GithubObject.NotSet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're missing:
security_advisory
dismissed_by
auto_dismissed_at
Not sure if that was intentional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Security advisory intentionnaly left out since it is a huge object and not needed for our use case.
Fixed missing dismissed_by attributes. It was missing indeed.
I added auto dismissed_at added although not used in our case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good. My aim here is to increase the likelyhood that this gets merged upstream eventually. But if you don't need them and they slow you down, we can go like this
github/SecretScanningAlert.py
Outdated
self._created_at = github.GithubObject.NotSet | ||
self._html_url = github.GithubObject.NotSet | ||
self._locations_url = github.GithubObject.NotSet | ||
self._number = github.GithubObject.NotSet | ||
self._push_protection_bypassed = github.GithubObject.NotSet | ||
self._push_protection_bypassed_at = github.GithubObject.NotSet | ||
self._push_protection_bypassed_by = github.GithubObject.NotSet | ||
self._resolution = github.GithubObject.NotSet | ||
self._resolution_comment = github.GithubObject.NotSet | ||
self._resolved_at = github.GithubObject.NotSet | ||
self._resolved_by = github.GithubObject.NotSet | ||
self._secret = github.GithubObject.NotSet | ||
self._secret_type = github.GithubObject.NotSet | ||
self._secret_type_display_name = github.GithubObject.NotSet | ||
self._state = github.GithubObject.NotSet | ||
self._url = github.GithubObject.NotSet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're missing:
updated_at
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
corrected in next commit
github/SecurityVulnerability.py
Outdated
def _initAttributes(self): | ||
self._package = github.GithubObject.NotSet | ||
self._severity = github.GithubObject.NotSet | ||
self._vulnerable_version_range = github.GithubObject.NotSet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're missing:
first_patched_version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentionally left out but now that I think of it, I will add it.
* fix missing attributes in SecretScanningAlert, DependabotAlert, SecurityVulnerability
@jonapich, do you have a documentation, so we become autonomous at shipping this? |
Add last missing elements for certifier
First PR was to allowed creation of v1 certifier (in progress), this will complete it.