Skip to content

Commit 93514ae

Browse files
Update jar-callgraph.jar (#1454)
* update jar-callgraph.jar
1 parent 5f03c78 commit 93514ae

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Changelog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# FOSSA CLI Changelog
22

3-
## Unreleased
4-
3+
## 3.9.29
54
- install scripts: Surface curl errors and display http status code correctly. ([#1456](https://github.com/fossas/fossa-cli/pull/1456))
5+
- Update jar-callgraph version to 1.0.2 [#1454](https://github.com/fossas/fossa-cli/pull/1454)
66

77
## 3.9.28
88

docs/features/vuln_reachability.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ cat fossa.debug.json | jq '.bundleReachabilityEndpoint'
119119
}
120120
```
121121

122-
FOSSA CLI uses [jar-callgraph-1.0.1.jar](../../scripts/jar-callgraph-1.0.1.jar) to infer call path edges.
123-
FOSSA CLI uses `java -jar jar-callgraph-1.0.1.jar ./path/to/your/build.jar` command to record edges from
122+
FOSSA CLI uses [jar-callgraph-1.0.2.jar](../../scripts/jar-callgraph-1.0.2.jar) to infer call path edges.
123+
FOSSA CLI uses `java -jar jar-callgraph-1.0.2.jar ./path/to/your/build.jar` command to record edges from
124124
the your target jar. If you are running into issues with reachability, please confirm that you can execute
125-
`java -jar jar-callgraph-1.0.1.jar ./path/to/your/build.jar` on your environment.
125+
`java -jar jar-callgraph-1.0.2.jar ./path/to/your/build.jar` on your environment.
126126

127127
<!--
128128
## How do I debug reachability from endpoint?
Binary file not shown.

src/App/Fossa/Reachability/Jar.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ import System.FilePath qualified as FP
3535
newtype CallGraphJarParser = CallGraphJarParser {jar :: BS.ByteString}
3636
deriving (Eq, Ord, Show)
3737

38-
-- This jar is from: https://github.com/fossas/jar-callgraph/pull/52
38+
-- This jar is from: https://github.com/fossas/jar-callgraph/pull/58
3939
execJar :: CallGraphJarParser
40-
execJar = CallGraphJarParser{jar = $(embedFile' "scripts/jar-callgraph-1.0.1.jar")}
40+
execJar = CallGraphJarParser{jar = $(embedFile' "scripts/jar-callgraph-1.0.2.jar")}
4141

4242
withUnpackedPlugin ::
4343
( Has (Lift IO) sig m

0 commit comments

Comments
 (0)