hercules-ci-api-agent 0.2.1.0 → 0.2.2.0
raw patch · 3 files changed
+10/−3 lines, 3 files
Files
- CHANGELOG.md +6/−0
- hercules-ci-api-agent.cabal +2/−2
- src/Hercules/API/Agent/Evaluate/EvaluateTask.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.2.2.0 - 2020-07-18++### Added++ - Evaluation log+ ## 0.2.1.0 - 2020-06-17 ### Added
hercules-ci-api-agent.cabal view
@@ -1,9 +1,9 @@ cabal-version: 1.12 name: hercules-ci-api-agent-version: 0.2.1.0+version: 0.2.2.0 synopsis: API definition for Hercules CI Agent to talk to hercules-ci.com or Hercules CI Enterprise-category: API, CI, Testing, DevOps+category: API, CI, Testing, DevOps, Nix homepage: https://github.com/hercules-ci/hercules-ci-agent#readme bug-reports: https://github.com/hercules-ci/hercules-ci-agent/issues author: Hercules CI contributors
src/Hercules/API/Agent/Evaluate/EvaluateTask.hs view
@@ -21,7 +21,8 @@ primaryInput :: Text, -- HTTP URL otherInputs :: Map Identifier Text, -- identifier -> HTTP URL autoArguments :: Map Text (SubPathOf Identifier), -- argument name -> identifier- nixPath :: [NixPathElement (SubPathOf Identifier)] -- NIX_PATH element -> identifier+ nixPath :: [NixPathElement (SubPathOf Identifier)], -- NIX_PATH element -> identifier+ logToken :: Text } deriving (Generic, Show, Eq, ToJSON, FromJSON, ToSchema)