You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorting by version is important to determine what are the next and latest non-vulnerable versions. The process implies transforming a queryset to a list sorted by a key function converting the version string to a univers object.
We could consider storing the version relative order as a model field and order the model based on that field to get an always sorted package model.
There are a few consideration for this:
Using an integer field would need either to keep gaps or to renumber this field if there are versions that are added in between existing versions. Therefore using a float field would help ensure that there is always a float in between two versions when inserting a new version.
We would need to know if a version if a pre-release, possibly as a package boolean flag
With these two extra fields, each time a new package version is added, we would recompute its ordering once by sorting versions using univers and then give the proper order float value to the float field in between two versions, before the first or after the last version and then saving the package.
We could then have a database-backed queryset with a sort order on versions, and an optional filter on pre-releases. We should then be able to directly query for the next and latest non-vulnerable versions (possibly with an annotate) without having an intermediate break in the queryset chain because of the sort by version.
Alternatively, or concurrently we could also store versions-related computed flags and relationships on a package instance such as:
is_vulnerable if a package version is affected by any vulnerability (though this is now computed as an annotation that seems fast enough)
next_non_vulnerable and latest_non_vulnerable could be stored relationships that are updated when new versions and new vulnerabilities are added (though these could be computed as an annotation if we enable storing versions order as suggested above)
affected_by and fixing relationships to vulnerabilities to replace the PackageRelatedVulnerability many to many and its problematic fix boolean field as tracked separately in:
For packages, I would like to enable the sorting of versions using database queries.
Why? we have performance issues such as:
Sorting by version is important to determine what are the next and latest non-vulnerable versions. The process implies transforming a queryset to a list sorted by a key function converting the version string to a univers object.
We could consider storing the version relative order as a model field and order the model based on that field to get an always sorted package model.
There are a few consideration for this:
With these two extra fields, each time a new package version is added, we would recompute its ordering once by sorting versions using
univers
and then give the proper order float value to the float field in between two versions, before the first or after the last version and then saving the package.We could then have a database-backed queryset with a sort order on versions, and an optional filter on pre-releases. We should then be able to directly query for the next and latest non-vulnerable versions (possibly with an annotate) without having an intermediate break in the queryset chain because of the sort by version.
Alternatively, or concurrently we could also store versions-related computed flags and relationships on a package instance such as:
is_vulnerable
if a package version is affected by any vulnerability (though this is now computed as an annotation that seems fast enough)next_non_vulnerable
andlatest_non_vulnerable
could be stored relationships that are updated when new versions and new vulnerabilities are added (though these could be computed as an annotation if we enable storing versions order as suggested above)affected_by
andfixing
relationships to vulnerabilities to replace thePackageRelatedVulnerability
many to many and its problematicfix
boolean field as tracked separately in:The text was updated successfully, but these errors were encountered: