File tree Expand file tree Collapse file tree 6 files changed +39
-10
lines changed
Expand file tree Collapse file tree 6 files changed +39
-10
lines changed Original file line number Diff line number Diff line change 1+ 2025-09-04 Dustin Lundquist <dustin@null-ptr.net>
2+ 0.7.0 Release
3+
4+ * Deprecate project
5+ * Cleanup autoconf
6+ * Require autoconf 2.71
7+ * Require explicit --enable-dns for DNS resolution functionality
8+ * Add support for libpcre2 as an alternative to the older libpcre3
9+ * Relax HTTP header parsing to accept CRLF or plain LF
10+ * Fix missing stdlib.h include
11+ * Fix various warnings reported by gcc 14 and clang 19 compilers
12+
1132023-03-16 Dustin Lundquist <dustin@null-ptr.net>
214 0.6.1 Release
315
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ For Debian or Fedora based Linux distributions see building packages below.
6363
6464** Install**
6565
66- ./autogen.sh && ./checonfigure --enable-dns && make check && sudo make install
66+ ./autogen.sh && ./configure --enable-dns && make check && sudo make install
6767
6868** Building Debian/Ubuntu package**
6969
Original file line number Diff line number Diff line change 22# Process this file with autoconf to produce a configure script.
33
44AC_PREREQ ( [ 2.71] )
5- AC_INIT ( [ sniproxy] ,[ 0.6.1 ] )
5+ AC_INIT ( [ sniproxy] ,[ 0.7.0 ] )
66AM_INIT_AUTOMAKE ( [ subdir-objects] )
77AM_SILENT_RULES ([ yes] )
88AC_USE_SYSTEM_EXTENSIONS
Original file line number Diff line number Diff line change 1- sniproxy (0.6.1) UNRELEASED; urgency=medium
2-
3- * New git revision
4-
5- -- Dustin Lundquist <dustin@m3-debian12.overthere.org> Thu, 14 Dec 2023 09:40:47 -0800
1+ sniproxy (0.7.0) unstable; urgency=medium
2+
3+ * Deprecate project
4+ * Cleanup autoconf
5+ * Require autoconf 2.71
6+ * Require explicit --enable-dns for DNS resolution functionality
7+ * Add support for libpcre2 as an alternative to the older libpcre3
8+ * Relax HTTP header parsing to accept CRLF or plain LF
9+ * Fix missing stdlib.h include
10+ * Fix various warnings reported by gcc 14 and clang 19 compilers
11+
12+ -- Dustin Lundquist <dustin@null-ptr.net> Thu, 04 Sep 2025 16:37:25 -0700
613
714sniproxy (0.6.1) unstable; urgency=high
815
Original file line number Diff line number Diff line change 11Name: sniproxy
2- Version: 0.6.1
2+ Version: 0.7.0
33Release: 1%{?dist }
44Summary: Transparent TLS and HTTP layer 4 proxy with SNI support
55
@@ -46,7 +46,17 @@ rm -rf $RPM_BUILD_ROOT
4646
4747
4848%changelog
49- * Thu Mar 16 2023 Dustin Lundquist <dustin@null-ptr.net 0.6.1-1
49+ * Thu Sep 4 2024 Dustin Lundquist <dustin@null-ptr.net> 0.7.0-1
50+ - Deprecate project
51+ - Cleanup autoconf
52+ - Require autoconf 2.71
53+ - Require explicit --enable-dns for DNS resolution functionality
54+ - Add support for libpcre2 as an alternative to the older libpcre3
55+ - Relax HTTP header parsing to accept CRLF or plain LF
56+ - Fix missing stdlib.h include
57+ - Fix various warnings reported by gcc 14 and clang 19 compilers
58+
59+ * Thu Mar 16 2023 Dustin Lundquist <dustin@null-ptr.net> 0.6.1-1
5060- Fix buffer overflow in address module
5161- Fix tests
5262
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- VERSION=0.6.1
3+ VERSION=0.7.0
44
55SOURCE_DIR=$( dirname $0 )
66GIT_DIR=${SOURCE_DIR} /.git
You can’t perform that action at this time.
0 commit comments