By | ~fr33domlover |
At | 2018-12-04 |
Title | Adapt to changes in git-harder and hit-graph to build with latest LTS |
Description |
Edit file hit-network.cabal 0 → 0
- 47 build-depends: base >= 4.8 && < 5
+ 47 build-depends: base
- 51 , hit
- 52 , hit-graph >= 0.1
- 53 , hit-harder >= 0.1
+ 51 , git
+ 52 , hit-graph
+ 53 , hit-harder
… … … … Edit file src/Data/Git/Local.hs 0 → 0
+ 31 import Data.Git.Ref (SHA1)
… … … … - 42 listHelper :: (Git -> IO (Set RefName)) -> Git -> IO [(ObjId, ByteString)]
+ 43 listHelper
+ 44 :: (Git SHA1 -> IO (Set RefName)) -> Git SHA1 -> IO [(ObjId, ByteString)]
- 52 resolveHead :: Git -> IO (Maybe ObjId)
+ 54 resolveHead :: Git SHA1 -> IO (Maybe ObjId)
- 57 listBranches :: Git -> IO [(ObjId, ByteString)]
+ 59 listBranches :: Git SHA1 -> IO [(ObjId, ByteString)]
- 63 listTags :: Git -> IO [(ObjId, ByteString)]
+ 65 listTags :: Git SHA1 -> IO [(ObjId, ByteString)]
- 69 peelTag :: Git -> ObjId -> IO (Maybe ObjId)
+ 71 peelTag :: Git SHA1 -> ObjId -> IO (Maybe ObjId)
… … … … Edit file src/Network/Git/Transport/HTTP/Fetch/RefDiscovery.hs 0 → 0
+ 38 import Data.Git.Ref (SHA1)
… … … … - 185 buildRefDiscover' :: Git -> Service -> IO RefDiscover
+ 186 buildRefDiscover' :: Git SHA1 -> Service -> IO RefDiscover
… … … … Edit file stack.yaml 0 → 0
- 6 resolver: lts-11.5
+ 6 resolver: lts-12.20
+ 11 - '../hit-graph'
- 17 - hit-graph-0.1
+ 18 - git-0.2.2
+ 20 - patience-0.1.1
… … … …