-
Notifications
You must be signed in to change notification settings - Fork 321
fix compute engine IDTokenCredentials.with_target_audience method #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
setup.py
Outdated
@@ -32,7 +32,7 @@ | |||
|
|||
setup( | |||
name='google-auth', | |||
version='1.6.3', | |||
version='1.6.4', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We cut separate release PRs to just bump the version and add changelog notes. See #325 for an example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, sorry, did not know that. I will revert the version to the one present before.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I squashed the commits in order to have a single commit with the fix (thus avoiding a commit just for reverting the version back, I do not know if this is compliant with your branch strategy). Let me know if there is other I can do. Thanks!
cross referencing with PR that'll remove using the iam signing just to get ID tokens on compute... |
…rget_audience method (googleapis#359)
9e72686
to
a84e427
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for submitting this PR!
Superceded by #438 |
Hi everybody,
Here is the PR for this issue: #359
It should be backward compatible and it should not break anything.
I added an integration test of
IDTokenCredentials
andSigner
where I usedresponses
for mocking REST responses, I do not know if that is fine.I followed these guidelines.
Hope everything is ok, if not let me know :)