Skip to content

Releases: eclipse-ecal/fineftp-server

fineFTP v1.4.2

01 Mar 09:41
3668eda
Compare
Choose a tag to compare
  • Fixed a bug that caused empty files to be not downloadable.
    • Added GTest that tests uploading and downloading empty files.
    • Before, files with no content reported an error when trying to download them. Now, they are properly "downloaded", i.e. the data socket is opened and immediately a finished data transfer is reported.
    • Thanks to @ottmar-zittlau for reporting

fineFTP v1.4.1

10 Nov 09:17
7ed82e4
Compare
Choose a tag to compare
  • Fixed a bug that caused fineFTP to to report negative numbers as IP address as response to the PASV command (Thanks to @bjuulp)
  • Fixed a potential crash on Windows when downloading files. Allegedly, this crash occurred on Windows XP and is fixed, now.
  • The data socket is now properly closed after a file-download has finished.
  • Added a CMake option to delay sending the 226 response, after a file download. This is a workaround for a buggy version of lwftp and therefore disabled by default. It can be enabled at compile-time by setting the CMake Variable FINEFTP_SERVER_DELAY_226_RESP_MS to a non-zero value (Thanks to @bjuulp)

fineFTP v1.4.0

02 Nov 15:16
4e8ae35
Compare
Choose a tag to compare
  • Performance improvements for FTP Downloads through memory-mapped file (Thanks to @bjuulp)
  • Added googletest as submodule
  • Added unit tests for fineftp-server. The tests require C++17 to compile and curl to be present in the PATH when executing them
  • New CMake Options for Enabling / Disabling different components (See Readme.md)
  • Binary downloads for Windows are now built with VS 2017 / v141 toolset
  • Fixed a race condition on Windows that caused files not being fully flushed after fineftp-server reported the finished data upload (Thanks to @bjuulp)
  • Reordered internal asio::strand implementation in order to prevent race conditions that haven't been detected, yet. (Thanks to @bjuulp)
  • Fixed a vulnerability that enabled an attacker to access files above the root directory (reported by #52)
  • Fixed many clang-tidy warnings
  • The APPE (= append-to-file) command now creates a new file if it didn't exist already (this is the correct behavior according to RFC 959)
  • Updated the asio submodule to 1.28.2

fineFTP v1.3.5

18 Aug 15:30
c12589a
Compare
Choose a tag to compare
  • Add missing <sstream> include to ftp_session.cpp for clang14 compatibility
  • Fix implicit capture of 'this' via '[=]' deprecation warning

Thanks to @helmesjo

fineFTP v1.3.4

24 Jan 10:24
dc2d1a6
Compare
Choose a tag to compare
  • Fixed an issue that prevented re-cmaking, as the generated Config.cmake happened to be found by CMake
  • Improved fineftpConfig.cmake with find_dependency and a relative path to the Targets.cmake file

There are no actual code changes

fineFTP v1.3.3

02 Nov 09:24
Compare
Choose a tag to compare
  • Fixed compatibility with old CMake versions (3.13 in particular)

fineFTP v1.3.2

12 Sep 11:32
78efc7f
Compare
Choose a tag to compare
  • Fixed bug that could cause an ftp Session to persist indefinitly, if a client requested the data socket to be opened but closed the connection before connecting to it
  • Improved CMake Install and CPack behavior
    • FineFTP Sever now properly installs dll/so files when BUILD_SHARED_LIBS is ON
    • FineFTP can now be packed with CPack
    • Added CMake option to disable building the example Project
    • Added integration_test project that can be build against an install to perform a very simple automated link and runtime test
    • Created GH Actions that properly compile and package binaries for windows and Linux

fineFTP v1.3.1

11 Jul 11:27
Compare
Choose a tag to compare
  • Moved auto-generated headers to the proper include/fineftp directory. This should not be noticable compatibility-wise.
  • Added missing include for gcc-12 (Thanks to @Blutkoete)

fineFTP v1.3.0

10 Jan 09:30
5509f23
Compare
Choose a tag to compare
  • Added SIZE command (Thanks to @bjuulp)
  • Fixed MinGW build issue (Also thanks to @bjuulp).
    Unfortunatelly, UTF8 support is broken with MinGW, so you should use Visual Studio for proper Windows builds.

fineFTP v1.2.0

08 Dec 11:50
4fb63ff
Compare
Choose a tag to compare

Added Unicode / UTF 8 Support for

  • MS Windows
  • Other plattforms that use UTF8 by default (e.g. Linux)

This lifts the 7-bit ASCII character limitation (telnet characters to be more exact) and enables you to use accents like they exist in most languages, emojies, chinese characters etc.