From 8a14de663e1354f72528763e24971b12ef80eae3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 2 Dec 2022 15:16:46 -0800 Subject: [PATCH] doc update --- CHANGELOG | 3 +++ docs/parsers/ifconfig.md | 14 +++++++++++++- man/jc.1 | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 20f52d20..531dc526 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ jc changelog 20221118 v1.22.3 - Add Common Log Format and Combined Log Format file parser (standard and streaming) +- Enhance `ifconfig` parser with interface lane information on BSD +- Enhance `ifconfig` parser with additional IPv6 `scope_id` info for BSD +- Fix `ifconfig` parser to capture some IPv6 addresses missed on BSD - Fix `git-log` and `git-log-s` parsers for failure on empty author name - Update `os-prober` parser with split EFI partition fields - Fix several documentation typos diff --git a/docs/parsers/ifconfig.md b/docs/parsers/ifconfig.md index 5cf6724a..177a41ba 100644 --- a/docs/parsers/ifconfig.md +++ b/docs/parsers/ifconfig.md @@ -42,6 +42,7 @@ Schema: "ipv6_addr": string, # [0] "ipv6_mask": integer, # [0] "ipv6_scope": string, # [0] + "ipv6_scope_id": string, # [0] "ipv6_type": string, # [0] "rx_packets": integer, "rx_bytes": integer, @@ -87,10 +88,19 @@ Schema: "ipv6: [ { "address": string, + "scope_id": string, "mask": integer, "scope": string, "type": string } + ], + "lanes": [ + { + "lane": integer, + "rx_power_mw": float, + "rx_power_dbm": float, + "tx_bias_ma": float + } ] } ] @@ -147,6 +157,7 @@ Examples: "ipv6": [ { "address": "fe80::c1cb:715d:bc3e:b8a0", + "scope_id": null, "mask": 64, "scope": "0x20", "type": "link" @@ -195,6 +206,7 @@ Examples: "ipv6": [ { "address": "fe80::c1cb:715d:bc3e:b8a0", + "scope_id": null, "mask": "64", "scope": "0x20", "type": "link" @@ -228,4 +240,4 @@ Returns: ### Parser Information Compatibility: linux, aix, freebsd, darwin -Version 2.0 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/man/jc.1 b/man/jc.1 index 04e923b8..91dd247d 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-11-22 1.22.3 "JSON Convert" +.TH jc 1 2022-12-02 1.22.3 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings .SH SYNOPSIS