You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,18 @@
1
1
# Change Log
2
2
3
+
## 1.5.3 (2021-10-10)
4
+
5
+
* Added new method `FtpClient::appendFile`.
6
+
* Added getters and setters for various classes (see [commit](https://github.com/lazzard/php-ftp-client/commit/02df6b9be719a236701c2bcb78f990632131ffae)).
7
+
* Removed the deprecated `ConnectionInterface::isSecure`.
8
+
* Removed the deprecated `ConnectionInterface::isPassive`.
9
+
*`FtpClient::fileSize` is now throw exception if the giving file is a directory type or an error occurs.
10
+
3
11
## 1.5.0 (2021-10-08)
4
12
5
13
* Upgraded the code base to PHP v7.2.
6
14
* Upgraded PHPUnit to ^8.0.
7
-
*`FtpCommand::raw` is now throw exception in failure.
15
+
*`FtpCommand::raw` is now throw an exception in failure.
8
16
*`FtpWrapper::getErrorMessage` returns empty string instead of null if no error message is available.
9
17
*`FtpClient::getFeatures` throws exception in failure.
10
18
* Fixed `FtpClient::createDir` for multiple directory creation.
This document describes some desired features, API methods, and PHP/PHPUnit upgrades for the feature releases of this library.
3
+
> This document describes some desired features, API methods, and PHP/PHPUnit upgrades for the feature releases of this library.
4
4
5
5
## The next PHP Upgrades
6
6
@@ -12,11 +12,5 @@ This document describes some desired features, API methods, and PHP/PHPUnit upgr
12
12
13
13
## API methods
14
14
15
-
-[ ] Create a helper method for the `ftp_append` function.
16
-
-[ ] Add `FtpClient::getTransferMode($file)` method to find the appropriate transfer mode (not based on file extension) for the giving **local** file.
15
+
-[ ] Adding the `FtpClient::getTransferMode($file)` method to find the appropriate transfer mode (not based on file extension) for the giving **local** file.
17
16
-[ ] Implement a method that allows to download all the files within the giving remote directory.
18
-
19
-
## Not wrapped FTP extension functions - why ?
20
-
21
-
-[ ][ftp_quit](https://www.php.net/manual/en/function.ftp-quit.php) - is just an alias of [ftp_close](https://www.php.net/manual/en/function.ftp-close.php) function.
22
-
-[ ][ftp_np_put](https://www.php.net/manual/en/function.ftp-nb-put.php) - using [ftp_np_fput](https://www.php.net/manual/en/function.ftp-nb-fput.php) instead for the upload progress.
0 commit comments