mirror of https://github.com/wolfSSL/wolfssh.git
prepare for release 1.4.20
parent
055d024b2e
commit
b62b19c7cd
23
ChangeLog.md
23
ChangeLog.md
|
@ -1,3 +1,26 @@
|
|||
# wolfSSH v1.4.20 (Feburary 20, 2025)
|
||||
|
||||
## New Features
|
||||
|
||||
- Added DH Group 16 and HMAC-SHA2-512 support (PR 768)
|
||||
- Added RFC-4256 keyboard-interactive authentication support (PR 763)
|
||||
|
||||
## Enhancements and Fixes
|
||||
|
||||
- Enhancement to pass dynamic memory heap hint to init RNG call (PR 749)
|
||||
- Update SCP example to properly free memory upon failure (PR 750)
|
||||
- Address memory management during socket timeouts in wolfSSHd (PR 752)
|
||||
- Modify wolfSSHd to terminate child processes following SSH connection failures
|
||||
(PR 753)
|
||||
- Fix for wolfSSHd handling of pipe's with forced commands (PR 776)
|
||||
- Resolve SFTP compilation issues with WOLFSSH_FATFS (PR 756)
|
||||
- Refactor and simplify autogen script (PR 758)
|
||||
- Fix SCP hang issue in interop scenarios (PR 751)
|
||||
- Fix for SCP server side handling of EAGAIN (PR 783)
|
||||
- Reinstate support for P521 and P384 curves by default when compiled in (PR 762)
|
||||
- Fix for wolfSSH client app handling of an empty hostname (PR 768)
|
||||
|
||||
|
||||
# wolfSSH v1.4.19 (November 1, 2024)
|
||||
|
||||
## New Features
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All right reserved.
|
||||
|
||||
AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.])
|
||||
AC_INIT([wolfssh],[1.4.19],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||
AC_INIT([wolfssh],[1.4.20],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||
AC_PREREQ([2.63])
|
||||
AC_CONFIG_AUX_DIR([build-aux])
|
||||
|
||||
|
@ -18,7 +18,7 @@ AC_ARG_PROGRAM
|
|||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
WOLFSSH_LIBRARY_VERSION=17:1:10
|
||||
WOLFSSH_LIBRARY_VERSION=17:2:10
|
||||
# | | |
|
||||
# +-----+ | +----+
|
||||
# | | |
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define LIBWOLFSSH_VERSION_STRING "1.4.19"
|
||||
#define LIBWOLFSSH_VERSION_HEX 0x01004019
|
||||
#define LIBWOLFSSH_VERSION_STRING "1.4.20"
|
||||
#define LIBWOLFSSH_VERSION_HEX 0x01004020
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue