Skip to content

Commit 09a72b0

Browse files
authored
add includeCopyrightList query param to JSON attribution report request (#1450)
1 parent a48a450 commit 09a72b0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Changelog.md

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

3+
## 3.9.26
4+
5+
- Reports: Add `includeCopyrightList` to JSON attribution report request. This will ensure that all copyrights are included in the JSON attribution report once the FOSSA API starts including them. All other formats of attribution reports will receive all copyrights without needing to add this query param. [#1450](https://github.com/fossas/fossa-cli/pull/1450)
6+
37
## 3.9.25
48

59
- Update jar-callgraph version [#1447](https://github.com/fossas/fossa-cli/pull/1447)
@@ -20,7 +24,7 @@
2024
- License Scanning: Add the Llama-3-community license (No PR)
2125
- Yarn: Don't fail analysis if a dependency cannot be found. ([1436](https://github.com/fossas/fossa-cli/pull/1436))
2226

23-
## 3.9.20
27+
## 3.9.20
2428
- Fixes file matches for license scans ([#1434](https://github.com/fossas/fossa-cli/pull/1434)).
2529

2630
## v3.9.19

src/Control/Carrier/FossaApiClient/Internal/FossaAPIV1.hs

+2
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,8 @@ getAttributionJson apiOpts ProjectRevision{..} = fossaReq $ do
12481248
=: True
12491249
<> "dependencyInfoOptions[]"
12501250
=: packageDownloadUrl
1251+
<> "includeCopyrightList"
1252+
=: True
12511253
-- Large reports can take over a minute to generate, so increase the timeout to 10 minutes
12521254
<> responseTimeoutSeconds 600
12531255
orgId <- organizationId <$> getOrganization apiOpts

0 commit comments

Comments
 (0)