From e70b91d559d5ff7c69c9b9f5c6845ccf60c9732a Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Thu, 2 Jan 2025 16:43:09 -0800 Subject: [PATCH] 0.7.0 --- HISTORY.rst | 26 ++++++++++++++++++++++++++ pan_chainguard/__init__.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 18a89aa..88a5484 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,32 @@ Release History =============== +0.7.0 (2025-01-02) +------------------ + +- Major updates to guard.py: + + - Allow incremental certificate updates using --update (replaces + --add) + - Allow update of only root certificates + - Add --dry-run to show what actions would be performed without + updating PAN-OS + - Add --show to show managed config + - Add --update-trusted to fix out of sync trusted root CA certificate + settings + +- chainring.py: For HTML document, create hyperlink for certificate + fingerprint to crt.sh. + +- chain.py: + + For a root certificate the "Parent Certificate Name" is set to the + "CA Owner" field; change node tag to use CA-Owner vs Issuer. Also + quote Subject, Issuer, CA-Owner. + +- chainring.py: Add --test-collisions to test for PAN-OS certificate + name collisions using the JSON certificate tree as input. + 0.6.0 (2024-12-15) ------------------ diff --git a/pan_chainguard/__init__.py b/pan_chainguard/__init__.py index a997ec5..0ddd5e3 100644 --- a/pan_chainguard/__init__.py +++ b/pan_chainguard/__init__.py @@ -14,5 +14,5 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # -__version__ = '0.6.0' +__version__ = '0.7.0' title = 'pan-chainguard'