Pull merge.
[yaffs-website] / vendor / symfony / finder / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 3.4.0
5 -----
6
7  * deprecated `Symfony\Component\Finder\Iterator\FilterIterator`
8  * added Finder::hasResults() method to check if any results were found
9
10 3.3.0
11 -----
12
13  * added double-star matching to Glob::toRegex()
14
15 3.0.0
16 -----
17
18  * removed deprecated classes
19
20 2.8.0
21 -----
22
23  * deprecated adapters and related classes
24
25 2.5.0
26 -----
27  * added support for GLOB_BRACE in the paths passed to Finder::in()
28
29 2.3.0
30 -----
31
32  * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
33  * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
34
35 2.2.0
36 -----
37
38  * added Finder::path() and Finder::notPath() methods
39  * added finder adapters to improve performance on specific platforms
40  * added support for wildcard characters (glob patterns) in the paths passed
41    to Finder::in()
42
43 2.1.0
44 -----
45
46  * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
47    Finder::sortByModifiedTime()
48  * added Countable to Finder
49  * added support for an array of directories as an argument to
50    Finder::exclude()
51  * added searching based on the file content via Finder::contains() and
52    Finder::notContains()
53  * added support for the != operator in the Comparator
54  * [BC BREAK] filter expressions (used for file name and content) are no more
55    considered as regexps but glob patterns when they are enclosed in '*' or '?'