prepare for release 1.4.19

pull/747/head
JacobBarthelmeh 2024-10-31 15:05:15 -06:00
parent fe25b4ef99
commit 7d87c0ef7a
3 changed files with 28 additions and 4 deletions

View File

@ -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 wolfSSHds 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

View File

@ -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
# | | |
# +-----+ | +----+
# | | |

View File

@ -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
}