This repository was archived by the owner on Jan 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010include (DefineCMakeDefaults )
1111include (DefineCompilerFlags )
1212
13- project (libssh VERSION 0.8.4 LANGUAGES C )
13+ project (libssh VERSION 0.8.5 LANGUAGES C )
1414
1515# global needed variable
1616set (APPLICATION_NAME ${PROJECT_NAME} )
Original file line number Diff line number Diff line change 11ChangeLog
22==========
33
4+ version 0.8.5 (released 2018-10-29)
5+ * Added support to get known_hosts locations with ssh_options_get()
6+ * Fixed preferred algorithm for known hosts negotiations
7+ * Fixed KEX with some server implementations (e.g. Cisco)
8+ * Fixed issues with MSVC
9+ * Fixed keyboard-interactive auth in server mode
10+ (regression from CVE-2018-10933)
11+ * Fixed gssapi auth in server mode (regression from CVE-2018-10933)
12+ * Fixed socket fd handling with proxy command
13+ * Fixed a memory leak with OpenSSL
14+
415version 0.8.4 (released 2018-10-16)
516 * Fixed CVE-2018-10933
617 * Fixed building without globbing support
Original file line number Diff line number Diff line change 7979/* libssh version */
8080#define LIBSSH_VERSION_MAJOR 0
8181#define LIBSSH_VERSION_MINOR 8
82- #define LIBSSH_VERSION_MICRO 4
82+ #define LIBSSH_VERSION_MICRO 5
8383
8484#define LIBSSH_VERSION_INT SSH_VERSION_INT(LIBSSH_VERSION_MAJOR, \
8585 LIBSSH_VERSION_MINOR, \
You can’t perform that action at this time.
0 commit comments