Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 479eca1

Browse files
Jakujecryptomilk
authored andcommitted
Bump version to 0.10.5
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
1 parent 994acfe commit 479eca1

5 files changed

Lines changed: 459 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,34 @@
11
CHANGELOG
22
=========
33

4+
version 0.10.5 (released 2023-05-04)
5+
* Fix CVE-2023-1667: a NULL dereference during rekeying with algorithm guessing
6+
* Fix CVE-2023-2283: a possible authorization bypass in
7+
pki_verify_data_signature under low-memory conditions.
8+
* Fix several memory leaks in GSSAPI handling code
9+
* Escape braces in ProxyCommand created from ProxyJump options for zsh
10+
compatibility.
11+
* Fix pkg-config path relocation for MinGW
12+
* Improve doxygen documentation
13+
* Fix build with cygwin due to the glob support
14+
* Do not enqueue outgoing packets after sending SSH2_MSG_NEWKEYS
15+
* Add support for SSH_SUPPRESS_DEPRECATED
16+
* Avoid functions declarations without prototype to build with clang 15
17+
* Fix spelling issues
18+
* Avoid expanding KnownHosts, ProxyCommands and IdentityFiles repetitively
19+
* Add support sk-* keys through configuration
20+
* Improve checking for Argp library
21+
* Log information about received extensions
22+
* Correctly handle rekey with delayed compression
23+
* Move the EC keys handling to OpenSSL 3.0 API
24+
* Record peer disconnect message
25+
* Avoid deadlock when write buffering occurs and we call poll recursively to
26+
flush the output buffer
27+
* Disable preauthentication compression by default
28+
* Add CentOS 8 Stream / OpenSSL 1.1.1 to CI
29+
* Add accidentally removed default compile flags
30+
* Solve incorrect parsing of ProxyCommand option
31+
432
version 0.10.4 (released 2022-09-07)
533
* Fixed issues with KDF on big endian
634

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules")
1010
include(DefineCMakeDefaults)
1111
include(DefineCompilerFlags)
1212

13-
project(libssh VERSION 0.10.4 LANGUAGES C)
13+
project(libssh VERSION 0.10.5 LANGUAGES C)
1414

1515
# global needed variable
1616
set(APPLICATION_NAME ${PROJECT_NAME})
@@ -22,7 +22,7 @@ set(APPLICATION_NAME ${PROJECT_NAME})
2222
# Increment AGE. Set REVISION to 0
2323
# If the source code was changed, but there were no interface changes:
2424
# Increment REVISION.
25-
set(LIBRARY_VERSION "4.9.4")
25+
set(LIBRARY_VERSION "4.9.5")
2626
set(LIBRARY_SOVERSION "4")
2727

2828
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked

CPackConfig.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set(CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
1010

1111
# SOURCE GENERATOR
1212
set(CPACK_SOURCE_GENERATOR "TXZ")
13-
set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]git/;/[.]clangd/;/[.]cache/;.gitignore;/build*;/obj*;tags;cscope.*;compile_commands.json;.*\.patch")
13+
set(CPACK_SOURCE_IGNORE_FILES "~$;[.]swp$;/[.]git;/[.]clangd/;/[.]cache/;.gitignore;/build*;/obj*;tags;cscope.*;compile_commands.json;.*\.patch")
1414
set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
1515

1616
### NSIS INSTALLER

src/ABI/current

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.9.4
1+
4.9.5

0 commit comments

Comments
 (0)