Skip to content

Commit 9879c7b

Browse files
committed
Release v0.9.6
1 parent f5df046 commit 9879c7b

File tree

8 files changed

+31
-24
lines changed

8 files changed

+31
-24
lines changed

NEWS.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11

22

3+
### SSLproxy 0.9.6 2024-07-04
4+
5+
- Fix clang-static-analysis warnings, thanks to @disaykin.
6+
- Use clock_gettime() instead of gettimeofday(), thanks to @disaykin.
7+
- Fix deprecation warnings for function declarations without a prototype.
8+
9+
310
### SSLproxy 0.9.5 2024-02-18
411

5-
- Fix possible double free of host and serv variables, thanks to @disaykin
6-
- Fix possible integer overflow, thanks to @disaykin
7-
- Close fds only once, thanks to @disaykin
8-
- Fix memory leak, thanks to @disaykin
9-
- Handle ftell error, thanks to @disaykin
10-
- Fix mismatched call arguments, thanks to @disaykin
11-
- Fix memory leak in case of cert key mismatch, thanks to @disaykin
12-
- Fix file descriptor leak, thanks to @disaykin
13-
- Handle partial write, thanks to @disaykin
14-
- Handle return value of gmtime(), thanks to @disaykin
15-
- Fix double free bugs, thanks to @disaykin
16-
- Bugs found by Svace static analyzer
17-
- Fix possible segfault in proto smtp in split mode
18-
- Fix retval of privsep_server_opensock_verify(), thanks to @Qbog
19-
- Fix header-size calculation in IPv6 packet mirroring, thanks to @matoro
20-
- Fix e2e tests with openssl 3
21-
- Replace deprecated fail_unless() with ck_assert_msg() in unit tests
12+
- Fix possible double free of host and serv variables, thanks to @disaykin.
13+
- Fix possible integer overflow, thanks to @disaykin.
14+
- Close fds only once, thanks to @disaykin.
15+
- Fix memory leak, thanks to @disaykin.
16+
- Handle ftell error, thanks to @disaykin.
17+
- Fix mismatched call arguments, thanks to @disaykin.
18+
- Fix memory leak in case of cert key mismatch, thanks to @disaykin.
19+
- Fix file descriptor leak, thanks to @disaykin.
20+
- Handle partial write, thanks to @disaykin.
21+
- Handle return value of gmtime(), thanks to @disaykin.
22+
- Fix double free bugs, thanks to @disaykin.
23+
- Bugs found by Svace static analyzer.
24+
- Fix possible segfault in proto smtp in split mode.
25+
- Fix retval of privsep_server_opensock_verify(), thanks to @Qbog.
26+
- Fix header-size calculation in IPv6 packet mirroring, thanks to @matoro.
27+
- Fix e2e tests with openssl 3.
28+
- Replace deprecated fail_unless() with ck_assert_msg() in unit tests.
2229

2330

2431
### SSLproxy 0.9.4 2022-12-26

src/sslproxy.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2828
.\" POSSIBILITY OF SUCH DAMAGE.
2929
.\"
30-
.TH "sslproxy" "1" "18 Feb 2024" "v0.9.5" "SSLproxy"
30+
.TH "sslproxy" "1" "04 Jul 2024" "v0.9.6" "SSLproxy"
3131
.SH NAME
3232
sslproxy \-\- transparent SSL/TLS proxy for decrypting and diverting network
3333
traffic to other programs for deep SSL inspection

src/sslproxy.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sample configuration for sslproxy v0.9.5
1+
# Sample configuration for sslproxy v0.9.6
22
#
33
# Use the -f command line option to start sslproxy with a config file.
44
# See sslproxy.conf(5) and sslproxy(1) for documentation.

src/sslproxy.conf.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2727
.\" POSSIBILITY OF SUCH DAMAGE.
2828
.\"
29-
.TH "sslproxy.conf" "5" "18 Feb 2024" "v0.9.5" "SSLproxy"
29+
.TH "sslproxy.conf" "5" "04 Jul 2024" "v0.9.6" "SSLproxy"
3030
.SH "NAME"
3131
.LP
3232
\fBsslproxy.conf\fR \- Configuration file for SSLproxy

tests/testproxy/sslproxy.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.5
1+
# TestProxy test configuration for sslproxy v0.9.6
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_no_tls11.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.5
1+
# TestProxy test configuration for sslproxy v0.9.6
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_no_tls13.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.5
1+
# TestProxy test configuration for sslproxy v0.9.6
22

33
# Global options
44
#User _sslproxy

tests/testproxy/sslproxy_openssl3.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TestProxy test configuration for sslproxy v0.9.5
1+
# TestProxy test configuration for sslproxy v0.9.6
22

33
# Global options
44
#User _sslproxy

0 commit comments

Comments
 (0)