packages feed

conduit-combinators 0.3.0.4 → 0.3.0.5

raw patch · 3 files changed

+10/−6 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Conduit/Combinators.hs view
@@ -405,7 +405,7 @@ -- | Read all data from the given file. -- -- This function automatically opens and closes the file handle, and ensures--- exception safety via @MonadResource. It works for all instances of @IOData@,+-- exception safety via @MonadResource@. It works for all instances of @IOData@, -- including @ByteString@ and @Text@. -- -- Since 1.0.0@@ -1212,7 +1212,7 @@ -- | Write all data to the given file. -- -- This function automatically opens and closes the file handle, and ensures--- exception safety via @MonadResource. It works for all instances of @IOData@,+-- exception safety via @MonadResource@. It works for all instances of @IOData@, -- including @ByteString@ and @Text@. -- -- Since 1.0.0@@ -1855,7 +1855,7 @@ -- | Split a stream of arbitrarily-chunked data, based on a predicate -- on elements.  Elements that satisfy the predicate will cause chunks -- to be split, and aren't included in these output chunks.  Note--- that, if you have unknown/untrusted input, this function is+-- that, if you have unknown or untrusted input, this function is -- /unsafe/, since it would allow an attacker to form chunks of -- massive length and exhaust memory. splitOnUnboundedE, splitOnUnboundedEC@@ -1880,7 +1880,7 @@  -- | Convert a stream of arbitrarily-chunked textual data into a stream of data -- where each chunk represents a single line. Note that, if you have--- unknown/untrusted input, this function is /unsafe/, since it would allow an+-- unknown or untrusted input, this function is /unsafe/, since it would allow an -- attacker to form lines of massive length and exhaust memory. -- -- Subject to fusion
+ README.md view
@@ -0,0 +1,4 @@+conduit-combinators+===================++Commonly used conduit functions, for both chunked and unchunked data
conduit-combinators.cabal view
@@ -1,5 +1,5 @@ name:                conduit-combinators-version:             0.3.0.4+version:             0.3.0.5 synopsis:            Commonly used conduit functions, for both chunked and unchunked data description:         Provides a replacement for Data.Conduit.List, as well as a convenient Conduit module. homepage:            https://github.com/fpco/conduit-combinators@@ -10,7 +10,7 @@ category:            Data, Conduit build-type:          Simple cabal-version:       >=1.8-extra-source-files:  test/subdir/dummyfile.txt fusion-macros.h ChangeLog.md+extra-source-files:  test/subdir/dummyfile.txt fusion-macros.h ChangeLog.md README.md  library   exposed-modules:     Conduit