Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: debricked/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.6.1
Choose a base ref
...
head repository: debricked/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.4
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 14, 2025

  1. use new soot-wrapper build flag for specific java versions (#290)

    * use new soot-wrapper build flag for specific java versions
    
    * add debricked temp folder exclusion for fingerprinting
    filip-debricked authored Jan 14, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    6a0388b View commit details

Commits on Jan 15, 2025

  1. Update SootWrapper jar to java 21 (#291)

    filip-debricked authored Jan 15, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    acf7acc View commit details
  2. Updates to new soot-wrapper with updated dependencies (#292)

    filip-debricked authored Jan 15, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    19f7bca View commit details
Showing with 3 additions and 2 deletions.
  1. +1 −1 .github/workflows/release.yml
  2. BIN internal/callgraph/language/java/embedded/SootWrapper.jar
  3. +2 −1 internal/fingerprint/exclusion.go
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ jobs:
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
run: |
cd java/common/
mvn clean package -X -DskipTests
mvn clean package -X -DskipTests -Pjava${{ matrix.java-version }}
- name: Create archive with generated JARs
if: needs.calculate-checksum.outputs.hash != needs.calculate-checksum.outputs.prev_hash
Binary file modified internal/callgraph/language/java/embedded/SootWrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion internal/fingerprint/exclusion.go
Original file line number Diff line number Diff line change
@@ -28,7 +28,8 @@ var defaultFingerprintExclusions = DefaultFingerprintExclusionList{
".git",
"obj",
"bower_components",
".m2", // Default Maven directory for settings.xml and dependencies
".m2", // Default Maven directory for settings.xml and dependencies
".debrickedTmpFolder", // temporary debricked data
},
Files: []string{
"gradlew", "gradlew.bat", "mvnw", "mvnw.cmd", "gradle-wrapper.jar", "maven-wrapper.jar",