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
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Change Log
2
2
3
+
## 1.6.1 (2022-02-27)
4
+
5
+
* Integrated the GitHub actions to run the integration tests automatically ([#31](https://github.com/lazzard/php-ftp-client/pull/31) - [#32](https://github.com/lazzard/php-ftp-client/pull/32)).
6
+
*`FtpClient::copyToLocal` now throws an exception if the source remote path is file type and the local destionation directory is not found.
7
+
3
8
## 1.6.0 (2022-01-31)
4
9
5
10
* Upgraded the code base to PHP `^7.4`.
@@ -38,8 +43,8 @@
38
43
39
44
*`FtpClient::fileSize` fixed for servers that not support `SIZE` feature.
40
45
*`FtpClient::listDir` fixed compatibility issue with some FTP servers.
41
-
*`Connection::isConnected` fixed bug : if the connection is not established yet the method was returned
42
-
a NULL value instead of false.
46
+
*`Connection::isConnected` fixed bug : if the connection is not established yet the method was returned
47
+
a NULL value instead of false.
43
48
*`FtpCommand::raw` improved and added the `end-message` to the returned array.
44
49
*`FtpClient::isDir` performance optimized.
45
50
*`FtpClient::listDirDetails` improved (No Breaking Change).
@@ -69,7 +74,7 @@ a NULL value instead of false.
69
74
*`FtpClient::copyToLocal` method added.
70
75
*`FtpClient::find` method added.
71
76
72
-
### Renamed
77
+
### Renamed
73
78
74
79
*`FtpClient::setCurrentDir` renamed to `FtpClient::changeDir`.
75
80
*`FtpClient::createDirectory` renamed to `FtpClient::createDir`.
@@ -119,7 +124,7 @@ a NULL value instead of false.
119
124
## v1.2.0 (2021-01-12)
120
125
121
126
* Upgraded to PHP 5.6.0 version.
122
-
* Supported the `usePassiveAddress` runtime option.
127
+
* Supported the `usePassiveAddress` runtime option.
123
128
* Added more options for unit testing (`PASSIVE`, `INITIAL_DIR`).
124
129
* Removed `USESSL` option for unit testing.
125
130
@@ -132,7 +137,7 @@ a NULL value instead of false.
132
137
* Removed `FtpClient::isEmptyDirectory` & `FtpClient::isEmptyFile` use `FtpClient::isEmpty` instead for both files and directories.
133
138
134
139
### Behavior changed
135
-
140
+
136
141
*`FtpClient::removeFile` & `FtpClient::removeDirectory` methods now doesn't throw an exception if the given file doesn't exist, but instead returns false.
137
142
*`FtpClient::createFile` now doesn't throw an exception if the file name already exists on the server, instead, the remote file will be overwritten.
138
143
*`FtpClient::createDirectory` now returns true if the giving directory already exists instead of throwing an exception.
0 commit comments