Merge pull request #82 from akshaymankar/support-latest-ghcs

Support GHC 8.8 and 8.10
This commit is contained in:
Kubernetes Prow Robot
2020-12-07 19:29:11 -08:00
committed by GitHub
11 changed files with 240 additions and 31 deletions

View File

@@ -6,4 +6,3 @@ dist-newstyle
cabal.project.local
.cabal-sandbox
cabal.sandbox.config
*.cabal

View File

@@ -0,0 +1,182 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 114671d4f1b4c78c3a32487c9b8589f61d433f2a32488b3ed9e4372614f3972b
name: kubernetes-client
version: 0.3.2.0
synopsis: Client library for Kubernetes
description: Client library for interacting with a Kubernetes cluster.
.
This package contains hand-written code while kubernetes-client-core contains code auto-generated from the OpenAPI spec.
category: Web
maintainer: Shimin Guo <smguo2001@gmail.com>,
Akshay Mankar <itsakshaymankar@gmail.com>
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
test/testdata/certs/certificate.pem
test/testdata/certs/private-key.pem
test/testdata/kubeconfig.yaml
test/testdata/tokens/token1
test/testdata/tokens/token2
README.md
library
exposed-modules:
Kubernetes.Client
Kubernetes.Client.Auth.Basic
Kubernetes.Client.Auth.ClientCert
Kubernetes.Client.Auth.GCP
Kubernetes.Client.Auth.Internal.Types
Kubernetes.Client.Auth.OIDC
Kubernetes.Client.Auth.Token
Kubernetes.Client.Auth.TokenFile
Kubernetes.Client.Config
Kubernetes.Client.Internal.TLSUtils
Kubernetes.Client.KubeConfig
Kubernetes.Client.Watch
Kubernetes.Data.K8sJSONPath
other-modules:
Paths_kubernetes_client
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
aeson >=1.2 && <1.6
, attoparsec >=0.13 && <0.14
, base >=4.7 && <5.0
, base64-bytestring
, bytestring >=0.10 && <0.11
, connection >=0.2
, containers >=0.5
, data-default-class >=0.1
, either >=5.0
, filepath >=1.4
, hoauth2 >=1.11
, http-client >=0.5 && <0.7
, http-client-tls >=0.3
, jose-jwt >=0.8
, jsonpath >=0.1 && <0.3
, kubernetes-client-core ==0.3.1.0
, microlens >=0.4 && <0.5
, mtl >=2.2
, oidc-client >=0.4
, pem >=0.2
, safe-exceptions >=0.1.0.0
, stm >=2.4
, streaming-bytestring >=0.1 && <0.3
, text >=0.11 && <1.3
, time >=1.8
, timerep >=2.0
, tls >=1.4.1
, typed-process >=0.2
, uri-bytestring >=0.3
, x509 >=1.7
, x509-store >=1.6
, x509-system >=1.6
, x509-validation >=1.6
, yaml >=0.8.32
default-language: Haskell2010
test-suite example
type: exitcode-stdio-1.0
main-is: App.hs
other-modules:
Paths_kubernetes_client
hs-source-dirs:
example
build-depends:
aeson >=1.2 && <1.6
, attoparsec >=0.13 && <0.14
, base >=4.7 && <5.0
, base64-bytestring
, bytestring >=0.10 && <0.11
, connection >=0.2
, containers >=0.5
, data-default-class >=0.1
, either >=5.0
, filepath >=1.4
, hoauth2 >=1.11
, http-client >=0.5 && <0.7
, http-client-tls >=0.3
, jose-jwt >=0.8
, jsonpath >=0.1 && <0.3
, kubernetes-client
, kubernetes-client-core ==0.3.1.0
, microlens >=0.4 && <0.5
, mtl >=2.2
, oidc-client >=0.4
, pem >=0.2
, safe-exceptions >=0.1.0.0
, stm >=2.4
, streaming-bytestring >=0.1 && <0.3
, text >=0.11 && <1.3
, time >=1.8
, timerep >=2.0
, tls >=1.4.1
, typed-process >=0.2
, uri-bytestring >=0.3
, x509 >=1.7
, x509-store >=1.6
, x509-system >=1.6
, x509-validation >=1.6
, yaml >=0.8.32
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Kubernetes.Client.Auth.BasicSpec
Kubernetes.Client.Auth.ClientCertSpec
Kubernetes.Client.Auth.TokenFileSpec
Kubernetes.Client.KubeConfigSpec
Kubernetes.Data.K8sJSONPathSpec
Paths_kubernetes_client
hs-source-dirs:
test
build-depends:
aeson >=1.2 && <1.6
, attoparsec >=0.13 && <0.14
, base >=4.7 && <5.0
, base64-bytestring
, bytestring >=0.10 && <0.11
, connection >=0.2
, containers >=0.5
, data-default-class >=0.1
, either >=5.0
, file-embed
, filepath >=1.4
, hoauth2 >=1.11
, hspec
, hspec-attoparsec
, http-client >=0.5 && <0.7
, http-client-tls >=0.3
, jose-jwt >=0.8
, jsonpath >=0.1 && <0.3
, kubernetes-client
, kubernetes-client-core ==0.3.1.0
, microlens >=0.4 && <0.5
, mtl >=2.2
, oidc-client >=0.4
, pem >=0.2
, safe-exceptions >=0.1.0.0
, stm >=2.4
, streaming-bytestring >=0.1 && <0.3
, text >=0.11 && <1.3
, time >=1.8
, timerep >=2.0
, tls >=1.4.1
, typed-process >=0.2
, uri-bytestring >=0.3
, x509 >=1.7
, x509-store >=1.6
, x509-system >=1.6
, x509-validation >=1.6
, yaml
default-language: Haskell2010

View File

@@ -37,9 +37,9 @@ dependencies:
- base >=4.7 && <5.0
- base64-bytestring
- bytestring >=0.10 && <0.11
- aeson >=1.2 && <1.5
- aeson >=1.2 && <1.6
- attoparsec >=0.13 && <0.14
- jsonpath >=0.1 && <0.2
- jsonpath >=0.1 && <0.3
- connection >=0.2
- containers >= 0.5
- data-default-class >=0.1
@@ -56,7 +56,7 @@ dependencies:
- pem >=0.2
- safe-exceptions >=0.1.0.0
- stm >=2.4
- streaming-bytestring >= 0.1 && < 0.2.0
- streaming-bytestring >= 0.1 && < 0.3
- text >=0.11 && <1.3
- time >=1.8
- timerep >=2.0

6
stack-8.10.2.yaml Normal file
View File

@@ -0,0 +1,6 @@
resolver: nightly-2020-12-06
extra-deps:
- oidc-client-0.4.0.0
packages:
- kubernetes
- kubernetes-client

19
stack-8.10.2.yaml.lock Normal file
View File

@@ -0,0 +1,19 @@
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages:
- completed:
hackage: oidc-client-0.4.0.0@sha256:f72a496ab27d9a5071be44e750718c539118ac52c2f1535a5fb3dde7f9874a55,3306
pantry-tree:
size: 1153
sha256: 68c285c6365360975d50bbb18cb07755d5ef19af8bf0e998d3ea46d35ef4a4e1
original:
hackage: oidc-client-0.4.0.0
snapshots:
- completed:
size: 556330
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2020/12/6.yaml
sha256: 53a2f3fe06fcac029ccf4fd54b5bb1745dc52451d9f023ef94721839bf991d8e
original: nightly-2020-12-06

View File

@@ -1,11 +0,0 @@
resolver: lts-11
extra-deps:
- aeson-1.3.1.1
- hoauth2-1.8.8
- jose-jwt-0.8.0
- jsonpath-0.1.0.1
- katip-0.8.0.0
- oidc-client-0.4.0.1
packages:
- kubernetes
- kubernetes-client

View File

@@ -1,11 +0,0 @@
resolver: lts-12
extra-deps:
- hoauth2-1.8.8
- jose-jwt-0.8.0
- jsonpath-0.1.0.1
- katip-0.8.0.0
- oidc-client-0.4.0.1
- uri-bytestring-aeson-0.1.0.7
packages:
- kubernetes
- kubernetes-client

6
stack-8.8.4.yaml Normal file
View File

@@ -0,0 +1,6 @@
resolver: lts-16.24
extra-deps:
- oidc-client-0.4.0.0
packages:
- kubernetes
- kubernetes-client

19
stack-8.8.4.yaml.lock Normal file
View File

@@ -0,0 +1,19 @@
# This file was autogenerated by Stack.
# You should not edit this file by hand.
# For more information, please see the documentation at:
# https://docs.haskellstack.org/en/stable/lock_files
packages:
- completed:
hackage: oidc-client-0.4.0.0@sha256:f72a496ab27d9a5071be44e750718c539118ac52c2f1535a5fb3dde7f9874a55,3306
pantry-tree:
size: 1153
sha256: 68c285c6365360975d50bbb18cb07755d5ef19af8bf0e998d3ea46d35ef4a4e1
original:
hackage: oidc-client-0.4.0.0
snapshots:
- completed:
size: 532835
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/16/24.yaml
sha256: cf2b52420b2262fe9cf0f6744929120131abd6675b1c3fb2d8b155a47f80d103
original: lts-16.24

View File

@@ -1,6 +1,6 @@
resolver: lts-14.7
extra-deps:
- jsonpath-0.1.0.1
- jsonpath-0.2.0.0
- jwt-0.10.0
- oidc-client-0.4.0.0
- hoauth2-1.16.0

View File

@@ -5,12 +5,12 @@
packages:
- completed:
hackage: jsonpath-0.1.0.1@sha256:55718ac52b25cd8ce80fbdc9079a112344f032b056cfaf30737a29b6bd1a5c12,2377
hackage: jsonpath-0.2.0.0@sha256:de8eba99a0a970ea1c82b934ccc338f3b5d3fe8273f9196f368ca7bfcf680434,2195
pantry-tree:
size: 1097
sha256: 027749c943abaa6a78adc58e5abd4b3f42644c17c5fb7edf816557424a79448b
size: 1098
sha256: dd8c7029fab3895f60fef8e1fd537c9ebde4a90006cc0f0582ffd9b87955ad9e
original:
hackage: jsonpath-0.1.0.1
hackage: jsonpath-0.2.0.0
- completed:
hackage: jwt-0.10.0@sha256:d14551b0c357424fb9441ec9a7a9d5b90b13f805fcc9327ba49db548cd64fc29,4180
pantry-tree: