Cabal revisions of github-0.28
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
-cabal-version: >=1.10-name: github-version: 0.28-synopsis: Access to the GitHub API, v3.-category: Network-description:- The GitHub API provides programmatic access to the full- GitHub Web site, from Issues to Gists to repos down to the underlying git data- like references and trees. This library wraps all of that, exposing a basic but- Haskell-friendly set of functions and data structures.- .- For supported endpoints see "GitHub" module.- .- > import qualified GitHub as GH- >- > main :: IO ()- > main = do- > possibleUser <- GH.github' GH.userInfoForR "phadej"- > print possibleUser- .- For more of an overview please see the README: <https://github.com/haskell-github/github/blob/master/README.md>--license: BSD3-license-file: LICENSE-author: Mike Burns, John Wiegley, Oleg Grenrus-maintainer: Andreas Abel-homepage: https://github.com/haskell-github/github-build-type: Simple-copyright:- Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016-2021 Oleg Grenrus--tested-with:- GHC ==7.8.4- || ==7.10.3- || ==8.0.2- || ==8.2.2- || ==8.4.4- || ==8.6.5- || ==8.8.4- || ==8.10.7- || ==9.0.2- || ==9.2.2--extra-source-files:- README.md- CHANGELOG.md- fixtures/*.json--source-repository head- type: git- location: git://github.com/haskell-github/github.git--flag openssl- description: "Use http-client-openssl"- manual: True- default: False--library- default-language: Haskell2010- ghc-options:- -Wall- if impl(ghc >= 8.0)- ghc-options:- -Wcompat- -Wno-star-is-type- -- The star-is-type warning cannot be sensiblity addressed while supporting GHC 7.- hs-source-dirs: src- default-extensions:- DataKinds- DeriveDataTypeable- DeriveGeneric- OverloadedStrings- ScopedTypeVariables-- other-extensions:- CPP- FlexibleContexts- FlexibleInstances- GADTs- KindSignatures- RecordWildCards- StandaloneDeriving-- exposed-modules:- GitHub- GitHub.Auth- GitHub.Data- GitHub.Data.Activities- GitHub.Data.Comments- GitHub.Data.Content- GitHub.Data.Definitions- GitHub.Data.DeployKeys- GitHub.Data.Deployments- GitHub.Data.Email- GitHub.Data.Enterprise- GitHub.Data.Enterprise.Organizations- GitHub.Data.Events- GitHub.Data.Gists- GitHub.Data.GitData- GitHub.Data.Id- GitHub.Data.Invitation- GitHub.Data.Issues- GitHub.Data.Milestone- GitHub.Data.Name- GitHub.Data.Options- GitHub.Data.PublicSSHKeys- GitHub.Data.PullRequests- GitHub.Data.RateLimit- GitHub.Data.Releases- GitHub.Data.Repos- GitHub.Data.Request- GitHub.Data.Reviews- GitHub.Data.Search- GitHub.Data.Statuses- GitHub.Data.Teams- GitHub.Data.URL- GitHub.Data.Webhooks- GitHub.Data.Webhooks.Validate- GitHub.Endpoints.Activity.Events- GitHub.Endpoints.Activity.Notifications- GitHub.Endpoints.Activity.Starring- GitHub.Endpoints.Activity.Watching- GitHub.Endpoints.Enterprise.Organizations- GitHub.Endpoints.Gists- GitHub.Endpoints.Gists.Comments- GitHub.Endpoints.GitData.Blobs- GitHub.Endpoints.GitData.Commits- GitHub.Endpoints.GitData.References- GitHub.Endpoints.GitData.Trees- GitHub.Endpoints.Issues- GitHub.Endpoints.Issues.Comments- GitHub.Endpoints.Issues.Events- GitHub.Endpoints.Issues.Labels- GitHub.Endpoints.Issues.Milestones- GitHub.Endpoints.Organizations- GitHub.Endpoints.Organizations.Members- GitHub.Endpoints.Organizations.OutsideCollaborators- GitHub.Endpoints.Organizations.Teams- GitHub.Endpoints.PullRequests- GitHub.Endpoints.PullRequests.Comments- GitHub.Endpoints.PullRequests.Reviews- GitHub.Endpoints.RateLimit- GitHub.Endpoints.Repos- GitHub.Endpoints.Repos.Collaborators- GitHub.Endpoints.Repos.Comments- GitHub.Endpoints.Repos.Commits- GitHub.Endpoints.Repos.Contents- GitHub.Endpoints.Repos.DeployKeys- GitHub.Endpoints.Repos.Deployments- GitHub.Endpoints.Repos.Forks- GitHub.Endpoints.Repos.Invitations- GitHub.Endpoints.Repos.Releases- GitHub.Endpoints.Repos.Statuses- GitHub.Endpoints.Repos.Webhooks- GitHub.Endpoints.Search- GitHub.Endpoints.Users- GitHub.Endpoints.Users.Emails- GitHub.Endpoints.Users.Followers- GitHub.Endpoints.Users.PublicSSHKeys- GitHub.Enterprise- GitHub.Internal.Prelude- GitHub.Request-- other-modules: Paths_github-- -- Packages bundles with GHC, mtl and text are also here- build-depends:- base >=4.7 && <4.17- , binary >=0.7.1.0 && <0.11- , bytestring >=0.10.4.0 && <0.12- , containers >=0.5.5.1 && <0.7- , deepseq >=1.3.0.2 && <1.5- , mtl >=2.1.3.1 && <2.2 || >=2.2.1 && <2.3- , text >=1.2.0.6 && <2.1- , time-compat >=1.9.2.2 && <1.10- , transformers >=0.3.0.0 && <0.6-- -- other packages- build-depends:- aeson >=1.4.0.0 && <1.6 || >=2.0.1.0 && <2.1- , base-compat >=0.11.1 && <0.13- , base16-bytestring >=0.1.1.6 && <1.1- , binary-instances >=1 && <1.1- , cryptohash-sha1 >=0.11.100.1 && <0.12- , deepseq-generics >=0.2.0.0 && <0.3- , exceptions >=0.10.2 && <0.11- , hashable >=1.2.7.0 && <1.5- , http-client >=0.5.12 && <0.8- , http-link-header >=1.0.3.1 && <1.3- , http-types >=0.12.3 && <0.13- , iso8601-time >=0.1.5 && <0.2- , network-uri >=2.6.1.0 && <2.7- , tagged >=0.8.5 && <0.9- , transformers-compat >=0.6.5 && <0.8- , unordered-containers >=0.2.10.0 && <0.3- , vector >=0.12.0.1 && <0.13- , vector-instances >=3.4 && <3.5-- if flag(openssl)- build-depends:- HsOpenSSL >=0.11.4.16 && <0.12- , HsOpenSSL-x509-system >=0.1.0.3 && <0.2- , http-client-openssl >=0.2.2.0 && <0.4-- else- build-depends:- http-client-tls >=0.3.5.3 && <0.4- , tls >=1.4.1-- if !impl(ghc >=8.0)- build-depends: semigroups >=0.18.5 && <0.20--test-suite github-test- default-language: Haskell2010- type: exitcode-stdio-1.0- hs-source-dirs: spec- main-is: Spec.hs- ghc-options: -Wall -threaded- build-tool-depends: hspec-discover:hspec-discover >=2.7.1 && <2.10- other-extensions: TemplateHaskell- other-modules:- GitHub.ActivitySpec- GitHub.CommitsSpec- GitHub.EventsSpec- GitHub.IssuesSpec- GitHub.OrganizationsSpec- GitHub.PublicSSHKeysSpec- GitHub.PullRequestReviewsSpec- GitHub.PullRequestsSpec- GitHub.RateLimitSpec- GitHub.ReleasesSpec- GitHub.ReposSpec- GitHub.ReviewDecodeSpec- GitHub.SearchSpec- GitHub.UsersSpec-- build-depends:- aeson- , base- , base-compat- , bytestring- , file-embed- , github- , hspec >=2.6.1 && <2.10- , tagged- , text- , unordered-containers- , vector+cabal-version: >=1.10 +name: github +version: 0.28 +x-revision: 1 +synopsis: Access to the GitHub API, v3. +category: Network +description: + The GitHub API provides programmatic access to the full + GitHub Web site, from Issues to Gists to repos down to the underlying git data + like references and trees. This library wraps all of that, exposing a basic but + Haskell-friendly set of functions and data structures. + . + For supported endpoints see "GitHub" module. + . + > import qualified GitHub as GH + > + > main :: IO () + > main = do + > possibleUser <- GH.github' GH.userInfoForR "phadej" + > print possibleUser + . + For more of an overview please see the README: <https://github.com/haskell-github/github/blob/master/README.md> + +license: BSD3 +license-file: LICENSE +author: Mike Burns, John Wiegley, Oleg Grenrus +maintainer: Andreas Abel +homepage: https://github.com/haskell-github/github +build-type: Simple +copyright: + Copyright 2012-2013 Mike Burns, Copyright 2013-2015 John Wiegley, Copyright 2016-2021 Oleg Grenrus + +tested-with: + GHC ==7.8.4 + || ==7.10.3 + || ==8.0.2 + || ==8.2.2 + || ==8.4.4 + || ==8.6.5 + || ==8.8.4 + || ==8.10.7 + || ==9.0.2 + || ==9.2.2 + +extra-source-files: + README.md + CHANGELOG.md + fixtures/*.json + +source-repository head + type: git + location: git://github.com/haskell-github/github.git + +flag openssl + description: "Use http-client-openssl" + manual: True + default: False + +library + default-language: Haskell2010 + ghc-options: + -Wall + if impl(ghc >= 8.0) + ghc-options: + -Wcompat + -Wno-star-is-type + -- The star-is-type warning cannot be sensiblity addressed while supporting GHC 7. + hs-source-dirs: src + default-extensions: + DataKinds + DeriveDataTypeable + DeriveGeneric + OverloadedStrings + ScopedTypeVariables + + other-extensions: + CPP + FlexibleContexts + FlexibleInstances + GADTs + KindSignatures + RecordWildCards + StandaloneDeriving + + exposed-modules: + GitHub + GitHub.Auth + GitHub.Data + GitHub.Data.Activities + GitHub.Data.Comments + GitHub.Data.Content + GitHub.Data.Definitions + GitHub.Data.DeployKeys + GitHub.Data.Deployments + GitHub.Data.Email + GitHub.Data.Enterprise + GitHub.Data.Enterprise.Organizations + GitHub.Data.Events + GitHub.Data.Gists + GitHub.Data.GitData + GitHub.Data.Id + GitHub.Data.Invitation + GitHub.Data.Issues + GitHub.Data.Milestone + GitHub.Data.Name + GitHub.Data.Options + GitHub.Data.PublicSSHKeys + GitHub.Data.PullRequests + GitHub.Data.RateLimit + GitHub.Data.Releases + GitHub.Data.Repos + GitHub.Data.Request + GitHub.Data.Reviews + GitHub.Data.Search + GitHub.Data.Statuses + GitHub.Data.Teams + GitHub.Data.URL + GitHub.Data.Webhooks + GitHub.Data.Webhooks.Validate + GitHub.Endpoints.Activity.Events + GitHub.Endpoints.Activity.Notifications + GitHub.Endpoints.Activity.Starring + GitHub.Endpoints.Activity.Watching + GitHub.Endpoints.Enterprise.Organizations + GitHub.Endpoints.Gists + GitHub.Endpoints.Gists.Comments + GitHub.Endpoints.GitData.Blobs + GitHub.Endpoints.GitData.Commits + GitHub.Endpoints.GitData.References + GitHub.Endpoints.GitData.Trees + GitHub.Endpoints.Issues + GitHub.Endpoints.Issues.Comments + GitHub.Endpoints.Issues.Events + GitHub.Endpoints.Issues.Labels + GitHub.Endpoints.Issues.Milestones + GitHub.Endpoints.Organizations + GitHub.Endpoints.Organizations.Members + GitHub.Endpoints.Organizations.OutsideCollaborators + GitHub.Endpoints.Organizations.Teams + GitHub.Endpoints.PullRequests + GitHub.Endpoints.PullRequests.Comments + GitHub.Endpoints.PullRequests.Reviews + GitHub.Endpoints.RateLimit + GitHub.Endpoints.Repos + GitHub.Endpoints.Repos.Collaborators + GitHub.Endpoints.Repos.Comments + GitHub.Endpoints.Repos.Commits + GitHub.Endpoints.Repos.Contents + GitHub.Endpoints.Repos.DeployKeys + GitHub.Endpoints.Repos.Deployments + GitHub.Endpoints.Repos.Forks + GitHub.Endpoints.Repos.Invitations + GitHub.Endpoints.Repos.Releases + GitHub.Endpoints.Repos.Statuses + GitHub.Endpoints.Repos.Webhooks + GitHub.Endpoints.Search + GitHub.Endpoints.Users + GitHub.Endpoints.Users.Emails + GitHub.Endpoints.Users.Followers + GitHub.Endpoints.Users.PublicSSHKeys + GitHub.Enterprise + GitHub.Internal.Prelude + GitHub.Request + + other-modules: Paths_github + + -- Packages bundles with GHC, mtl and text are also here + build-depends: + base >=4.7 && <4.17 + , binary >=0.7.1.0 && <0.11 + , bytestring >=0.10.4.0 && <0.12 + , containers >=0.5.5.1 && <0.7 + , deepseq >=1.3.0.2 && <1.5 + , mtl >=2.1.3.1 && <2.2 || >=2.2.1 && <2.3 + , text >=1.2.0.6 && <2.1 + , time-compat >=1.9.2.2 && <1.10 + , transformers >=0.3.0.0 && <0.6 + + -- other packages + build-depends: + aeson >=1.4.0.0 && <1.6 || >=2.0.1.0 && <2.1 + , base-compat >=0.11.1 && <0.13 + , base16-bytestring >=0.1.1.6 && <1.1 + , binary-instances >=1 && <1.1 + , cryptohash-sha1 >=0.11.100.1 && <0.12 + , deepseq-generics >=0.2.0.0 && <0.3 + , exceptions >=0.10.2 && <0.11 + , hashable >=1.2.7.0 && <1.5 + , http-client >=0.5.12 && <0.8 + , http-link-header >=1.0.3.1 && <1.3 + , http-types >=0.12.3 && <0.13 + , iso8601-time >=0.1.5 && <0.2 + , network-uri >=2.6.1.0 && <2.7 + , tagged >=0.8.5 && <0.9 + , transformers-compat >=0.6.5 && <0.8 + , unordered-containers >=0.2.10.0 && <0.3 + , vector >=0.12.0.1 && <0.13 + , vector-instances >=3.4 && <3.5 + + if flag(openssl) + build-depends: + HsOpenSSL >=0.11.4.16 && <0.12 + , HsOpenSSL-x509-system >=0.1.0.3 && <0.2 + , http-client-openssl >=0.2.2.0 && <0.4 + + else + build-depends: + http-client-tls >=0.3.5.3 && <0.4 + , tls >=1.4.1 + + if !impl(ghc >=8.0) + build-depends: semigroups >=0.18.5 && <0.20 + +test-suite github-test + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: spec + main-is: Spec.hs + ghc-options: -Wall -threaded + build-tool-depends: hspec-discover:hspec-discover >=2.7.1 && <2.10 + other-extensions: TemplateHaskell + other-modules: + GitHub.ActivitySpec + GitHub.CommitsSpec + GitHub.EventsSpec + GitHub.IssuesSpec + GitHub.OrganizationsSpec + GitHub.PublicSSHKeysSpec + GitHub.PullRequestReviewsSpec + GitHub.PullRequestsSpec + GitHub.RateLimitSpec + GitHub.ReleasesSpec + GitHub.ReposSpec + GitHub.ReviewDecodeSpec + GitHub.SearchSpec + GitHub.UsersSpec + + build-depends: + aeson + , base + , base-compat + , bytestring + , file-embed + , github + , hspec >=2.6.1 && <2.11 + , tagged + , text + , unordered-containers + , vector
revision 2
cabal-version: >=1.10 name: github version: 0.28 -x-revision: 1 +x-revision: 2 synopsis: Access to the GitHub API, v3. category: Network description: hs-source-dirs: spec main-is: Spec.hs ghc-options: -Wall -threaded - build-tool-depends: hspec-discover:hspec-discover >=2.7.1 && <2.10 + build-tool-depends: hspec-discover:hspec-discover >=2.7.1 && <2.11 other-extensions: TemplateHaskell other-modules: GitHub.ActivitySpec
revision 3
cabal-version: >=1.10 name: github version: 0.28 -x-revision: 2 +x-revision: 3 synopsis: Access to the GitHub API, v3. category: Network description: || ==8.10.7 || ==9.0.2 || ==9.2.2 + || ==9.4.1 extra-source-files: README.md ghc-options: -Wcompat -Wno-star-is-type - -- The star-is-type warning cannot be sensiblity addressed while supporting GHC 7. + -- The star-is-type warning cannot be sensibly addressed while supporting GHC 7. hs-source-dirs: src default-extensions: DataKinds -- Packages bundles with GHC, mtl and text are also here build-depends: - base >=4.7 && <4.17 + base >=4.7 && <4.18 , binary >=0.7.1.0 && <0.11 , bytestring >=0.10.4.0 && <0.12 , containers >=0.5.5.1 && <0.7
revision 4
cabal-version: >=1.10 name: github version: 0.28 -x-revision: 3 +x-revision: 4 synopsis: Access to the GitHub API, v3. category: Network description: || ==8.8.4 || ==8.10.7 || ==9.0.2 - || ==9.2.2 + || ==9.2.3 || ==9.4.1 extra-source-files: -- other packages build-depends: - aeson >=1.4.0.0 && <1.6 || >=2.0.1.0 && <2.1 + aeson >=1.4.0.0 && <1.6 || >=2.0.1.0 && <2.2 , base-compat >=0.11.1 && <0.13 , base16-bytestring >=0.1.1.6 && <1.1 , binary-instances >=1 && <1.1