Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE_PROCEDURE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1. Update the version in htgettoken and setup.cfg.
1. Update the version in htgettoken/__init__.py and setup.cfg.
2. Update the version in htgettoken.spec and add a changelog entry.
3. Run 'make' to update html version of man page if the man page source
has changed.
Expand Down
27 changes: 14 additions & 13 deletions htgettoken.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: Get OIDC bearer tokens by interacting with Hashicorp vault
Name: htgettoken
Version: 2.4
Version: 2.5
Release: 1%{?dist}

License: BSD-3-Clause
Expand Down Expand Up @@ -74,18 +74,19 @@ rm -rf $RPM_BUILD_ROOT


%changelog
# - Add htdestroytoken -f option to force a removal of a refresh token in
# vault.
# - Add htgettoken --novaulttoken option as an alias for --noiodc, --nossh,
# and --nokerberos.
# - Again fix --showbearerurl to work in combination with --nobearertoken.
# That was fixed in 1.17 but broke in 1.21 and 2.0.
# - Fix httokensh to pay attention to htgettoken options in $HTGETTOKENOPTS.
# - Fix httokensh to correctly locate the log file if a -o or --outfile
# is given, instead of writing to ".log" in the current directory.
# - Fix httokensh to not pass on a --vaulttokenminttl option to the background
# htgettoken command, to make the vault token last as long as possible since
# it doesn't get renewed.
* Mon Dec 1 2025 Dave Dykstra <[email protected]> 2.5-1
- Add htdestroytoken -f option to force a removal of a refresh token in
vault.
- Add htgettoken --novaulttoken option as an alias for --noiodc, --nossh,
and --nokerberos.
- Again fix --showbearerurl to work in combination with --nobearertoken.
That was fixed in 1.17 but broke in 1.21 and 2.0.
- Fix httokensh to pay attention to htgettoken options in $HTGETTOKENOPTS.
- Fix httokensh to correctly locate the log file if a -o or --outfile
is given, instead of writing to ".log" in the current directory.
- Fix httokensh to not pass on a --vaulttokenminttl option to the background
htgettoken command, to make the vault token last as long as possible since
it doesn't get renewed.

* Fri Jun 20 2025 Dave Dykstra <[email protected]> 2.4-1
- Add the new -s and -f options to the htdecodetoken usage summary.
Expand Down
2 changes: 1 addition & 1 deletion htgettoken/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from __future__ import print_function

prog = "htgettoken"
version = "2.4"
version = "2.5"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = htgettoken
version = 2.4
version = 2.5
author = Dave Dykstra
author_email = [email protected]
license = BSD-3-Clause
Expand Down
Loading