mirror of https://github.com/wolfSSL/wolfssh.git
prepare for release 1.4.19
parent
fe25b4ef99
commit
7d87c0ef7a
24
ChangeLog.md
24
ChangeLog.md
|
@ -1,3 +1,27 @@
|
|||
# wolfSSH v1.4.19 (November 1, 2024)
|
||||
|
||||
## New Features
|
||||
|
||||
- Add DH Group 14 with SHA256 KEX support (PR 731)
|
||||
|
||||
## Improvements
|
||||
|
||||
- Use of the new SSH-KDF function in wolfCrypt (PR 729)
|
||||
- Adds macro guards to the non-POSIX value checks and updates with TTY modes (PR 739)
|
||||
- Add CI test against master and last two wolfSSL releases (PR 746)
|
||||
- Show version of wolfSSL linked to when application help messages are printed out (PR 741)
|
||||
- Purge OQS from wolfSSH and instead use Kyber implementation from wolfssl (PR 736)
|
||||
- Adjust Espressif wolfssl_echoserver example timehelper (PR 730)
|
||||
|
||||
## Fixes
|
||||
|
||||
- Remove Inline for function HashForId() to resolve clash with WOLFSSH_LOCAL declaration (PR 738)
|
||||
- Fix for wolfSSHd’s handling of re-key and window full when processing a command with lots of stdout text (PR 719)
|
||||
- Fix for wolfSSH client app to gracefully clean up on failure and added more WLOG debug messages (PR 732)
|
||||
- Minor static analysis report fixes (PR 740, 735)
|
||||
- Fix for handling SFTP transfer to non-existent folder (PR 743)
|
||||
|
||||
|
||||
# wolfSSH v1.4.18 (July 22, 2024)
|
||||
|
||||
## New Features
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# All right reserved.
|
||||
|
||||
AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.])
|
||||
AC_INIT([wolfssh],[1.4.18],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||
AC_INIT([wolfssh],[1.4.19],[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:0:10
|
||||
WOLFSSH_LIBRARY_VERSION=17:1:10
|
||||
# | | |
|
||||
# +-----+ | +----+
|
||||
# | | |
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define LIBWOLFSSH_VERSION_STRING "1.4.18"
|
||||
#define LIBWOLFSSH_VERSION_HEX 0x01004018
|
||||
#define LIBWOLFSSH_VERSION_STRING "1.4.19"
|
||||
#define LIBWOLFSSH_VERSION_HEX 0x01004019
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue