packages feed

amazonka-codepipeline 1.0.0 → 1.0.1

raw patch · 3 files changed

+48/−48 lines, 3 filesdep ~amazonka-codepipelinedep ~amazonka-coredep ~amazonka-testPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: amazonka-codepipeline, amazonka-core, amazonka-test

API changes (from Hackage documentation)

Files

README.md view
@@ -8,7 +8,7 @@  ## Version -`1.0.0`+`1.0.1`   ## Description
amazonka-codepipeline.cabal view
@@ -1,5 +1,5 @@ name:                  amazonka-codepipeline-version:               1.0.0+version:               1.0.1 synopsis:              Amazon CodePipeline SDK. homepage:              https://github.com/brendanhay/amazonka license:               OtherLicense@@ -162,7 +162,7 @@         , Network.AWS.CodePipeline.Types.Sum      build-depends:-          amazonka-core == 1.0.0.*+          amazonka-core == 1.0.1.*         , base          >= 4.7     && < 5  test-suite amazonka-codepipeline-test@@ -181,9 +181,9 @@         , Test.AWS.CodePipeline.Internal      build-depends:-          amazonka-core == 1.0.0-        , amazonka-test == 1.0.0-        , amazonka-codepipeline == 1.0.0+          amazonka-core == 1.0.1+        , amazonka-test == 1.0.1+        , amazonka-codepipeline == 1.0.1         , base         , bytestring         , lens
gen/Network/AWS/CodePipeline/Types/Sum.hs view
@@ -35,15 +35,15 @@         "source" -> pure Source         "test" -> pure Test         e -> fromTextError $ "Failure parsing ActionCategory from value: '" <> e-           <> "'. Accepted values: build, deploy, invoke, source, test"+           <> "'. Accepted values: Build, Deploy, Invoke, Source, Test"  instance ToText ActionCategory where     toText = \case-        Build -> "build"-        Deploy -> "deploy"-        Invoke -> "invoke"-        Source -> "source"-        Test -> "test"+        Build -> "Build"+        Deploy -> "Deploy"+        Invoke -> "Invoke"+        Source -> "Source"+        Test -> "Test"  instance Hashable     ActionCategory instance ToByteString ActionCategory@@ -68,13 +68,13 @@         "number" -> pure Number         "string" -> pure String         e -> fromTextError $ "Failure parsing ActionConfigurationPropertyType from value: '" <> e-           <> "'. Accepted values: boolean, number, string"+           <> "'. Accepted values: Boolean, Number, String"  instance ToText ActionConfigurationPropertyType where     toText = \case-        Boolean -> "boolean"-        Number -> "number"-        String -> "string"+        Boolean -> "Boolean"+        Number -> "Number"+        String -> "String"  instance Hashable     ActionConfigurationPropertyType instance ToByteString ActionConfigurationPropertyType@@ -99,13 +99,13 @@         "inprogress" -> pure InProgress         "succeeded" -> pure Succeeded         e -> fromTextError $ "Failure parsing ActionExecutionStatus from value: '" <> e-           <> "'. Accepted values: failed, inprogress, succeeded"+           <> "'. Accepted values: Failed, InProgress, Succeeded"  instance ToText ActionExecutionStatus where     toText = \case-        Failed -> "failed"-        InProgress -> "inprogress"-        Succeeded -> "succeeded"+        Failed -> "Failed"+        InProgress -> "InProgress"+        Succeeded -> "Succeeded"  instance Hashable     ActionExecutionStatus instance ToByteString ActionExecutionStatus@@ -127,13 +127,13 @@         "custom" -> pure Custom         "thirdparty" -> pure ThirdParty         e -> fromTextError $ "Failure parsing ActionOwner from value: '" <> e-           <> "'. Accepted values: aws, custom, thirdparty"+           <> "'. Accepted values: AWS, Custom, ThirdParty"  instance ToText ActionOwner where     toText = \case-        AWS -> "aws"-        Custom -> "custom"-        ThirdParty -> "thirdparty"+        AWS -> "AWS"+        Custom -> "Custom"+        ThirdParty -> "ThirdParty"  instance Hashable     ActionOwner instance ToByteString ActionOwner@@ -154,11 +154,11 @@     parser = takeLowerText >>= \case         "s3" -> pure ALTS3         e -> fromTextError $ "Failure parsing ArtifactLocationType from value: '" <> e-           <> "'. Accepted values: s3"+           <> "'. Accepted values: S3"  instance ToText ArtifactLocationType where     toText = \case-        ALTS3 -> "s3"+        ALTS3 -> "S3"  instance Hashable     ArtifactLocationType instance ToByteString ArtifactLocationType@@ -176,11 +176,11 @@     parser = takeLowerText >>= \case         "s3" -> pure S3         e -> fromTextError $ "Failure parsing ArtifactStoreType from value: '" <> e-           <> "'. Accepted values: s3"+           <> "'. Accepted values: S3"  instance ToText ArtifactStoreType where     toText = \case-        S3 -> "s3"+        S3 -> "S3"  instance Hashable     ArtifactStoreType instance ToByteString ArtifactStoreType@@ -201,11 +201,11 @@     parser = takeLowerText >>= \case         "schedule" -> pure Schedule         e -> fromTextError $ "Failure parsing BlockerType from value: '" <> e-           <> "'. Accepted values: schedule"+           <> "'. Accepted values: Schedule"  instance ToText BlockerType where     toText = \case-        Schedule -> "schedule"+        Schedule -> "Schedule"  instance Hashable     BlockerType instance ToByteString BlockerType@@ -236,16 +236,16 @@         "revisionunavailable" -> pure RevisionUnavailable         "systemunavailable" -> pure SystemUnavailable         e -> fromTextError $ "Failure parsing FailureType from value: '" <> e-           <> "'. Accepted values: configurationerror, jobfailed, permissionerror, revisionoutofsync, revisionunavailable, systemunavailable"+           <> "'. Accepted values: ConfigurationError, JobFailed, PermissionError, RevisionOutOfSync, RevisionUnavailable, SystemUnavailable"  instance ToText FailureType where     toText = \case-        ConfigurationError -> "configurationerror"-        JobFailed -> "jobfailed"-        PermissionError -> "permissionerror"-        RevisionOutOfSync -> "revisionoutofsync"-        RevisionUnavailable -> "revisionunavailable"-        SystemUnavailable -> "systemunavailable"+        ConfigurationError -> "ConfigurationError"+        JobFailed -> "JobFailed"+        PermissionError -> "PermissionError"+        RevisionOutOfSync -> "RevisionOutOfSync"+        RevisionUnavailable -> "RevisionUnavailable"+        SystemUnavailable -> "SystemUnavailable"  instance Hashable     FailureType instance ToByteString FailureType@@ -275,17 +275,17 @@         "succeeded" -> pure JSSucceeded         "timedout" -> pure JSTimedOut         e -> fromTextError $ "Failure parsing JobStatus from value: '" <> e-           <> "'. Accepted values: created, dispatched, failed, inprogress, queued, succeeded, timedout"+           <> "'. Accepted values: Created, Dispatched, Failed, InProgress, Queued, Succeeded, TimedOut"  instance ToText JobStatus where     toText = \case-        JSCreated -> "created"-        JSDispatched -> "dispatched"-        JSFailed -> "failed"-        JSInProgress -> "inprogress"-        JSQueued -> "queued"-        JSSucceeded -> "succeeded"-        JSTimedOut -> "timedout"+        JSCreated -> "Created"+        JSDispatched -> "Dispatched"+        JSFailed -> "Failed"+        JSInProgress -> "InProgress"+        JSQueued -> "Queued"+        JSSucceeded -> "Succeeded"+        JSTimedOut -> "TimedOut"  instance Hashable     JobStatus instance ToByteString JobStatus@@ -305,12 +305,12 @@         "inbound" -> pure Inbound         "outbound" -> pure Outbound         e -> fromTextError $ "Failure parsing StageTransitionType from value: '" <> e-           <> "'. Accepted values: inbound, outbound"+           <> "'. Accepted values: Inbound, Outbound"  instance ToText StageTransitionType where     toText = \case-        Inbound -> "inbound"-        Outbound -> "outbound"+        Inbound -> "Inbound"+        Outbound -> "Outbound"  instance Hashable     StageTransitionType instance ToByteString StageTransitionType