mirror of
https://github.com/ovh/the-bastion.git
synced 2025-01-01 13:01:53 +08:00
release v3.07.00
This commit is contained in:
parent
cb28b44382
commit
3507586de6
3 changed files with 17 additions and 1 deletions
|
@ -1,3 +1,14 @@
|
||||||
|
## v3.07.00 - 2021/12/13
|
||||||
|
- feat: add support for Duo PAM auth as MFA (#249)
|
||||||
|
- feat: new access option: `--force-password <HASH>`, to only try one specific egress password (#256)
|
||||||
|
- fix: add helpers handling of SIGPIPE/SIGHUP
|
||||||
|
- fix: avoid double-close log messages on SIGHUP
|
||||||
|
- fix: `--self-password` was missing as a `-P` synonym (#257)
|
||||||
|
- fix: tests under OpenSUSE (fping raw sockets)
|
||||||
|
- chore: ensure proper Getopt::Long options are set everywhere
|
||||||
|
- chore: move HEXIT() to helper module, use HEXIT only in helpers
|
||||||
|
- chore: factorize helpers header
|
||||||
|
|
||||||
## v3.06.00 - 2021/10/15
|
## v3.06.00 - 2021/10/15
|
||||||
- feat: accountModify: add --pubkey-auth-optional
|
- feat: accountModify: add --pubkey-auth-optional
|
||||||
- fix: accountPIV: fix bad autocompletion rule
|
- fix: accountPIV: fix bad autocompletion rule
|
||||||
|
|
|
@ -24,6 +24,11 @@ Note that if you're using an infrastructure automation tool such as Puppet, Ansi
|
||||||
Version-specific upgrade instructions
|
Version-specific upgrade instructions
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
|
v3.07.00 - 2021/12/13
|
||||||
|
*********************
|
||||||
|
|
||||||
|
No specific upgrade instructions.
|
||||||
|
|
||||||
v3.06.00 - 2021/10/15
|
v3.06.00 - 2021/10/15
|
||||||
*********************
|
*********************
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ use common::sense;
|
||||||
use Fcntl;
|
use Fcntl;
|
||||||
use POSIX qw(strftime);
|
use POSIX qw(strftime);
|
||||||
|
|
||||||
our $VERSION = '3.06.00';
|
our $VERSION = '3.07.00';
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
# only used by the handler below
|
# only used by the handler below
|
||||||
|
|
Loading…
Reference in a new issue