File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
25
# wolfSSH v1.4.18 (July 22, 2024)
2
26
3
27
## New Features
Original file line number Diff line number Diff line change 3
3
# All right reserved.
4
4
5
5
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] )
7
7
AC_PREREQ ( [ 2.63] )
8
8
AC_CONFIG_AUX_DIR ( [ build-aux] )
9
9
@@ -18,7 +18,7 @@ AC_ARG_PROGRAM
18
18
AC_CONFIG_MACRO_DIR ( [ m4] )
19
19
AC_CONFIG_HEADERS ( [ config.h] )
20
20
21
- WOLFSSH_LIBRARY_VERSION=17:0 :10
21
+ WOLFSSH_LIBRARY_VERSION=17:1 :10
22
22
# | | |
23
23
# +-----+ | +----+
24
24
# | | |
Original file line number Diff line number Diff line change 35
35
extern "C" {
36
36
#endif
37
37
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
40
40
41
41
#ifdef __cplusplus
42
42
}
You can’t perform that action at this time.
0 commit comments