release: version 1.1.7 - Improve error logging
Some checks failed
Build RPM Package / Build RPM Packages (CentOS 7, Rocky 8/9/10) (push) Has been cancelled

Fix:
- Enhance error messages with src_ip, src_port, dst_ip, dst_port
- Add conn_id and payload_len to fingerprint errors
- Easier debugging of truncated ClientHello payloads

Packaging:
- Update RPM spec to version 1.1.7
- Update changelog with logging improvements

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
toto
2026-03-04 11:09:54 +01:00
parent 131b204edf
commit 4b072057e8
2 changed files with 9 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import (
var ( var (
// Version information (set via ldflags) // Version information (set via ldflags)
Version = "1.1.6" Version = "1.1.7"
BuildTime = "unknown" BuildTime = "unknown"
GitCommit = "unknown" GitCommit = "unknown"
) )

View File

@ -3,7 +3,7 @@
%if %{defined build_version} %if %{defined build_version}
%define spec_version %{build_version} %define spec_version %{build_version}
%else %else
%define spec_version 1.1.6 %define spec_version 1.1.7
%endif %endif
Name: ja4sentinel Name: ja4sentinel
@ -180,6 +180,13 @@ fi
%changelog %changelog
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.7-1
- FIX: Improve error logging with source/destination details
- Add src_ip, src_port, dst_ip, dst_port to tlsparse error logs
- Add connection details to fingerprint error logs (conn_id, payload_len)
- Include 'unknown' placeholders for packets that fail before parsing
- Helps debug truncated ClientHello payloads and identify problematic connections
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.6-1 * Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.6-1
- FEATURE: Add support for capturing traffic to local machine IPs only - FEATURE: Add support for capturing traffic to local machine IPs only
- Add local_ips configuration option (auto-detect or manual list) - Add local_ips configuration option (auto-detect or manual list)