packages feed

sandwich-contexts-minio 0.1.0.1 → 0.1.0.2

raw patch · 2 files changed

+5/−2 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Test.Sandwich.Contexts.MinIO: ContainerOptions :: ContainerSystem -> Maybe Text -> ContainerOptions
+ Test.Sandwich.Contexts.MinIO: [containerOptionsName] :: ContainerOptions -> Maybe Text
+ Test.Sandwich.Contexts.MinIO: [containerOptionsSystem] :: ContainerOptions -> ContainerSystem
+ Test.Sandwich.Contexts.MinIO: data ContainerOptions
+ Test.Sandwich.Contexts.MinIO: defaultContainerOptions :: ContainerOptions

Files

lib/Test/Sandwich/Contexts/MinIO.hs view
@@ -31,6 +31,8 @@   , testS3Server   , TestS3Server(..)   , HasTestS3Server+  , ContainerOptions(..)+  , defaultContainerOptions   , HttpMode(..)   , NetworkAddress(..) @@ -61,7 +63,7 @@ import System.FilePath import System.IO.Temp import Test.Sandwich-import Test.Sandwich.Contexts.Container (ContainerOptions(..), containerPortToHostPort)+import Test.Sandwich.Contexts.Container (ContainerOptions(..), containerPortToHostPort, defaultContainerOptions) import Test.Sandwich.Contexts.Files import Test.Sandwich.Contexts.HttpWaits import Test.Sandwich.Contexts.MinIO.Util@@ -77,6 +79,7 @@  -- * Types +-- | Construct a 'ConnectInfo' (from the @minio-hs@ package) for the given 'TestS3Server'. testS3ServerConnectInfo :: TestS3Server -> ConnectInfo testS3ServerConnectInfo testServ@(TestS3Server {..}) =   fromString (toString (testS3ServerEndpoint testServ))
sandwich-contexts-minio.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           sandwich-contexts-minio-version:        0.1.0.1+version:        0.1.0.2 synopsis:       Sandwich test contexts for MinIO description:    Please see README.md author:         Tom McLaughlin