File tree 4 files changed +7
-7
lines changed
src/App/Fossa/Reachability
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# FOSSA CLI Changelog
2
2
3
- ## Unreleased
4
-
3
+ ## 3.9.29
5
4
- 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 )
6
6
7
7
## 3.9.28
8
8
Original file line number Diff line number Diff line change @@ -119,10 +119,10 @@ cat fossa.debug.json | jq '.bundleReachabilityEndpoint'
119
119
}
120
120
` ` `
121
121
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
124
124
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.
126
126
127
127
<!--
128
128
# # How do I debug reachability from endpoint?
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ import System.FilePath qualified as FP
35
35
newtype CallGraphJarParser = CallGraphJarParser { jar :: BS. ByteString}
36
36
deriving (Eq , Ord , Show )
37
37
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
39
39
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" )}
41
41
42
42
withUnpackedPlugin ::
43
43
( Has (Lift IO ) sig m
You can’t perform that action at this time.
0 commit comments