Skip to content

Commit 401a527

Browse files
committed
Update v1.1.0
1 parent ba6ac88 commit 401a527

27 files changed

+635
-1492
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/.idea/
2+
/.vscode/
23
/vendor/

CHANGELOG.md

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
1-
# Change log
1+
# Change Log
22

3-
### v1.0.2 (2020-8-17)
3+
## v1.1.0 (2020-10-13)
44

5-
* Fix `isExists` method (#5).
5+
### Removed
6+
7+
* Removed `FtpBaseConfig` class.
8+
* Removed `FtpClient::getTransferMode` method.
9+
* Removed `FtpClient::isEmptyDirectory` & `FtpClient::isEmptyFile` use `FtpClient::isEmpty` instead for both files and directories.
10+
11+
### Behavior changed
12+
13+
* `FtpClient::removeFile` & `FtpClient::removeDirectory` methods now doesn't throw an exception if the given file doesn't exist, but instead returns false.
14+
* `FtpClient::createFile` now doesn't throw an exception if the file name already exists on the server, instead, the remote file will be overwritten.
15+
* `FtpClient::createDirectory` now returns true if the giving directory already exists instead of throwing an exception.
16+
17+
### Improved
18+
19+
* FTP error handling improved, the `FtpWrapper` is now responsible for detecting and muting FTP functions errors.
20+
* Unit tests improved.
21+
* Docs improved.
22+
23+
## v1.0.2 (2020-8-17)
24+
25+
* Fixed `isExists` method (#5).
626
* Fixed error handling of `createDirectory` & `createFile` methods (#5).
727

8-
### v1.0.0 (2020-8-15)
28+
## v1.0.0 (2020-8-15)
929

1030
* Fixed listDirectoryDetails not working with directories contains spaces. (#2)
1131
* Fixed listDirectoryDetails incorrect file path. (#4)
1232

13-
### v1.0.0-RC1 (2020-5-17)
33+
## v1.0.0-RC1 (2020-5-17)
1434

1535
* First release.

0 commit comments

Comments
 (0)