Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Sep 15, 2023
    • Sebastian Tee's avatar
      Support authentication tokens for uploading to Hackage (#9058) · a0d815c4
      Sebastian Tee authored
      * Add token authorization for cabal upload
      
      Add token flag. If a token is set ignore the username and password.
      The token is passed to Hackage in the  Authorization header.
      
      * Add token flag to upload documentation
      
      * Add token authentication for cabal report
      
      * Update auth token documentation and changelog
      
      * Add token flag to config integration tests
      
      * Add auth token header to plain-http transport
      
      * Add documentation and reduce wildcard usage
      
      Use Nothing in pattern matching instead of wildcards.
      
      * Add auth token headers to wget and powershell
      
      * Fix auth token header for powershell transport
      
      Powershell has to have the Authorization token set in the Header
      dictionary parameter. Some headers (e.g. User-Agent) have to be set as
      a request parameter.
      
      * Fix code formatting to comply with fourmolu
  2. Sep 14, 2023
  3. Sep 13, 2023
  4. Sep 12, 2023
  5. Sep 10, 2023
  6. Sep 08, 2023
  7. Sep 07, 2023
  8. Sep 06, 2023
  9. Sep 05, 2023
  10. Sep 04, 2023
  11. Sep 03, 2023
  12. Sep 02, 2023
    • hamishmack's avatar
      Fix use of NumJobs · 37f67421
      hamishmack authored
      From `Cabal/src/Distribution/Types/ParStrat.hs`
      
      ```
      data ParStratX sem
        = -- | Compile in parallel with the given number of jobs (`-jN` or `-j`).
          NumJobs (Maybe Int)
        ...
      ```
      
      However in `Cabal/src/Distribution/Simple/Program/GHC.hs` show is applied to the `Maybe Int` and we get errors like:
      
      ```
      ghc-9.9.20230901: on the commandline: malformed integer argument in -jJust 4
      ```
      
      This change should correct the behavior in `Simple/Program/GHC.hs` to match the comment in `Types/ParStrat.hs`.
  13. Sep 01, 2023
  14. Aug 31, 2023
  15. Aug 27, 2023
  16. Aug 26, 2023
  17. Aug 24, 2023
  18. Aug 21, 2023
  19. Aug 20, 2023
  20. Aug 19, 2023
  21. Aug 17, 2023
    • Suganya Raju's avatar
      Successive Cabal Package Errors (#9162) · f465da4d
      Suganya Raju authored
      * Cabal Package Exceptions
      
      * Accepting new format of output with error codes
      
      * Reverting the changes to new error output
      
      * Rebasing branch Subsequent Cabal Package errors
      
      * Added setup-explicit-fail.out
      
      * Delete setup-explicit-fail.out
      
      * Accepting new output with error codes
      
      * Changed to "GetProgramInvocationException" and "SanityCheckForEnableComponents"
      
      * Going back to former die' call in `getProgramInvocationOutout`  function to check on the failing CI test
      
      * Accepted new error output, included cabalexception in handler
      
      * Error code rectification
      
      * Added a handler condition for VerboseException CabalException in `annotaeFailure` function
      
      * Leaving "GetProgramInvocationException" unmodified
      
      * Incorporated review comments
      
      * Updated "nor" in AutoGenModule test case
      
      * Updated "AutogenExposeOther" test case which was dependent on this "nor" change
Loading