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

fix: buggy nextY logic for maxOCPVersion #3416

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

Commits on Oct 22, 2024

  1. fix: buggy nextY logic for maxOCPVersion

    The handling logic of versions that are pre-releases by the
    nextY() func (that determines the next Y release) was erroneous.
    
    Eg: nextY("4.16.0") returns "4.17" correctly, but nextY("4.16.0-rc1")
    returns "4.16" (the correct value is still "4.17").
    
    This PR fixes the nextY function.
    
    Also has improvement for the "not-upgradeable to next OCP" version message.
    anik120 committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    17f6109 View commit details
    Browse the repository at this point in the history