diff options
-rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 20164b6..cf6388e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ #Changelog All Notable changes to `League\Csv` will be documented in this file +## Next - XXXX-XX-XX + +### Added + +- `Writer::setCellContentValidation` To disabled/enable cell content checking before insertion the is an optimization when working with large data source. + +### Fixed + +- `AbstractCSV::createFromString` now accepts `$newline` a second argument to specify the last added new line character. To better work with interoperability. + + ## 6.3.0 - 2015-01-21 ### Added @@ -32,7 +43,7 @@ to manage BOM character with CSV. - named constructors `createFromPath` and `createFromFileObject` in `League\Csv\AbstractCsv` to ease CSV object instantiation - `detectDelimiterList` in `League\Csv\AbstractCsv` to replace and remove the use of `RuntimeException` in `detectDelimiter` - `setEncodingFrom` and `setDecodingFrom` in `League\Csv\AbstractCsv` to replace `setEncoding` and `getEncoding` for naming consistency -- `newWriter` and `newReader` methods in `League\Csv\AbstractCsv` to replace `League\Csv\Writer::getReader` and `League\Csv\Reader::getWriter` +- `newWriter` and `newReader` methods in `League\Csv\AbstractCsv` to replace `Writer::getReader` and `Reader::getWriter` ### Deprecated - Nothing |