From c0f9b705c6dcfdd3badb45864c5557449946fa23 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 19 Nov 2024 10:33:19 -0800 Subject: [PATCH] doc update --- CHANGELOG | 7 ++++--- jc/parsers/netstat.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index da5ee3fe..253c3af9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,14 +1,15 @@ jc changelog -20241118 v1.25.4 +20241119 v1.25.4 - Add `ipconfig` command parser (`ipconfig` for Windows) -- Enhance `ping-s` streaming parser to support error replies - Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS +- Enhance `ping-s` streaming parser to support error replies - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `df` parser to correctly output binary vs. decimal size outputs -- Fix `mount` parser for cases where there are spaces in the filesystem name - Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses +- Fix `mount` parser for cases where there are spaces in the filesystem name +- Fix `netstat` parser for cases where there are spaces in the program name - Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name - Fix `uptime` parser for data that contains `user` instead of `users` - Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters diff --git a/jc/parsers/netstat.py b/jc/parsers/netstat.py index 50c82b00..b39ac704 100644 --- a/jc/parsers/netstat.py +++ b/jc/parsers/netstat.py @@ -355,7 +355,7 @@ import jc.utils class info(): """Provides parser metadata (version, author, etc.)""" - version = '1.15' + version = '1.16' description = '`netstat` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com'