Skip to content

Commit 0d841d2

Browse files
authored
Merge pull request #322 from JacobBarthelmeh/release
prepare for release 1.4.6
2 parents 8a00381 + 5327a7f commit 0d841d2

4 files changed

Lines changed: 39 additions & 5 deletions

File tree

ChangeLog.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
# wolfSSH v1.4.6 (February 3, 2021)
2+
3+
## New Feature Additions
4+
5+
- Added optional builds for not using RSA or ECC making the build more modular for resource constrained situations.
6+
- MQX IDE build added
7+
- Command line option added for Agent use with the example client
8+
9+
10+
11+
## Fixes
12+
13+
- Increase the ID list size for interop with some OpenSSH servers
14+
- In the case of a network error add a close to any open files with SFTP connection
15+
- Fix for potential memory leak with agent and a case with wolfSHS_SFTP_GetHandle
16+
- Fuzzing fix for potential out of bounds read in the public key user auth messages
17+
- MQX build fixes
18+
- Sanity check that agent was set before setting the agent’s channel
19+
- Fuzzing fix for bounds checking with DoKexDhReply internal function
20+
- Fuzzing fix for clean up of base path with SCP use
21+
- Fuzzing fix for sanity checks on setting the prime group and generator
22+
- Fuzzing fix for return result of high water check
23+
- Fuzzing fix for null terminator in internal ReceiveScpConfirmation function
24+
25+
## Improvements and Optimizations
26+
27+
- Example timeout added to SFTP example
28+
- Update wolfSSH_ReadKey_buffer() to handle P-384 and P-521 when reading a key from a buffer
29+
- Use internal version of strdup
30+
- Use strncmp instead of memcmp for comparint session string type
31+
32+
--------------------------------
33+
34+
135
# wolfSSH v1.4.5 (August 31, 2020)
236

337
## New Feature Additions

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.5],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
6+
AC_INIT([wolfssh],[1.4.6],[support@wolfssl.com],[wolfssh],[https://www.wolfssl.com])
77
AC_PREREQ([2.63])
88
AC_CONFIG_AUX_DIR([build-aux])
99

@@ -17,7 +17,7 @@ AC_ARG_PROGRAM
1717
AC_CONFIG_MACRO_DIR([m4])
1818
AC_CONFIG_HEADERS([src/config.h])
1919

20-
WOLFSSH_LIBRARY_VERSION=12:0:3
20+
WOLFSSH_LIBRARY_VERSION=12:1:3
2121
# | | |
2222
# +------+ | +---+
2323
# | | |

src/wolfsftp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2172,7 +2172,7 @@ int wolfSSH_SFTP_RecvOpenDir(WOLFSSH* ssh, int reqId, byte* data, word32 maxSz)
21722172
}
21732173
WMEMCPY(dirName, data + idx, sz);
21742174
dirName[sz] = '\0';
2175-
if (wolfSSH_CleanPath(ssh, buf) < 0) {
2175+
if (wolfSSH_CleanPath(ssh, dirName) < 0) {
21762176
WFREE(dirName, ssh->ctx->heap, DYNTYPE_BUFFER);
21772177
return WS_FATAL_ERROR;
21782178
}

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.5"
39-
#define LIBWOLFSSH_VERSION_HEX 0x01004005
38+
#define LIBWOLFSSH_VERSION_STRING "1.4.6"
39+
#define LIBWOLFSSH_VERSION_HEX 0x01004006
4040

4141
#ifdef __cplusplus
4242
}

0 commit comments

Comments
 (0)