File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# FOSSA CLI Changelog
2
2
3
+ ## 3.9.20
4
+ - Fixes file matches for license scans ([ #1434 ] ( https://github.com/fossas/fossa-cli/pull/1434 ) ).
5
+
3
6
## v3.9.19
4
7
- Release a Mac arm64 binary. ([ #1426 ] ( https://github.com/fossas/fossa-cli/pull/1426 ) )
5
8
- Updated the license to CPAL, an OSI-approved license similar to MPL ([ #1431 ] ( https://github.com/fossas/fossa-cli/pull/1431 ) ).
Original file line number Diff line number Diff line change @@ -151,7 +151,9 @@ instance ToJSON ArchiveComponents where
151
151
toJSON ArchiveComponents {.. } =
152
152
object
153
153
[ " archives" .= archiveComponentsArchives
154
- , " fullFiles" .= archiveComponentsUpload
154
+ , " fullFiles" .= case archiveComponentsUpload of
155
+ FileUploadFullContent -> True
156
+ FileUploadMatchData -> False
155
157
, -- Don't use the ToJSON instance of DependencyRebuild since this endpoint has a different expectation.
156
158
" forceRebuild" .= case archiveComponentsRebuild of
157
159
DependencyRebuildReuseCache -> False
You can’t perform that action at this time.
0 commit comments