Skip to content

Commit c05f6c7

Browse files
authored
Merge pull request #411 from JacobBarthelmeh/release
prepare for release 1.4.10
2 parents 86a51f0 + 1f0864d commit c05f6c7

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

ChangeLog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# wolfSSH v1.4.10 (May 13, 2022)
2+
3+
## New Feature Additions and Improvements
4+
- Additional small stack optimizations to reduce stack used farther
5+
- Update to Visual Studio paths for looking for wolfSSL library
6+
- SFTP example, reset timeout value with get/put command
7+
- Add support for flushing file IO using WOLFSCP_FLUSH
8+
- Add preprocessor guards for RSA/ECC to agent and the example and test applications
9+
- Initialization of variables to avoid warnings and use with ESP-IDF
10+
11+
12+
## Fixes
13+
- When scp receives a string in STDERR, print it out, rather than treating it as an error
14+
- Window adjustment refactor and fix
15+
- fix check on RSA import size
16+
- Fix for building with older GCC versions (tested with 4.0.2)
17+
- SFTP fix handling sent data sz when its size is greater than peer max packet size
18+
- SFTP add error return code for a bad header when sending a packet
19+
- KCAPI build fixes for macro guards needed
20+
- SCP fix for handling small and empty message sizes
21+
- SFTP update to handle WS_CHAN_RXD return values when reading
22+
- Fix for IPv6 with scpclient
23+
- Fixes for cross-compiling (don't force library path references)
24+
- Fix for FIPS 140-3 on ECC private key use
25+
126
# wolfSSH v1.4.8 (Nov 4, 2021)
227

328
## New Feature Additions and Improvements

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-2020 wolfSSL Inc.])
6-
AC_INIT([wolfssh],[1.4.9],[[email protected]],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.10],[[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=12:3:4
21+
WOLFSSH_LIBRARY_VERSION=12:4:4
2222
# | | |
2323
# +------+ | +---+
2424
# | | |

src/internal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ static void HandshakeInfoFree(HandshakeInfo* hs, void* heap)
465465
WFREE(hs->generator, heap, DYNTYPE_MPINT);
466466
#endif
467467
if (hs->hashId != WC_HASH_TYPE_NONE)
468-
wc_HashFree(&hs->hash, hs->hashId);
468+
wc_HashFree(&hs->hash, (enum wc_HashType)hs->hashId);
469469
ForceZero(hs, sizeof(HandshakeInfo));
470470
WFREE(hs, heap, DYNTYPE_HS);
471471
}

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.9"
39-
#define LIBWOLFSSH_VERSION_HEX 0x01004009
38+
#define LIBWOLFSSH_VERSION_STRING "1.4.10"
39+
#define LIBWOLFSSH_VERSION_HEX 0x01004010
4040

4141
#ifdef __cplusplus
4242
}

0 commit comments

Comments
 (0)