commit | author | age
|
2207d6
|
1 |
CHANGELOG |
W |
2 |
========= |
|
3 |
|
|
4 |
4.3.0 |
|
5 |
----- |
|
6 |
|
|
7 |
* added Finder::ignoreVCSIgnored() to ignore files based on rules listed in .gitignore |
|
8 |
|
|
9 |
4.2.0 |
|
10 |
----- |
|
11 |
|
|
12 |
* added $useNaturalSort option to Finder::sortByName() method |
|
13 |
* the `Finder::sortByName()` method will have a new `$useNaturalSort` |
|
14 |
argument in version 5.0, not defining it is deprecated |
|
15 |
* added `Finder::reverseSorting()` to reverse the sorting |
|
16 |
|
|
17 |
4.0.0 |
|
18 |
----- |
|
19 |
|
|
20 |
* removed `ExceptionInterface` |
|
21 |
* removed `Symfony\Component\Finder\Iterator\FilterIterator` |
|
22 |
|
|
23 |
3.4.0 |
|
24 |
----- |
|
25 |
|
|
26 |
* deprecated `Symfony\Component\Finder\Iterator\FilterIterator` |
|
27 |
* added Finder::hasResults() method to check if any results were found |
|
28 |
|
|
29 |
3.3.0 |
|
30 |
----- |
|
31 |
|
|
32 |
* added double-star matching to Glob::toRegex() |
|
33 |
|
|
34 |
3.0.0 |
|
35 |
----- |
|
36 |
|
|
37 |
* removed deprecated classes |
|
38 |
|
|
39 |
2.8.0 |
|
40 |
----- |
|
41 |
|
|
42 |
* deprecated adapters and related classes |
|
43 |
|
|
44 |
2.5.0 |
|
45 |
----- |
|
46 |
* added support for GLOB_BRACE in the paths passed to Finder::in() |
|
47 |
|
|
48 |
2.3.0 |
|
49 |
----- |
|
50 |
|
|
51 |
* added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs()) |
|
52 |
* unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception |
|
53 |
|
|
54 |
2.2.0 |
|
55 |
----- |
|
56 |
|
|
57 |
* added Finder::path() and Finder::notPath() methods |
|
58 |
* added finder adapters to improve performance on specific platforms |
|
59 |
* added support for wildcard characters (glob patterns) in the paths passed |
|
60 |
to Finder::in() |
|
61 |
|
|
62 |
2.1.0 |
|
63 |
----- |
|
64 |
|
|
65 |
* added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and |
|
66 |
Finder::sortByModifiedTime() |
|
67 |
* added Countable to Finder |
|
68 |
* added support for an array of directories as an argument to |
|
69 |
Finder::exclude() |
|
70 |
* added searching based on the file content via Finder::contains() and |
|
71 |
Finder::notContains() |
|
72 |
* added support for the != operator in the Comparator |
|
73 |
* [BC BREAK] filter expressions (used for file name and content) are no more |
|
74 |
considered as regexps but glob patterns when they are enclosed in '*' or '?' |