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