Skip to content

Commit aa0e4db

Browse files
authored
Merge pull request #145 from DrDaveD/prepare-2.5
Prepare for 2.5 release
2 parents 8c885a2 + 68cfbf3 commit aa0e4db

4 files changed

Lines changed: 17 additions & 16 deletions

File tree

RELEASE_PROCEDURE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1. Update the version in htgettoken and setup.cfg.
1+
1. Update the version in htgettoken/__init__.py and setup.cfg.
22
2. Update the version in htgettoken.spec and add a changelog entry.
33
3. Run 'make' to update html version of man page if the man page source
44
has changed.

htgettoken.spec

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: Get OIDC bearer tokens by interacting with Hashicorp vault
22
Name: htgettoken
3-
Version: 2.4
3+
Version: 2.5
44
Release: 1%{?dist}
55

66
License: BSD-3-Clause
@@ -74,18 +74,19 @@ rm -rf $RPM_BUILD_ROOT
7474

7575

7676
%changelog
77-
# - Add htdestroytoken -f option to force a removal of a refresh token in
78-
# vault.
79-
# - Add htgettoken --novaulttoken option as an alias for --noiodc, --nossh,
80-
# and --nokerberos.
81-
# - Again fix --showbearerurl to work in combination with --nobearertoken.
82-
# That was fixed in 1.17 but broke in 1.21 and 2.0.
83-
# - Fix httokensh to pay attention to htgettoken options in $HTGETTOKENOPTS.
84-
# - Fix httokensh to correctly locate the log file if a -o or --outfile
85-
# is given, instead of writing to ".log" in the current directory.
86-
# - Fix httokensh to not pass on a --vaulttokenminttl option to the background
87-
# htgettoken command, to make the vault token last as long as possible since
88-
# it doesn't get renewed.
77+
* Mon Dec 1 2025 Dave Dykstra <dwd@fnal.gov> 2.5-1
78+
- Add htdestroytoken -f option to force a removal of a refresh token in
79+
vault.
80+
- Add htgettoken --novaulttoken option as an alias for --noiodc, --nossh,
81+
and --nokerberos.
82+
- Again fix --showbearerurl to work in combination with --nobearertoken.
83+
That was fixed in 1.17 but broke in 1.21 and 2.0.
84+
- Fix httokensh to pay attention to htgettoken options in $HTGETTOKENOPTS.
85+
- Fix httokensh to correctly locate the log file if a -o or --outfile
86+
is given, instead of writing to ".log" in the current directory.
87+
- Fix httokensh to not pass on a --vaulttokenminttl option to the background
88+
htgettoken command, to make the vault token last as long as possible since
89+
it doesn't get renewed.
8990

9091
* Fri Jun 20 2025 Dave Dykstra <dwd@fnal.gov> 2.4-1
9192
- Add the new -s and -f options to the htdecodetoken usage summary.

htgettoken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from __future__ import print_function
1616

1717
prog = "htgettoken"
18-
version = "2.4"
18+
version = "2.5"
1919

2020
import os
2121
import sys

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = htgettoken
3-
version = 2.4
3+
version = 2.5
44
author = Dave Dykstra
55
author_email = dwd@fnal.gov
66
license = BSD-3-Clause

0 commit comments

Comments
 (0)