From 9903897c9dcf23f9fc831019525df84416191423 Mon Sep 17 00:00:00 2001 From: "Andrew E. Bruno" Date: Thu, 25 Mar 2021 14:59:46 -0400 Subject: [PATCH] Bump version --- ChangeLog.rst | 5 ++++- main.go | 2 +- mokey.spec | 11 ++++++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 7af42b8..7f72a94 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -2,12 +2,14 @@ ChangeLog =============================================================================== -`v0.5.4`_ (unreleased) +`v0.5.5`_ (2021-03-25) - Add security related HTTP headers #55 - Upgrade to latest hydra sdk. Tested against hydra v1.9.2 - Verify nsaccountlock before sending password reset email @cmd-ntrf - Add option to require admin verification to enable new account @cmd-ntrf +- Restrict username to lowercase and not only number when signing up @cmd-ntrf +- Add option to always skip consent in hydra login flow @isard-vdi `v0.5.4`_ (2020-07-14) ---------------------- @@ -94,3 +96,4 @@ ChangeLog .. _v0.5.2: https://github.com/ubccr/mokey/releases/tag/v0.5.2 .. _v0.5.3: https://github.com/ubccr/mokey/releases/tag/v0.5.3 .. _v0.5.4: https://github.com/ubccr/mokey/releases/tag/v0.5.4 +.. _v0.5.5: https://github.com/ubccr/mokey/releases/tag/v0.5.5 diff --git a/main.go b/main.go index c11e68a..964c66c 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ func main() { app.Name = "mokey" app.Authors = []cli.Author{cli.Author{Name: "Andrew E. Bruno", Email: "aebruno2@buffalo.edu"}} app.Usage = "mokey" - app.Version = "0.5.4" + app.Version = "0.5.5" app.Flags = []cli.Flag{ &cli.StringFlag{Name: "conf,c", Usage: "Path to conf file"}, &cli.BoolFlag{Name: "debug,d", Usage: "Print debug messages"}, diff --git a/mokey.spec b/mokey.spec index 180e263..4c02f3f 100644 --- a/mokey.spec +++ b/mokey.spec @@ -3,7 +3,7 @@ Summary: FreeIPA self-service account managment tool Name: mokey -Version: 0.5.4 +Version: 0.5.5 Release: 1%{?dist} License: BSD Group: Applications/Internet @@ -72,6 +72,15 @@ rm -rf %{buildroot} %attr(644,root,root) %{_usr}/lib/systemd/system/%{name}.service %changelog +* Thu Mar 25 2021 Andrew E. Bruno 0.5.5-1 +- New Features + - Add security related HTTP headers #55 + - Upgrade to latest hydra sdk. Tested against hydra v1.9.2 + - Add option to require admin verification to enable new account @cmd-ntrf + - Add option to always skip consent in hydra login flow @isard-vdi +- Bug Fixes + - Verify nsaccountlock before sending password reset email @cmd-ntrf + - Restrict username to lowercase and not only number when signing up @cmd-ntrf * Tue Jul 07 2020 Andrew E. Bruno 0.5.4-1 - Bug Fixes - Fix bug with missing set-cookie header issue #53