mirror of https://github.com/wolfSSL/wolfssh.git
prepare for release 1.4.10
parent
86a51f0968
commit
019ea52618
25
ChangeLog.md
25
ChangeLog.md
|
@ -1,3 +1,28 @@
|
||||||
|
# wolfSSH v1.4.10 (May 13, 2022)
|
||||||
|
|
||||||
|
## New Feature Additions and Improvements
|
||||||
|
- Additional small stack optimizations to reduce stack used farther
|
||||||
|
- Update to Visual Studio paths for looking for wolfSSL library
|
||||||
|
- SFTP example, reset timeout value with get/put command
|
||||||
|
- Add support for flushing file IO using WOLFSCP_FLUSH
|
||||||
|
- Add preprocessor guards for RSA/ECC to agent and the example and test applications
|
||||||
|
- Initialization of variables to avoid warnings and use with ESP-IDF
|
||||||
|
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
- When scp receives a string in STDERR, print it out, rather than treating it as an error
|
||||||
|
- Window adjustment refactor and fix
|
||||||
|
- fix check on RSA import size
|
||||||
|
- Fix for building with older GCC versions (tested with 4.0.2)
|
||||||
|
- SFTP fix handling sent data sz when its size is greater than peer max packet size
|
||||||
|
- SFTP add error return code for a bad header when sending a packet
|
||||||
|
- KCAPI build fixes for macro guards needed
|
||||||
|
- SCP fix for handling small and empty message sizes
|
||||||
|
- SFTP update to handle WS_CHAN_RXD return values when reading
|
||||||
|
- Fix for IPv6 with scpclient
|
||||||
|
- Fixes for cross-compiling (don't force library path references)
|
||||||
|
- Fix for FIPS 140-3 on ECC private key use
|
||||||
|
|
||||||
# wolfSSH v1.4.8 (Nov 4, 2021)
|
# wolfSSH v1.4.8 (Nov 4, 2021)
|
||||||
|
|
||||||
## New Feature Additions and Improvements
|
## New Feature Additions and Improvements
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# All right reserved.
|
# All right reserved.
|
||||||
|
|
||||||
AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2014-2020 wolfSSL Inc.])
|
||||||
AC_INIT([wolfssh],[1.4.9],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
AC_INIT([wolfssh],[1.4.10],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ AC_ARG_PROGRAM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
WOLFSSH_LIBRARY_VERSION=12:3:4
|
WOLFSSH_LIBRARY_VERSION=12:4:4
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSH_VERSION_STRING "1.4.9"
|
#define LIBWOLFSSH_VERSION_STRING "1.4.10"
|
||||||
#define LIBWOLFSSH_VERSION_HEX 0x01004009
|
#define LIBWOLFSSH_VERSION_HEX 0x01004010
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue