Skip to content

Commit

Permalink
Updates changelog and fixes linting and formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
meghfossa committed Oct 20, 2023
1 parent d668d98 commit bb84781
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- golang: Updates go.mod parser to be compatible with golang v1.21. ([#1304](https://github.com/fossas/fossa-cli/pull/1304))
- `fossa list-targets`: list-target command supports `--format` option with: `ndjson`, `text`, and `legacy`. ([#1296](https://github.com/fossas/fossa-cli/pull/1296))
- container scanning: fixes transaction errors due to redirection ([]())
- container scanning: Fixes a network error defect, when interacting with container registry redirects. ([#1308](https://github.com/fossas/fossa-cli/pull/1308/))

## v3.8.17

Expand Down
8 changes: 4 additions & 4 deletions src/Control/Carrier/ContainerRegistryApi/Authorization.hs
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@ import Data.Aeson (FromJSON (parseJSON), decode', eitherDecode, withObject, (.:)
import Data.ByteString.Lazy qualified as ByteStringLazy
import Data.Map (Map)
import Data.Map qualified as Map
import Data.String.Conversion (ConvertUtf8 (decodeUtf8), encodeUtf8, toString, toText)
import Data.Text (Text, isInfixOf)
import Data.String.Conversion (encodeUtf8, toString, toText)
import Data.Text (Text)
import Data.Text qualified as Text
import Data.Void (Void)
import Effect.Logger (Logger)
import Network.HTTP.Client (
Manager,
Request (host, method, shouldStripHeaderOnRedirect),
Request (method, shouldStripHeaderOnRedirect),
Response (responseBody, responseHeaders, responseStatus),
applyBasicAuth,
applyBearerAuth,
parseRequest,
)
import Network.HTTP.Types (methodGet, statusCode, methodHead)
import Network.HTTP.Types (statusCode)
import Network.HTTP.Types.Header (
hAuthorization,
hWWWAuthenticate,
Expand Down

0 comments on commit bb84781

Please sign in to comment.