This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Finder/CHANGELOG.md

31 lines
1014 B
Markdown
Raw Normal View History

2012-04-26 20:57:04 +01:00
CHANGELOG
=========
2.3.0
-----
2013-04-22 14:01:19 +01:00
* added a way to ignore unreadable directories (via Finder::ignoreUnreadableDirs())
* unified the way subfolders that are not executable are handled by always throwing an AccessDeniedException exception
2012-10-04 14:24:19 +01:00
2.2.0
-----
2012-10-30 06:06:51 +00:00
* added Finder::path() and Finder::notPath() methods
2012-10-04 14:24:19 +01:00
* added finder adapters to improve performance on specific platforms
* added support for wildcard characters (glob patterns) in the paths passed
to Finder::in()
2012-10-04 14:24:19 +01:00
2012-04-26 20:57:04 +01:00
2.1.0
-----
* added Finder::sortByAccessedTime(), Finder::sortByChangedTime(), and
Finder::sortByModifiedTime()
* added Countable to Finder
* added support for an array of directories as an argument to
Finder::exclude()
* added searching based on the file content via Finder::contains() and
Finder::notContains()
* added support for the != operator in the Comparator
* [BC BREAK] filter expressions (used for file name and content) are no more
considered as regexps but glob patterns when they are enclosed in '*' or '?'