Chris@0: CHANGELOG Chris@0: ========= Chris@0: Chris@12: 3.4.0 Chris@12: ----- Chris@12: Chris@12: * deprecated `Symfony\Component\Finder\Iterator\FilterIterator` Chris@12: * added Finder::hasResults() method to check if any results were found Chris@12: Chris@0: 3.3.0 Chris@0: ----- Chris@0: Chris@0: * added double-star matching to Glob::toRegex() Chris@0: Chris@0: 3.0.0 Chris@0: ----- Chris@0: Chris@0: * removed deprecated classes Chris@0: Chris@0: 2.8.0 Chris@0: ----- Chris@0: Chris@0: * deprecated adapters and related classes Chris@0: Chris@0: 2.5.0 Chris@0: ----- Chris@0: * added support for GLOB_BRACE in the paths passed to Finder::in() Chris@0: Chris@0: 2.3.0 Chris@0: ----- Chris@0: Chris@0: * added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs()) Chris@0: * unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception Chris@0: Chris@0: 2.2.0 Chris@0: ----- Chris@0: Chris@0: * added Finder::path() and Finder::notPath() methods Chris@0: * added finder adapters to improve performance on specific platforms Chris@0: * added support for wildcard characters (glob patterns) in the paths passed Chris@0: to Finder::in() Chris@0: Chris@0: 2.1.0 Chris@0: ----- Chris@0: Chris@0: * added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and Chris@0: Finder::sortByModifiedTime() Chris@0: * added Countable to Finder Chris@0: * added support for an array of directories as an argument to Chris@0: Finder::exclude() Chris@0: * added searching based on the file content via Finder::contains() and Chris@0: Finder::notContains() Chris@0: * added support for the != operator in the Comparator Chris@0: * [BC BREAK] filter expressions (used for file name and content) are no more Chris@0: considered as regexps but glob patterns when they are enclosed in '*' or '?'