Skip to content

Commit 155639d

Browse files
committed
Dropbear 2024.86
1 parent 64a56fe commit 155639d

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

CHANGES

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
2024.86 - 22 October 2024
2+
3+
- Fix failure on concurrent channel open/close.
4+
This was a regression in 2022.82, reported by rsflo in Github #321.
5+
failed assertion in common-channel.c:705: !channel->sent_close
6+
7+
- Print remote host after "Login attempt for nonexistent user" log entry to
8+
assist fail2ban. Fix from MichaIng, the format changed in 2020.79
9+
10+
- Dropbear now exits with exit status 0 on SIGINT/SIGTERM. This is a more
11+
graceful behaviour for "systemctl stop dropbear".
12+
Reported by Ninad Palsule
13+
14+
- New IDENT_VERSION_PART config allows customising some of the SSH version
15+
string. From Marius Dinu
16+
17+
- Fix building SK_KEYS with just one of ECDSA or ED25519
18+
From Marius Dinu
19+
20+
- Fix dbclient "-m help" and "-c help" without a hostname.
21+
Patch from Darren Tucker
22+
23+
- Remove fprintf/gettimeofday from sigchld handler when running with
24+
verbose trace enabled.
25+
26+
- Improved configure help output, from Mikel Olasagasti Uranga
27+
28+
- Compile fix for GNU Hurd, from Guilhem Moulin
29+
30+
- Support running test_aslr without venv, from Guilhem Moulin
31+
32+
- Compilation fixes for older compilers, and better build tests
33+
34+
- Update some test infrastructure versions of python packages,
35+
github actions, and github runner OSes
36+
137
2024.85 - 25 April 2024
238

339
This release fixes build regressions in 2024.84

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
dropbear (2024.86-0.1) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- Matt Johnston <[email protected]> Tue, 22 Oct 2024 22:51:57 +0800
6+
17
dropbear (2024.85-0.1) unstable; urgency=low
28

39
* New upstream release.

src/sysoptions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*******************************************************************/
55

66
#ifndef DROPBEAR_VERSION
7-
#define DROPBEAR_VERSION "2024.85"
7+
#define DROPBEAR_VERSION "2024.86"
88
#endif
99

1010
/* IDENT_VERSION_PART is the optional part after "SSH-2.0-dropbear". Refer to RFC4253 for requirements. */

0 commit comments

Comments
 (0)