Releases: mportesdev/helper-auth
Releases · mportesdev/helper-auth
0.8.0
0.7.0
Changes
Changed
- the
prefix
keyword parameter is renamed toscheme
to reflect that it specifies authentication scheme - the default value of
scheme
is "Bearer" (without a trailing space)
Removed
- the
requests
extra
0.6.0
Changes
Added
- the
helper_auth.__version__
attribute
Removed
- support for space-delimited helper output (this feature was experimental and inconsistent with Git credential helpers that don't treat spaces as special)
0.5.0
Changes
Changed
- the helper command can now be passed as multiple positional arguments
- the helper command can no longer be passed as a list
key
,prefix
,header
andcache_token
parameters toHelperAuth
are now keyword-only
0.4.0
Changes
Added
- the
HelperAuth.clear_cache
method to clear the cached token (if any)
Changed
requests
is now an optional dependency
0.3.0
Changes
Added
- the
cache_token
keyword parameter toHelperAuth
allowing optional caching of the token
Changed
- lines of the helper output that do not contain a
key=value
pair are now ignored, rather than raisingValueError
0.2.0
Changes
Added
- support for space-delimited helper output, i.e.
key = value
is now recognized just likekey=value
Changed
- if
key
is not found in the helper output,KeyError
is now raised, rather than silently attempting to set the header value toNone
0.1.0
First release
Added
- the
HelperAuth
class