Guillaume Husta
Guillaume Husta
An interesting article with an overview of this concept : - [Critical CSS inlining](https://blog.ninja-squad.com/2021/01/21/angular-cli-11.1/#critical-css-inlining)
In the method `checkForFailure`, scores for CVSS v2 or v3 are indeed mixed when checking, when both are present. Maybe we could add a kind of priority in such a...
Planned : late 2022 - [PostgreSQL 15 Beta 1 Released!](https://www.postgresql.org/about/news/postgresql-15-beta-1-released-2453/) - [PostgreSQL 15 Beta 2 Released!](https://www.postgresql.org/about/news/postgresql-15-beta-2-released-2479/) - [PostgreSQL 15 Beta 3 Released!](https://www.postgresql.org/about/news/postgresql-145-138-1212-1117-1022-and-15-beta-3-released-2496/) - [PostgreSQL 15 Beta 4 Released!](https://www.postgresql.org/about/news/postgresql-15-beta-4-released-2507/) - [PostgreSQL...
Maybe it could be useful ? (Windows 10 + Hyper-V) - [Learning to Use Vagrant on Windows 10](https://docs.microsoft.com/en-us/virtualization/community/team-blog/2017/20170706-vagrant-and-hyper-v-tips-and-tricks)
A good starting point could be to use `org.apache.maven.shared.artifact.filter.collection.ProjectTransitivityFilter` in `org.apache.maven.shared:maven-common-artifact-filters:3.0.1`. Like in : https://github.com/apache/maven-dependency-plugin/blob/maven-dependency-plugin-3.1.0/src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java#L285
The parameter `processDependencyManagementTransitive` belongs to the goal `dependency-updates-report`. It's not present in `display-dependency-updates`. There's also a mention of this parameter here : #291, still unresolved
Planned : late 2024 - [PostgreSQL 17 Beta 1 Released!](https://www.postgresql.org/about/news/postgresql-17-beta-1-released-2865/) - [PostgreSQL 17 Beta 2 Released!](https://www.postgresql.org/about/news/postgresql-17-beta-2-released-2885/) - [PostgreSQL 17 Beta 3 Released!](https://www.postgresql.org/about/news/postgresql-164-158-1413-1316-1220-and-17-beta-3-released-2910/) - [PostgreSQL 17 RC1 Released!](https://www.postgresql.org/about/news/postgresql-17-rc1-released-2926/) - [PostgreSQL 17...
@Aysha-py : No problem, you can go ahead !
OK thanks ! I'll have a look first at : - https://docs.openrewrite.org/reference/yaml-format-reference#preconditions - https://docs.openrewrite.org/recipes/maven/search/dependencyinsight#dependencies-in-use Then I'll let you know if I can manage this.
Example (with docker init) : ``` # Create a non-privileged user that the app will run under. # See https://docs.docker.com/go/dockerfile-user-best-practices/ ARG UID=10001 RUN adduser \ --disabled-password \ --gecos "" \...