bugzilla-redhat 1.0.0 → 1.0.1
raw patch · 5 files changed
+15/−14 lines, 5 filesdep ~transformersdep ~vectorPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: transformers, vector
API changes (from Hackage documentation)
- Web.RedHatBugzilla: [bugSeeAlso] :: Bug -> [Text]
- Web.RedHatBugzilla: Bug :: !BugId -> Maybe [Text] -> UserEmail -> User -> [BugId] -> [UserEmail] -> [User] -> Text -> [Text] -> UTCTime -> UserEmail -> User -> [BugId] -> Maybe BugId -> Maybe [Flag] -> [Text] -> Bool -> Bool -> Bool -> Bool -> [Text] -> UTCTime -> Text -> Text -> Text -> Text -> UserEmail -> Text -> [Text] -> Text -> Text -> Text -> Text -> Text -> [Text] -> Text -> KeyMap Text -> Maybe [ExternalBug] -> Bug
+ Web.RedHatBugzilla: Bug :: !BugId -> Maybe [Text] -> UserEmail -> User -> [BugId] -> [UserEmail] -> [User] -> Text -> [Text] -> UTCTime -> UserEmail -> User -> [BugId] -> Maybe BugId -> Maybe [Flag] -> [Text] -> Bool -> Bool -> Bool -> Bool -> [Text] -> UTCTime -> Text -> Text -> Text -> Text -> UserEmail -> Text -> Text -> Text -> Text -> Text -> Text -> [Text] -> Text -> KeyMap Text -> Maybe [ExternalBug] -> Bug
Files
- ChangeLog.md +3/−0
- README.md +1/−1
- bugzilla-redhat.cabal +10/−10
- src/Web/RedHatBugzilla.hs +1/−1
- src/Web/RedHatBugzilla/Internal/Types.hs +0/−2
ChangeLog.md view
@@ -1,5 +1,8 @@ # bugzilla-redhat version history +## 1.0.1 (2022-11-16)+- Red Hat bugzilla no longer has a 'see_also' field (#18)+ ## 1.0.0 (2022-02-20) - rename Web.Bugzilla.RedHat to Web.RedHatBugzilla - use Network.HTTP.Simple global session Manager
README.md view
@@ -14,7 +14,7 @@ ## Contributing Bug reports, feedback, and fixes are welcome. -Thanks to the contributors!+Thanks to the original author and contributors! <a href="https://github.com/juhp/hsbugzilla/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=juhp/hsbugzilla" />
bugzilla-redhat.cabal view
@@ -1,5 +1,5 @@ name: bugzilla-redhat-version: 1.0.0+version: 1.0.1 synopsis: A Haskell interface to the Bugzilla native REST API description: This package is designed to provide an easy-to-use, type-safe interface to querying Bugzilla from Haskell.@@ -37,17 +37,17 @@ Web.RedHatBugzilla.Internal.Search, Web.RedHatBugzilla.Internal.Types build-depends: base >=4.6 && <5,- aeson >=0.7 && <2.1,+ aeson >=0.7 && <2.2, blaze-builder >=0.3 && <0.5,- bytestring >=0.10 && <0.11,+ bytestring >=0.10, connection >=0.2 && <0.4, containers >=0.5 && <0.7, http-conduit >=2.1.11 && <2.4, http-types >=0.8 && <0.13, iso8601-time >=0.1 && <1.6,- resourcet >=0.4 && <1.3,- text >=0.11 && <1.3,- time >=1.4 && <1.10,+ resourcet >=0.4,+ text >=0.11,+ time >=1.4 && <1.13, transformers >=0.3 && <0.6, unordered-containers >=0.2 && <0.3, vector >= 0.10 && <0.13@@ -65,8 +65,8 @@ build-depends: base >=4.6 && <5, bugzilla-redhat, containers >=0.5 && <0.7,- text >=0.11 && <1.3,- time >=1.4 && <1.10+ text >=0.11,+ time >=1.4 && <1.13 hs-source-dirs: demo default-language: Haskell2010 @@ -75,9 +75,9 @@ hs-source-dirs: test main-is: Spec.hs build-depends: base >=4.6 && <5,- aeson >=0.7 && <2.1,+ aeson >=0.7 && <2.2, bugzilla-redhat, hspec >=2.0 && <3.0,- time >=1.4 && <1.10+ time >=1.4 && <1.13 ghc-options: -Wall default-language: Haskell2010
src/Web/RedHatBugzilla.hs view
@@ -95,7 +95,7 @@ intAsText = T.pack . show -- | Searches Bugzilla and returns a list of 'Bug's. The 'SearchExpression'--- can be constructed conveniently using the operators in "Web.Bugzilla.Search".+-- can be constructed using the operators in "Web.Bugzilla.Search". searchBugs :: BugzillaSession -> SearchExpression -> IO [Bug] searchBugs session search = do BugList bugs <- doSearchBugs session search Nothing Nothing
src/Web/RedHatBugzilla/Internal/Types.hs view
@@ -415,7 +415,6 @@ , bugProduct :: T.Text , bugQaContact :: UserEmail , bugResolution :: T.Text- , bugSeeAlso :: [T.Text] , bugSeverity :: T.Text , bugStatus :: T.Text , bugSummary :: T.Text@@ -462,7 +461,6 @@ <*> v .: "product" <*> v .: "qa_contact" <*> v .: "resolution"- <*> v .: "see_also" <*> v .: "severity" <*> v .: "status" <*> v .: "summary"