Gergely Fábián

Results 16 issues of Gergely Fábián

When running a target like this: ``` # Important to clean, as the files can stay from a previous bazel build with a lower Bazel version. bazel clean bazel run...

How could I start using Stryker4s with Scala, when using Bazel as a build system? I see there is already support for sbt and Maven. What could be the easiest...

If I set up a dependency on a version like "2.0.17+15-d6f2c09b+20230921-1427-SNAPSHOT" (e.g. sbt tends to generate such versions for snapshots), then the coursier generated json (`coursier-deps.json`) contains: ``` "coord": "groupId:artifactId:2.0.17+15-d6f2c09b+20230921-1427-SNAPSHOT",...

For CVE: https://scout.docker.com/vulnerabilities/id/CVE-2022-42919?s=ubuntu&n=python3.11&ns=ubuntu&t=deb&osn=ubuntu&osv=22.04&vr=%3E%3D0 I have Python 3.11 installed with: ``` add-apt-repository ppa:deadsnakes/ppa \ && apt-get install -y python3.11 python3.11-venv python3.11-distutils \ && python3.11 -m ensurepip \ ``` Scout reports: ```...

Example CVE: https://scout.docker.com/vulnerabilities/id/CVE-2023-41915?s=ubuntu&n=pmix&ns=ubuntu&t=deb&osn=ubuntu&osv=22.04&vr=%3E%3D0 Compare: 1. Installing package ``` FROM ubuntu:22.04 RUN apt-get update && apt-get install -y libpmix2 ``` CVE is detected. 2. Building from source ``` FROM ubuntu:22.04 RUN...

Detecting errors for cross compilation is somehow broken, and produces an additional Null Pointer Exception. How to reproduce: Apply this patch in latest rules_scala code: ``` diff --git a/examples/crossbuild/3_select/BUILD b/examples/crossbuild/3_select/BUILD...