Yaffs site version 1.1
[yaffs-website] / vendor / symfony / finder / CHANGELOG.md
1 CHANGELOG
2 =========
3
4 2.8.0
5 -----
6
7  * deprecated adapters and related classes
8
9 2.5.0
10 -----
11  * added support for GLOB_BRACE in the paths passed to Finder::in()
12
13 2.3.0
14 -----
15
16  * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
17  * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
18
19 2.2.0
20 -----
21
22  * added Finder::path() and Finder::notPath() methods
23  * added finder adapters to improve performance on specific platforms
24  * added support for wildcard characters (glob patterns) in the paths passed
25    to Finder::in()
26
27 2.1.0
28 -----
29
30  * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
31    Finder::sortByModifiedTime()
32  * added Countable to Finder
33  * added support for an array of directories as an argument to
34    Finder::exclude()
35  * added searching based on the file content via Finder::contains() and
36    Finder::notContains()
37  * added support for the != operator in the Comparator
38  * [BC BREAK] filter expressions (used for file name and content) are no more
39    considered as regexps but glob patterns when they are enclosed in '*' or '?'