packages feed

gitlab-haskell 0.1.7 → 0.1.8

raw patch · 2 files changed

+4/−4 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- GitLab.Types: Commit :: Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Maybe [Text] -> Maybe Pipeline -> Maybe CommitStats -> Maybe Text -> Commit
+ GitLab.Types: Commit :: Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Text -> Maybe [Int] -> Maybe Pipeline -> Maybe CommitStats -> Maybe Text -> Commit
- GitLab.Types: CommitTodo :: Text -> Text -> Text -> Maybe [Text] -> CommitTodo
+ GitLab.Types: CommitTodo :: Text -> Text -> Text -> Maybe [Int] -> CommitTodo
- GitLab.Types: Namespace :: Int -> Text -> Text -> Text -> Text -> Maybe Text -> Namespace
+ GitLab.Types: Namespace :: Int -> Text -> Text -> Text -> Text -> Maybe Int -> Namespace
- GitLab.Types: [parent_id] :: Namespace -> Maybe Text
+ GitLab.Types: [parent_id] :: Namespace -> Maybe Int
- GitLab.Types: [parent_ids] :: Commit -> Maybe [Text]
+ GitLab.Types: [parent_ids] :: Commit -> Maybe [Int]
- GitLab.Types: [todo_parent_ids] :: CommitTodo -> Maybe [Text]
+ GitLab.Types: [todo_parent_ids] :: CommitTodo -> Maybe [Int]

Files

gitlab-haskell.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4 name:           gitlab-haskell category:       Git-version:        0.1.7+version:        0.1.8 synopsis:       A Haskell library for the GitLab web API description:             This Haskell library queries and updates the database of a GitLab instance using the GitLab web API: <https://docs.gitlab.com/ee/api/>
src/GitLab/Types.hs view
@@ -144,7 +144,7 @@         namespace_path :: Text,         kind :: Text,         full_path :: Text,-        parent_id :: Maybe Text+        parent_id :: Maybe Int       }   deriving (Generic, Show) @@ -353,7 +353,7 @@         committed_date :: Text,         commit_created_at :: Text,         message :: Text,-        parent_ids :: Maybe [Text],+        parent_ids :: Maybe [Int],         last_pipeline :: Maybe Pipeline,         commit_stats :: Maybe CommitStats,         commit_status :: Maybe Text@@ -366,7 +366,7 @@       { todo_commit_id :: Text,         todo_commit_short_id :: Text,         todo_commit_created_at :: Text,-        todo_parent_ids :: Maybe [Text]+        todo_parent_ids :: Maybe [Int]       }   deriving (Generic, Show)