diff --git a/Changelog.md b/Changelog.md index 26eac32fe0..60a9b5892f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ ## v3.9.10 - Support unarchiving `tgz`, `taz`, `txz`, `tbz`, `tbz2`, and `tz2` files for `--unpack-archives` ([#1402](https://github.com/fossas/fossa-cli/pull/1402/files)) +- `fossa test`: improves diagnostic message ([#1403](https://github.com/fossas/fossa-cli/pull/1403/files)) + +## v3.9.9 - `--without-default-filters`: Users can now disable default path filters ([#1396](https://github.com/fossas/fossa-cli/pull/1396/files)). ## v3.9.8 diff --git a/src/Fossa/API/Types.hs b/src/Fossa/API/Types.hs index 41548bdd4b..e162979d65 100644 --- a/src/Fossa/API/Types.hs +++ b/src/Fossa/API/Types.hs @@ -827,8 +827,8 @@ renderedIssues issues = rendered issuePolicyConflictMessage :: Text issuePolicyConflictMessage = "Denied by policy " - <> fromMaybe ("(unknown policy, issueId: " <> intToText issueId <> ") ") issueLicense - <> "on" + <> fromMaybe ("(unknown policy, issueId: " <> intToText issueId <> ")") issueLicense + <> " on " <> nameRevision issueLink :: Maybe Text