You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+21
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,27 @@
2
2
3
3
All Notable changes to `Csv` will be documented in this file
4
4
5
+
## [Next] - TBD
6
+
7
+
### Added
8
+
9
+
-`League\Csv\Fragment\Expression`
10
+
-`League\Csv\Fragment\Selection` (internal class)
11
+
12
+
### Deprecated
13
+
14
+
-`League\Csv\FragmentFinder::findAll` use `League\Csv\Fragment\Expression::fragment` instead
15
+
16
+
### Fixed
17
+
18
+
-`Cast*` methods accept more input type.
19
+
-`FragmentFinder` now removes duplicate selection.
20
+
-`TabularaDataReader::matching` will return an empty `Iterable` instance when no selection is valid, previously and empty `TabularDataReader` instance was returned as unique item of the iterable returned.
Copy file name to clipboardexpand all lines: docs/9.0/reader/tabular-data-reader.md
+1
Original file line number
Diff line number
Diff line change
@@ -506,6 +506,7 @@ $reader->matchingFirstOrFail('row=3-1;4-6'); // will throw
506
506
507
507
<pclass="message-info"> Wraps the functionality of <code>FragmentFinder</code> class.</p>
508
508
<pclass="message-notice">Added in version <code>9.12.0</code> for <code>Reader</code> and <code>ResultSet</code>.</p>
509
+
<pclass="message-info">In addition to using a string expression, starting with version <code>9.17.0</code> you can alternatively use an `Expression` object.</p>
0 commit comments