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/Filesystem/CHANGELOG.md

66 lines
1.2 KiB
Markdown
Raw Normal View History

2012-04-26 20:57:43 +01:00
CHANGELOG
=========
4.3.0
-----
* support for passing arrays to `Filesystem::dumpFile()` is deprecated and will be removed in 5.0
* support for passing arrays to `Filesystem::appendToFile()` is deprecated and will be removed in 5.0
2017-08-02 06:32:45 +01:00
4.0.0
-----
* removed `LockHandler`
2017-09-28 17:40:37 +01:00
* Support for passing relative paths to `Filesystem::makePathRelative()` has been removed.
2017-08-02 06:32:45 +01:00
2017-10-03 14:54:22 +01:00
3.4.0
-----
* support for passing relative paths to `Filesystem::makePathRelative()` is deprecated and will be removed in 4.0
2016-11-23 20:33:32 +00:00
3.3.0
-----
* added `appendToFile()` to append contents to existing files
3.2.0
-----
* added `readlink()` as a platform independent method to read links
3.0.0
-----
* removed `$mode` argument from `Filesystem::dumpFile()`
2.8.0
-----
* added tempnam() a stream aware version of PHP's native tempnam()
2014-03-17 23:50:08 +00:00
2.6.0
-----
* added LockHandler
2.3.12
------
* deprecated dumpFile() file mode argument.
2013-04-21 08:24:34 +01:00
2.3.0
-----
* added the dumpFile() method to atomically write files
2014-03-17 23:50:08 +00:00
2.2.0
-----
* added a delete option for the mirror() method
2012-04-26 20:57:43 +01:00
2.1.0
-----
2012-06-18 11:41:52 +01:00
* 24eb396 : BC Break : mkdir() function now throws exception in case of failure instead of returning Boolean value
2012-04-26 20:57:43 +01:00
* created the component