-
Notifications
You must be signed in to change notification settings - Fork 41
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: v2 qa for semantic date range version limitation #2561
base: main
Are you sure you want to change the base?
Conversation
🦋 Changeset detectedLatest commit: 16042ca The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
const version = await getUi5Version(); | ||
const isUI5VersionNotSupported = | ||
isLowerThanMinimalUi5Version(version, { major: 1, minor: 128 }) || | ||
(version.major === 1 && (version.minor === 96 || version.minor === 108 || version.minor === 120)); |
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.
Shouldn't 1.96
, 1.108
and 1.120
should be also supported? Currently it looks like all the versions below 1.128
are not supported.
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.
adapted the logic with test (with exact version 1.96). the condition was not handling it correctly.
Quality Gate passedIssues Measures |
restrict the 'Semantic Date Range" in filter bar quick-action for certain UI5 versions which are not supported for V2 application.