-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #493 from NiR-/changelog
Complete CHANGELOG for v.0.4.0
- Loading branch information
Showing
1 changed file
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,36 @@ | ||
v0.4 | ||
==== | ||
|
||
* Unmaintained `mongo` extension replaced with newer `mongodb` extension | ||
* Support for PHP 5.4 & PHP 5.5 has been dropped | ||
* Following adapters have been deprecated: AclAwareAmazonS3, AmazonS3, Apc, Cache, LazyOpenCloud, Sftp, Dropbox, MogileFS, GoogleCloudStorage (see #482) | ||
* Improvement of test coverage during CI builds: functional tests for AzureBlobStorage, AwsS3, DoctrineDbal, Ftp, GridFS, OpenCloud and PhpseclibSftp now run on Travis (see #457, #460, #483, #484, #500, #504, #505) | ||
* Maintained adapters now have metapackage to enforce version of 3rd party libraries, and ease installation process (see #487) | ||
* Add FilesystemInterface and make current Filesystem implement it (see #492) | ||
* Drop support for PHP v5.4 and v5.5 (see #503) | ||
* File: | ||
* Add rename method to File (see #468) | ||
* Local adapter: | ||
* Suppress warning if directory has been created between check and create attempt (see #331) | ||
* Replace file_exists with is_file, to check if given path exists (see #479) | ||
* Allow Local adapter mkdir mode to cascade to it's Stream (see #488) | ||
* Fix phpdocs (see #489) | ||
* AzureBlobStorage: | ||
* Add support for multi container mode (see #486) | ||
* AwsS3 adapter: | ||
* Add ContentType support to AwsS3 (see #451) | ||
* Allow aws-sdk-php v2 and v3 to be used (see #457, #462, #475) | ||
* Provide mime type (see #491) | ||
* Deprecate AwsS3::getUrl() method, instead use ResolvableFilesystem from [`gaufrette/extras`](https://github.com/Gaufrette/extras) (see #496) | ||
* GridFS adapter: | ||
* Unmaintained mongo extension has been replaced with newer mongodb extension (see #460) | ||
* GoogleCloudStorage adapter: | ||
* Fixed missing leading "\" before Google_Http_Request (see #471) | ||
* Ftp adapter: | ||
* Always ensure target directory exists before renaming (see #476) | ||
* Don't use FTP_USEPASSVADDRESS before php 5.6.18, and 7.0.0/7.0.1 (see #477, #480, #483) | ||
* Docs: | ||
* Add minimum IAM roles for AwsS3 adapter, and recommend to manually create bucket (see #467) | ||
|
||
|
||
Contributors: @NiR-, @nicolasmure, @WARrior-Alex, @zyphlar, @AntoineLelaisant, @Shivoham, @richardfullmer, @kcassam. | ||
|
||
Also, we thank @edhgoose and @zyphlar who made patches for deprecated adapters, before those adapters were deprecated, but still did not see their respective work merged in this version. |