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