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

Update version ordering for packages #1613

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Rishi-source
Copy link

@Rishi-source Rishi-source commented Oct 13, 2024

Issue: #1549

Hey everyone, this pull request brings a few key improvements to how we handle package versions. Here’s what’s new:

Version Handling Improvements:

introduced a new Version Handler class to make version parsing much more reliable and standardized. It now covers:

Date-based versions like YYYY-MM-DD.
Versions that have underscores (e.g., 1.2.3_4).
Versions with build metadata like 1.2.3-alpha.
Even Git commit hashes (those long 40-character strings).

This will help us ensure package versions are consistently and accurately ordered.

Batch Processing:

We’ve added batch processing for updating packages, with a default batch size of 1,000. This means we can process larger datasets without slowing things down.
The command goes through each package batch-by-batch and updates the version_order and is_pre_release fields to maintain consistency.

Error Handling:

Improved the error handling for invalid version strings. We’re now better at logging and identifying problematic versions, which should make debugging easier.

Pre-Release Flag Identification:

We’ve also improved how we identify pre-release versions, so it’s clearer which versions are stable and which are still in the pre-release phase.

How to Run:

  1. You can first Run command python manage.py update_packages so that it can create a version order for all the existing entries.
  2. Then you can Clearly see that now the packages is sorted on the basis of the version.If you add a new version entry for a same package then it would adjust the version order in some float value accordingly.

Signed-off-by: Rishi Garg <rishigarg2503@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants