mirror of
https://github.com/gregtwallace/apc-p15-tool.git
synced 2025-01-22 08:14:08 +00:00
v1.1.0
This commit is contained in:
parent
1cd9916a17
commit
94a76b93de
2 changed files with 20 additions and 1 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,5 +1,24 @@
|
||||||
# APC P15 Tool Changelog
|
# 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
|
## [v1.0.0] - 2024-07-01
|
||||||
|
|
||||||
First official stable release.
|
First official stable release.
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
appVersion = "1.0.0"
|
appVersion = "1.1.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
// struct for receivers to use common app pieces
|
// struct for receivers to use common app pieces
|
||||||
|
|
Loading…
Reference in a new issue