酒店预订平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

CHANGELOG.md 1.8 KiB

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