From 7d87c0ef7aa1ac7ee7d0d0dfe18adcc7824547e3 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Thu, 31 Oct 2024 15:05:15 -0600 Subject: [PATCH] prepare for release 1.4.19 --- ChangeLog.md | 24 ++++++++++++++++++++++++ configure.ac | 4 ++-- wolfssh/version.h | 4 ++-- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 32500bc67..0f2f10216 100644 --- a/ChangeLog.md +++ b/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 diff --git a/configure.ac b/configure.ac index 808f862a7..206157756 100644 --- a/configure.ac +++ b/configure.ac @@ -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 # | | | # +-----+ | +----+ # | | | diff --git a/wolfssh/version.h b/wolfssh/version.h index 2ec51af01..e2999daed 100644 --- a/wolfssh/version.h +++ b/wolfssh/version.h @@ -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 }