-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
635 additions
and
1,492 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,2 +1,3 @@ | ||
/.idea/ | ||
/.vscode/ | ||
/vendor/ |
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,15 +1,35 @@ | ||
# Change log | ||
# Change Log | ||
|
||
### v1.0.2 (2020-8-17) | ||
## v1.1.0 (2020-10-13) | ||
|
||
* Fix `isExists` method (#5). | ||
### Removed | ||
|
||
* Removed `FtpBaseConfig` class. | ||
* Removed `FtpClient::getTransferMode` method. | ||
* Removed `FtpClient::isEmptyDirectory` & `FtpClient::isEmptyFile` use `FtpClient::isEmpty` instead for both files and directories. | ||
|
||
### Behavior changed | ||
|
||
* `FtpClient::removeFile` & `FtpClient::removeDirectory` methods now doesn't throw an exception if the given file doesn't exist, but instead returns false. | ||
* `FtpClient::createFile` now doesn't throw an exception if the file name already exists on the server, instead, the remote file will be overwritten. | ||
* `FtpClient::createDirectory` now returns true if the giving directory already exists instead of throwing an exception. | ||
|
||
### Improved | ||
|
||
* FTP error handling improved, the `FtpWrapper` is now responsible for detecting and muting FTP functions errors. | ||
* Unit tests improved. | ||
* Docs improved. | ||
|
||
## v1.0.2 (2020-8-17) | ||
|
||
* Fixed `isExists` method (#5). | ||
* Fixed error handling of `createDirectory` & `createFile` methods (#5). | ||
|
||
### v1.0.0 (2020-8-15) | ||
## v1.0.0 (2020-8-15) | ||
|
||
* Fixed listDirectoryDetails not working with directories contains spaces. (#2) | ||
* Fixed listDirectoryDetails incorrect file path. (#4) | ||
|
||
### v1.0.0-RC1 (2020-5-17) | ||
## v1.0.0-RC1 (2020-5-17) | ||
|
||
* First release. |
Oops, something went wrong.