hercules-ci-api-agent 0.4.3.0 → 0.4.4.0
raw patch · 3 files changed
+9/−2 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
+ Hercules.API.Agent.Evaluate.EvaluateEvent.AttributeErrorEvent: [trace] :: AttributeErrorEvent -> Maybe Text
- Hercules.API.Agent.Evaluate.EvaluateEvent.AttributeErrorEvent: AttributeErrorEvent :: [Text] -> Text -> Maybe Text -> Maybe Text -> AttributeErrorEvent
+ Hercules.API.Agent.Evaluate.EvaluateEvent.AttributeErrorEvent: AttributeErrorEvent :: [Text] -> Text -> Maybe Text -> Maybe Text -> Maybe Text -> AttributeErrorEvent
Files
- CHANGELOG.md +6/−0
- hercules-ci-api-agent.cabal +1/−1
- src/Hercules/API/Agent/Evaluate/EvaluateEvent/AttributeErrorEvent.hs +2/−1
CHANGELOG.md view
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.4.4.0 - 2022-03-30++### Added++ - A field for traces in evaluation errors (`--show-trace`)+ ## 0.4.3.0 - 2022-03-18 ### Added
hercules-ci-api-agent.cabal view
@@ -1,7 +1,7 @@ cabal-version: 1.12 name: hercules-ci-api-agent-version: 0.4.3.0+version: 0.4.4.0 synopsis: API definition for Hercules CI Agent to talk to hercules-ci.com or Hercules CI Enterprise category: API, CI, Testing, DevOps, Nix homepage: https://github.com/hercules-ci/hercules-ci-agent#readme
src/Hercules/API/Agent/Evaluate/EvaluateEvent/AttributeErrorEvent.hs view
@@ -9,7 +9,8 @@ { expressionPath :: [Text], errorMessage :: Text, errorDerivation :: Maybe Text,- errorType :: Maybe Text+ errorType :: Maybe Text,+ trace :: Maybe Text } deriving (Generic, Show, Eq, NFData)