packages feed

hercules-ci-agent 0.9.6 → 0.9.7

raw patch · 3 files changed

+21/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -5,6 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.9.7] - 2022-07-21++### Added++ - Nix 2.10 support++### Removed++ - `-nix_2_7` variants. Nixpkgs has stopped offering older versions of Nix. If+   you need an older version, you could inject an older Nixpkgs into this flake+   using `hercules-ci-agent.inputs.nixpkgs.follows = ...`.+ ## [0.9.6] - 2022-06-21  ### Added@@ -13,6 +25,7 @@  ### Fixed + - NixOS module: keep main process running when worker triggers system OOM killer.  - Missing file in hackage sdist  ## [0.9.5] - 2022-05-17@@ -28,7 +41,7 @@  - Workaround for cachix#406 (add `login` to `netrc`)  - A crash in `inline-c-cpp` exception handling (`inline-c-cpp` update)  - Towards the error "Could not push logs within 10 minutes after completion"-    - Add a timeout to prevent  in case of a stuck handshake+    - Add a timeout to prevent hang in case of a stuck handshake     - Enforce log limit on client side as well in case of excessive log spam and an upload bottleneck  ### Removed@@ -597,6 +610,9 @@  - Initial release +[0.9.7]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.6...hercules-ci-agent-0.9.7+[0.9.6]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.5...hercules-ci-agent-0.9.6+[0.9.5]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.3...hercules-ci-agent-0.9.5 [0.9.3]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.2...hercules-ci-agent-0.9.3 [0.9.2]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.1...hercules-ci-agent-0.9.2 [0.9.1]: https://github.com/hercules-ci/hercules-ci-agent/compare/hercules-ci-agent-0.9.0...hercules-ci-agent-0.9.1
hercules-ci-agent-worker/Hercules/Agent/Worker/Build/Prefetched.hs view
@@ -1,6 +1,9 @@ {-# LANGUAGE CPP #-} {-# LANGUAGE QuasiQuotes #-} {-# LANGUAGE TemplateHaskell #-}+#ifdef __GHCIDE__+# define NIX_IS_AT_LEAST(mm,m,p) 1+#endif  -- This implements an optimized routine to build from a remote derivation. -- It is not in the "CNix" tree because it seems to be too specific for general use.
hercules-ci-agent.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4  name:           hercules-ci-agent-version:        0.9.6+version:        0.9.7 synopsis:       Runs Continuous Integration tasks on your machines category:       Nix, CI, Testing, DevOps homepage:       https://docs.hercules-ci.com