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'