1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# ChangeLog for conduit-extra
## 1.3.6
* Add support for `transformers-0.6`
## 1.3.5
* Add `createSinkClose`
## 1.3.4
* Use `MonadUnliftIO`-generalized versions of `withProcess`-style functions now provided by `typed-process`
## 1.3.3
* Disable buffering in process modules [#402](https://github.com/snoyberg/conduit/issues/402)
## 1.3.2
* Expose `BuilderInput` and `FlushInput`.
## 1.3.1.1
* Attempt to fix a test suite failure [#385](https://github.com/snoyberg/conduit/issues/385)
## 1.3.1
* Switched `gzip` to use zlib's default compression level.
## 1.3.0
* Switch over to unliftio
* Upgrade to conduit 1.3.0
## 1.2.3.2
* Fix withSinkFileBuilder [#344](https://github.com/snoyberg/conduit/pull/344)
## 1.2.3.1
* Fix typo in implementation of `withProcess_`
## 1.2.3
* Added `withLoggedProcess_`
## 1.2.2.1
* Add missing `hClose` to `withSinkFileCautious`
## 1.2.2
* `sinkHandleBuilder`, `sinkHandleFlush`, `BuilderInput`, and `FlushInput`
[#336](https://github.com/snoyberg/conduit/pull/336)
* `withSinkFileCautious`
## 1.2.1
* `Data.Conduit.Process.Typed`
* `withSourceFile`, `withSinkFile`, and `withSinkFileBuilder`
## 1.2.0
* Added the `posOffset` field to the
`Data.Conduit.Attoparsec.Position` data type
[#331](https://github.com/snoyberg/conduit/issues/331).
## 1.1.17
* Speed up `sinkHandle` by not flushing after every output operation.
[#322](https://github.com/snoyberg/conduit/issues/322)
## 1.1.16
* Add `Data.Conduit.Foldl` adapter module for the `foldl`
package. [#312](https://github.com/snoyberg/conduit/pull/312)
## 1.1.15
* `sinkTempFile` and `sinkSystemTempFile`
## 1.1.14
* `sinkFileCautious`
## 1.1.13.3
* `withCheckedProcessCleanup` properly closes opened `Handle`s
[#280](https://github.com/snoyberg/conduit/issues/280)
## 1.1.13.2
* Fix alignment issues on non-X86 archs
## 1.1.13.1
* Fix an incorrect comment
## 1.1.13
* Add `sinkStorable` and `sinkStorableEx`
## 1.1.12.1
* Fix build for GHC `<= 7.8` [#260](https://github.com/snoyberg/conduit/issues/260)
* Fix accidentally breaking change in `sourceProcessWithConsumer` type signature
## 1.1.12
* Add sourceProcessWithStreams [#258](https://github.com/snoyberg/conduit/pull/258)
## 1.1.11
* `withCheckedProcessCleanup`
## 1.1.10.1
* Fix a leftovers bug in helperDecompress #254
## 1.1.10
* `multiple` combinator for `Data.Conduit.Zlib` [#254](https://github.com/snoyberg/conduit/issues/254)
## 1.1.9.3
* Some typo fixes in docs
## 1.1.9
* detectUtf [#217](https://github.com/snoyberg/conduit/pull/217)
## 1.1.8
* Adding buffer size to sourceHandleRange [#213](https://github.com/snoyberg/conduit/pull/213)
## 1.1.7.3
* Make Binary.lines O(n) instead of O(n^2) [#209](https://github.com/snoyberg/conduit/pull/209)
## 1.1.7.2
* Fix for: Decompressing a specific amount of zlib data "eats" following data [#20](https://github.com/fpco/streaming-commons/issues/20)
## 1.1.7
Add `Data.Conduit.ByteString.Builder`
## 1.1.6
Generalized return type in `runGeneralTCPServer`.
## 1.1.5
Added `sinkParserEither` ([pull request #189](https://github.com/snoyberg/conduit/pull/189))
|