Skip to content
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

feat: implement pluggable auth interactive mode #1131

Merged
merged 45 commits into from
Sep 28, 2022

Commits on Aug 31, 2022

  1. Configuration menu
    Copy the full SHA
    a65c1e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6fcce53 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. addressing comments

    BigTailWolf committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    3ea5799 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    530442b View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Configuration menu
    Copy the full SHA
    1076877 View commit details
    Browse the repository at this point in the history
  2. move interactive source of truth to kwargs in constructor and make ch…

    …eck in the retrieve_subject_token
    BigTailWolf committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    9eec181 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    97fb34a View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2022

  1. Configuration menu
    Copy the full SHA
    95b6ce6 View commit details
    Browse the repository at this point in the history
  2. fix lint

    BigTailWolf committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    36b7709 View commit details
    Browse the repository at this point in the history
  3. chore: update token

    BigTailWolf committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    1650492 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2795076 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. Configuration menu
    Copy the full SHA
    f361340 View commit details
    Browse the repository at this point in the history
  2. fix lint

    BigTailWolf committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    2a7d288 View commit details
    Browse the repository at this point in the history
  3. addressing comments

    BigTailWolf committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    b15b9d5 View commit details
    Browse the repository at this point in the history
  4. chore: update token

    BigTailWolf committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    1460d6f View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. Configuration menu
    Copy the full SHA
    9b9ca69 View commit details
    Browse the repository at this point in the history
  2. Revert "unify the expiration_time check behavior."

    This reverts commit f361340.
    BigTailWolf committed Sep 9, 2022
    Configuration menu
    Copy the full SHA
    1dce93a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e0d2099 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Configuration menu
    Copy the full SHA
    e48cc4a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    27648e7 View commit details
    Browse the repository at this point in the history
  3. update token

    BigTailWolf committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    2515fc7 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Configuration menu
    Copy the full SHA
    7d3e7bf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a703e57 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    38267f1 View commit details
    Browse the repository at this point in the history
  4. chore: update token

    BigTailWolf committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    5b242db View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2022

  1. addressing comments

    BigTailWolf committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    5082d5a View commit details
    Browse the repository at this point in the history
  2. fix lint

    BigTailWolf committed Sep 15, 2022
    Configuration menu
    Copy the full SHA
    be691f9 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. chore: update token

    BigTailWolf committed Sep 16, 2022
    Configuration menu
    Copy the full SHA
    1a39155 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2022

  1. Configuration menu
    Copy the full SHA
    f18009a View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. chore: update token

    BigTailWolf committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    65869a2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5fcad73 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Configuration menu
    Copy the full SHA
    7189863 View commit details
    Browse the repository at this point in the history
  2. refactoring tests

    BigTailWolf committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    7b9451f View commit details
    Browse the repository at this point in the history
  3. chore: update token

    BigTailWolf committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    7c39fd8 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. Configuration menu
    Copy the full SHA
    d8bd24a View commit details
    Browse the repository at this point in the history
  2. refactor tests

    BigTailWolf committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    7de8944 View commit details
    Browse the repository at this point in the history
  3. feat: Retry behavior (googleapis#1113)

    * feat: Retry behavior
    
    * Introduce `retryable` property to auth library exceptions. This can be
      used to determine if an exception should be retried.
    * Introduce `should_retry` parameter to token endpoints. If set to `False`
      the auth library will not retry failed requests. If set to `True` the
      auth library will retry failed requests. The default value is `True`
      to maintain existing behavior.
    * Expanded list of HTTP Status codes that will be retried.
    * Modified retry behavior to use exponential backoff.
    * Increased default retry attempts from 2 to 3.
    clundin25 authored and BigTailWolf committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    06fff40 View commit details
    Browse the repository at this point in the history
  4. Revert "feat: Retry behavior (googleapis#1113)"

    This reverts commit 06fff40.
    BigTailWolf committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    b4a1ae6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4950562 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. chore: update token

    BigTailWolf committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    2db7eaf View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Configuration menu
    Copy the full SHA
    ef4b8fb View commit details
    Browse the repository at this point in the history
  2. chore: update token

    BigTailWolf committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    a093a26 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2f84c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2022

  1. Configuration menu
    Copy the full SHA
    ba4e66b View commit details
    Browse the repository at this point in the history
  2. chore: update token

    BigTailWolf committed Sep 27, 2022
    Configuration menu
    Copy the full SHA
    8af219f View commit details
    Browse the repository at this point in the history