Skip to content

fix: Skip checking @vaadin/flow-frontend package (CP: 24.0)#16140

Merged
manolo merged 2 commits into
24.0from
ignore-flow-frontend-24.0
Mar 6, 2023
Merged

fix: Skip checking @vaadin/flow-frontend package (CP: 24.0)#16140
manolo merged 2 commits into
24.0from
ignore-flow-frontend-24.0

Conversation

@mshabarov

Copy link
Copy Markdown
Contributor

@vaadin/flow-frontend package was used in previous Vaadin versions to alias .target/flow-frontend folder. Since it is present only under "dependencies" object, Flow cannot decide was it added by user or not. Now Flow ignores this legacy package to not re-bundle erroneously.

@vaadin/flow-frontend package was used in previous Vaadin versions to alias .target/flow-frontend folder.
Since it is present only under "dependencies" object, Flow cannot decide was it added by user or not. Now Flow ignores this legacy package to not re-bundle erroneously.
@mshabarov mshabarov changed the title fix: Skip checking @vaadin/flow-frontend package fix: Skip checking @vaadin/flow-frontend package (CP: 24.0) Mar 6, 2023
List<String> dependenciesList = Arrays.stream(dependencies.keys())
// skip checking flow-frontend as it was used in previous
// versions as an alias for ./target/flow-frontend
.filter(pkg -> !"@vaadin/flow-frontend".equals(pkg))

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

9% of developers fix this issue

YodaCondition: The non-constant portion of an equals check generally comes first.


Suggested change
.filter(pkg -> !"@vaadin/flow-frontend".equals(pkg))
.filter(pkg -> !Objects.equals(pkg, "@vaadin/flow-frontend"))

ℹ️ Expand to see all @sonatype-lift commands

You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.

Command Usage
@sonatype-lift ignore Leave out the above finding from this PR
@sonatype-lift ignoreall Leave out all the existing findings from this PR
@sonatype-lift exclude <file|issue|path|tool> Exclude specified file|issue|path|tool from Lift findings by updating your config.toml file

Note: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.


Help us improve LIFT! (Sonatype LiftBot external survey)

Was this a good recommendation for you? Answering this survey will not impact your Lift settings.

[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]

@sonatype-lift

sonatype-lift Bot commented Mar 6, 2023

Copy link
Copy Markdown

🛠 Lift Auto-fix

Some of the Lift findings in this PR can be automatically fixed. You can download and apply these changes in your local project directory of your branch to review the suggestions before committing.1

# Download the patch
curl https://lift.sonatype.com/api/patch/github.com/vaadin/flow/16140.diff -o lift-autofixes.diff

# Apply the patch with git
git apply lift-autofixes.diff

# Review the changes
git diff

Want it all in a single command? Open a terminal in your project's directory and copy and paste the following command:

curl https://lift.sonatype.com/api/patch/github.com/vaadin/flow/16140.diff | git apply

Once you're satisfied, commit and push your changes in your project.

Footnotes

  1. You can preview the patch by opening the patch URL in the browser.

@github-actions

github-actions Bot commented Mar 6, 2023

Copy link
Copy Markdown

Test Results

   947 files  +  44     947 suites  +44   58m 29s ⏱️ + 13m 6s
5 991 tests +124  5 956 ✔️ +124  35 💤 ±0  0 ±0 
6 247 runs  +155  6 205 ✔️ +154  42 💤 +1  0 ±0 

Results for commit 16897b3. ± Comparison against base commit d725403.

♻️ This comment has been updated with latest results.

@mshabarov mshabarov requested review from Artur- and caalador March 6, 2023 10:10
@sonarqubecloud

sonarqubecloud Bot commented Mar 6, 2023

Copy link
Copy Markdown

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@manolo manolo merged commit c49006e into 24.0 Mar 6, 2023
@manolo manolo deleted the ignore-flow-frontend-24.0 branch March 6, 2023 11:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants