Skip to content

Commit 5305170

Browse files
authored
Merge pull request #747 from JacobBarthelmeh/release
prepare for release 1.4.19
2 parents d3a8ec6 + 7d87c0e commit 5305170

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

ChangeLog.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# wolfSSH v1.4.19 (November 1, 2024)
2+
3+
## New Features
4+
5+
- Add DH Group 14 with SHA256 KEX support (PR 731)
6+
7+
## Improvements
8+
9+
- Use of the new SSH-KDF function in wolfCrypt (PR 729)
10+
- Adds macro guards to the non-POSIX value checks and updates with TTY modes (PR 739)
11+
- Add CI test against master and last two wolfSSL releases (PR 746)
12+
- Show version of wolfSSL linked to when application help messages are printed out (PR 741)
13+
- Purge OQS from wolfSSH and instead use Kyber implementation from wolfssl (PR 736)
14+
- Adjust Espressif wolfssl_echoserver example timehelper (PR 730)
15+
16+
## Fixes
17+
18+
- Remove Inline for function HashForId() to resolve clash with WOLFSSH_LOCAL declaration (PR 738)
19+
- Fix for wolfSSHd’s handling of re-key and window full when processing a command with lots of stdout text (PR 719)
20+
- Fix for wolfSSH client app to gracefully clean up on failure and added more WLOG debug messages (PR 732)
21+
- Minor static analysis report fixes (PR 740, 735)
22+
- Fix for handling SFTP transfer to non-existent folder (PR 743)
23+
24+
125
# wolfSSH v1.4.18 (July 22, 2024)
226

327
## New Features

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# All right reserved.
44

55
AC_COPYRIGHT([Copyright (C) 2014-2024 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.18],[[email protected]],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.19],[[email protected]],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
1818
AC_CONFIG_MACRO_DIR([m4])
1919
AC_CONFIG_HEADERS([config.h])
2020

21-
WOLFSSH_LIBRARY_VERSION=17:0:10
21+
WOLFSSH_LIBRARY_VERSION=17:1:10
2222
# | | |
2323
# +-----+ | +----+
2424
# | | |

wolfssh/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
extern "C" {
3636
#endif
3737

38-
#define LIBWOLFSSH_VERSION_STRING "1.4.18"
39-
#define LIBWOLFSSH_VERSION_HEX 0x01004018
38+
#define LIBWOLFSSH_VERSION_STRING "1.4.19"
39+
#define LIBWOLFSSH_VERSION_HEX 0x01004019
4040

4141
#ifdef __cplusplus
4242
}

0 commit comments

Comments
 (0)