Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/google-auth-library-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.35.0
Choose a base ref
...
head repository: googleapis/google-auth-library-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0
Choose a head ref
  • 14 commits
  • 86 files changed
  • 7 contributors

Commits on Jul 29, 2021

  1. chore: update authorized_user.json (#820)

    I've filed a question against internal the team that manages
    test accounts to ask what the recommended way to refresh these tokens are,
    but have not yet gotten a response. Manually refresh the token
    to unblock CI.
    busunkim96 authored Jul 29, 2021
    Configuration menu
    Copy the full SHA
    73cbc1f View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2021

  1. fix!: drop support for Python 2.7 (#778)

    Drop use of 'six' wrapper library.
    
    Drop 'u"' prefixes.
    
    Drop support for app_engine 'classic' mode (Python 2.7-only).
    
    Release-As: 2.0.0b1
    
    Closes #777.
    tseaver authored Aug 3, 2021
    Configuration menu
    Copy the full SHA
    560cf1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4eab27 View commit details
    Browse the repository at this point in the history
  3. fix: Fix missing space in error message. (#821)

    Added missing space in the log message.
    gor-obr authored Aug 3, 2021
    Configuration menu
    Copy the full SHA
    7b03988 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2021

  1. Configuration menu
    Copy the full SHA
    10603a5 View commit details
    Browse the repository at this point in the history
  2. docs: update user guide/references for downscoped creds (#827)

    Updates user guide to document using downscoping with
    Credential Access Boundaries.
    Regenerates references for all classes and utilities related
    to this feature.
    
    Co-authored-by: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com>
    bojeil-google and arithmetic1728 authored Aug 6, 2021
    Configuration menu
    Copy the full SHA
    d1840dc View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2021

  1. fix: downscoping documentation bugs (#830)

    Fixes the following issues:
    
    - Change `google.oauth2.Credentials` to `google.oauth2.credentials.Credentials`
    - Replace deprecated `blob.download_as_string()` with `blob.download_as_bytes()`
    bojeil-google authored Aug 10, 2021
    Configuration menu
    Copy the full SHA
    da8bb13 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2021

  1. Configuration menu
    Copy the full SHA
    af37335 View commit details
    Browse the repository at this point in the history
  2. chore: omit 'docfx' from docs-presubmit build (#831)

    We don't have a 'docfx' session in our noxfile (see #822).
    
    Further tweak '.kokoro' configuration to get 'Kokoro docs-presubmit' running:
    
    - Set up additional 'gfile_resource' in '.kokoro/docs/common.cfg'.
    - Get 'gcloud' installed in '.kokoro/docker/docs/Dockerfile'
    - Run 'docs' session with Python 3.8.
    
    Closes #797.
    tseaver authored Aug 13, 2021
    Configuration menu
    Copy the full SHA
    b76f151 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. chore: split systests into separate kokoro build (#833)

    * chore: split systests into their own Kokoro build
    
    Closes #832.
    
    * chore: docs builds no longer need systest resource
    
    * chore: remove hacks to get 'gcloud'/'gfile_resource' installed for docs
    tseaver authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    5286d6f View commit details
    Browse the repository at this point in the history
  2. test: Add integration tests for downscoping (#837)

    This tests creates a temporary bucket and 2 objects in it.
    A downscoped token is then created to access only one of the objects (readonly).
    The test would then check:
    - Read access to accessible object is successful.
    - Write access to that object is unsuccessful.
    - Read access to the inaccessible object is not successful.
    bojeil-google authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    ed8e035 View commit details
    Browse the repository at this point in the history
  3. feat: service account is able to use a private token endpoint (#835)

    Co-authored-by: Dan Lee <71398022+dandhlee@users.noreply.github.com>
    arithmetic1728 and dandhlee authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    20b817a View commit details
    Browse the repository at this point in the history
  4. test: address comments for downscoping tests (#838)

    Addresses all comments from:
    #837
    
    Co-authored-by: Tres Seaver <tseaver@palladion.com>
    bojeil-google and tseaver authored Aug 16, 2021
    Configuration menu
    Copy the full SHA
    93482c6 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2021

  1. chore: release 2.0.0 (#829)

    🤖 I have created a release \*beep\* \*boop\*
    ---
    ## [2.0.0](https://www.github.com/googleapis/google-auth-library-python/compare/v2.0.0-b1...v2.0.0) (2021-08-16)
    
    ### ⚠ BREAKING CHANGES
    * drop support for Python 2.7 ([#778](https://www.github.com/googleapis/google-auth-library-python/issues/778)) ([560cf1e](https://www.github.com/googleapis/google-auth-library-python/commit/560cf1ed02a900436c5d9e0a0fb3f94b5fd98c55))
    
    ### Features
    
    * service account is able to use a private token endpoint ([#835](https://www.github.com/googleapis/google-auth-library-python/issues/835)) ([20b817a](https://www.github.com/googleapis/google-auth-library-python/commit/20b817af8e202b0331998e5abde4e2a5aab51f9a))
    
    
    ### Bug Fixes
    
    * downscoping documentation bugs ([#830](https://www.github.com/googleapis/google-auth-library-python/issues/830)) ([da8bb13](https://www.github.com/googleapis/google-auth-library-python/commit/da8bb13c1349e771ffc2e125256030495c53d956))
    * Fix missing space in error message. ([#821](https://www.github.com/googleapis/google-auth-library-python/issues/821)) ([7b03988](https://www.github.com/googleapis/google-auth-library-python/commit/7b039888aeb6ec7691d91c9afce182b17f02b1a6))
    
    
    ### Documentation
    
    * update user guide/references for downscoped creds ([#827](https://www.github.com/googleapis/google-auth-library-python/issues/827)) ([d1840dc](https://www.github.com/googleapis/google-auth-library-python/commit/d1840dcdcd03dfd7fdfa81d08da68402f6f8b658))
    ---
    
    
    This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
    release-please[bot] authored Aug 17, 2021
    Configuration menu
    Copy the full SHA
    3c8fab5 View commit details
    Browse the repository at this point in the history
Loading