From 94a76b93dececcd60e75aa3385c84560738ef0e9 Mon Sep 17 00:00:00 2001 From: "Greg T. Wallace" Date: Tue, 17 Sep 2024 18:44:35 -0400 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 19 +++++++++++++++++++ pkg/app/app.go | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9c752..4936f32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # APC P15 Tool Changelog +## [v1.1.0] - 2024-09-17 + +> [!IMPORTANT] +> The flag `apchost` on the `install` command has been renamed to +> `hostname`. This flag should contain the hostname only. If a non- +> default SSH port is needed, specify it in the `sshport` flag. + +This version brings support for for RSA 4,092 bit and EC keys. These +keys are only compatible with NMC3 running newer firmwares. To know +if your firmware is new enough, SSH into your UPS and type `ssh` and enter. +If the UPS responds `Command Not Found` the firmware is too old or +otherwise incompatible. + +This version also adds a post `install` check that connects to the web +ui and verifies the certificate served is the expected one. You can +specify a non standard ssl port with the `sslport` flag or skip the check +entirely with the `skipverify` flag. + + ## [v1.0.0] - 2024-07-01 First official stable release. diff --git a/pkg/app/app.go b/pkg/app/app.go index d2d9767..9a3f542 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -12,7 +12,7 @@ import ( ) const ( - appVersion = "1.0.0" + appVersion = "1.1.0" ) // struct for receivers to use common app pieces