hercules-ci-api-agent 0.5.0.0 → 0.5.0.1
raw patch · 6 files changed
+13/−6 lines, 6 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- hercules-ci-api-agent.cabal +3/−2
- src/Hercules/API/Agent/Evaluate/ImmutableGitInput.hs +2/−1
- src/Hercules/API/Agent/Evaluate/ImmutableInput.hs +2/−1
- test/Hercules/Formats/CachixCacheSpec.hs +1/−1
- test/Hercules/Formats/SecretSpec.hs +1/−1
CHANGELOG.md view
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.5.0.1 - 2023-06-28++ - Maintenance release+ ## 0.5.0.0 - 2023-03-06 ### Changed
hercules-ci-api-agent.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: hercules-ci-api-agent-version: 0.5.0.0+version: 0.5.0.1 synopsis: API definition for Hercules CI Agent to talk to hercules-ci.com or Hercules CI Enterprise @@ -75,6 +75,7 @@ NoImplicitPrelude DeriveGeneric DeriveTraversable+ DerivingStrategies DisambiguateRecordFields FlexibleContexts InstanceSigs@@ -118,7 +119,7 @@ default-language: Haskell2010 -test-suite hercules-api-agent-unit-tests+test-suite hercules-ci-api-agent-unit-tests type: exitcode-stdio-1.0 main-is: Main.hs other-modules:
src/Hercules/API/Agent/Evaluate/ImmutableGitInput.hs view
@@ -14,4 +14,5 @@ owner :: Maybe Text, name :: Maybe Text }- deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)+ deriving (Generic, Show, Eq)+ deriving anyclass (NFData, ToJSON, FromJSON, ToSchema)
src/Hercules/API/Agent/Evaluate/ImmutableInput.hs view
@@ -15,4 +15,5 @@ -- -- Translates to @builtins.fetchGit@ Git ImmutableGitInput- deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)+ deriving (Generic, Show, Eq)+ deriving anyclass (NFData, ToJSON, FromJSON, ToSchema)
test/Hercules/Formats/CachixCacheSpec.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE StandaloneDeriving #-}-{-# OPTIONS_GHC -fno-warn-orphans #-}+{-# OPTIONS_GHC -Wno-orphans -Wno-incomplete-uni-patterns #-} module Hercules.Formats.CachixCacheSpec where
test/Hercules/Formats/SecretSpec.hs view
@@ -1,6 +1,6 @@ {-# LANGUAGE BlockArguments #-} {-# LANGUAGE StandaloneDeriving #-}-{-# OPTIONS_GHC -fno-warn-orphans #-}+{-# OPTIONS_GHC -Wno-orphans -Wno-incomplete-uni-patterns #-} module Hercules.Formats.SecretSpec where