-
Notifications
You must be signed in to change notification settings - Fork 169
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
Faulty comparison for buildIdentifier in FrontendVersion #11352
Comments
Fix buildIdentifier comparison so values comaper correctly. fixes #11352
Fix buildIdentifier comparison so values compare correctly. fixes #11352
Fix buildIdentifier comparison so values compare correctly. fixes #11352
Fix buildIdentifier comparison so values compare correctly. fixes #11352
Fix buildIdentifier comparison so values compare correctly. The problem caused e.g. alphas greater than 10 to be considered older than 2-9. fixes #11352
Fix buildIdentifier comparison so values compare correctly. The problem caused e.g. alphas greater than 10 to be considered older than 2-9. fixes #11352
Fix buildIdentifier comparison so values compare correctly. The problem caused e.g. alphas greater than 10 to be considered older than 2-9. fixes #11352 Co-authored-by: caalador <[email protected]>
Fix buildIdentifier comparison so values compare correctly. The problem caused e.g. alphas greater than 10 to be considered older than 2-9. fixes #11352 # Conflicts: # flow-server/src/main/java/com/vaadin/flow/server/frontend/FrontendVersion.java
#11366) Fix buildIdentifier comparison so values compare correctly. The problem caused e.g. alphas greater than 10 to be considered older than 2-9. fixes #11352 Co-authored-by: caalador <[email protected]>
This ticket/PR has been released with platform 20.0.4. For prerelease versions, it will be included in its final version. |
This ticket/PR has been released with platform 14.6.6. For prerelease versions, it will be included in its final version. |
This ticket/PR has been released with platform 21.0.0.beta1 and is also targeting the upcoming stable 21.0.0 version. |
This ticket/PR has been released with platform 14.7.0.alpha3 and is also targeting the upcoming stable 14.7.0 version. |
FrontendVersion compares wrong the version when comparing the buildIdentifier string.
With input
new FrontendVersion("2.0.0-alpha6").isOlderThan(new FrontendVersion("2.0.0-alpha13"))
Expected
true
Actual
false
The text was updated successfully, but these errors were encountered: