-
Notifications
You must be signed in to change notification settings - Fork 12
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
Enhance get_advisories to Handle Empty Advisories and Basis Version Overrides #122
Enhance get_advisories to Handle Empty Advisories and Basis Version Overrides #122
Conversation
a5c0b9e
to
d1c0ca7
Compare
lib/http_requests.py
Outdated
@@ -157,21 +157,33 @@ def get_advisories(branch_name): | |||
if not current_advisories: | |||
current_advisories = {} | |||
|
|||
override_applied = False |
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.
This can be removed
d1c0ca7
to
fa7268f
Compare
…verrides This commit updates the get_advisories function in http_requests.py. Changes include: - Filtering out releases with empty advisories. - Checking for 'advisories!' overrides not just in the current version, but also in each basis version while processing. This ensures that any empty or specific advisories from the basis versions are appropriately applied to the current version.
fa7268f
to
6abee7b
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ashwindasr The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
4acb828
into
openshift-eng:master
This commit updates the get_advisories function in http_requests.py. Changes include: