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-api-python-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.67.0
Choose a base ref
...
head repository: googleapis/google-api-python-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.68.0
Choose a head ref
  • 8 commits
  • 400 files changed
  • 7 contributors

Commits on Nov 18, 2022

  1. chore(python): update release script dependencies (#1980)

    Source-Link: googleapis/synthtool@25083af
    Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:e6cbd61f1838d9ff6a31436dfc13717f372a7482a82fc1863ca954ec47bff8c8
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Nov 18, 2022
    Configuration menu
    Copy the full SHA
    5c7462e View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

  1. chore: Update discovery artifacts (#1983)

    ## Deleted keys were detected in the following stable discovery artifacts:
    chat v1 https://togithub.com/googleapis/google-api-python-client/commit/f9d3cb6e430faeb9b942b42de748efa166509f57
    cloudsearch v1 https://togithub.com/googleapis/google-api-python-client/commit/e602008ba98c9c4daf5b68d4308fa99f47e4fee4
    documentai v1 https://togithub.com/googleapis/google-api-python-client/commit/79ca84ab16a8cde17cdc0293c27f0e72b9cde5d5
    
    ## Discovery Artifact Change Summary:
    feat(androidmanagement): update the api https://togithub.com/googleapis/google-api-python-client/commit/2dd64637ec67d4802fdee296a9c178cacf22d0d8
    feat(chat): update the api https://togithub.com/googleapis/google-api-python-client/commit/f9d3cb6e430faeb9b942b42de748efa166509f57
    feat(cloudasset): update the api https://togithub.com/googleapis/google-api-python-client/commit/89473b2ca0e27fae3d1c6d7f92e16933f2829c88
    feat(cloudsearch): update the api https://togithub.com/googleapis/google-api-python-client/commit/e602008ba98c9c4daf5b68d4308fa99f47e4fee4
    feat(composer): update the api https://togithub.com/googleapis/google-api-python-client/commit/626bf19259ba4717090b182ca20ad13b6acf40b3
    feat(contactcenterinsights): update the api https://togithub.com/googleapis/google-api-python-client/commit/ebb648aa643aad895798ff1aa58e051e2dd06bad
    feat(container): update the api https://togithub.com/googleapis/google-api-python-client/commit/9ccf94909892076fb071c1e79e10ea0973c49d71
    feat(datapipelines): update the api https://togithub.com/googleapis/google-api-python-client/commit/1dadbf77eea1fc5538643f876e7cecf36acc9318
    feat(dataplex): update the api https://togithub.com/googleapis/google-api-python-client/commit/2d0cd12f1711e71e58e1835341e269e339096e63
    feat(dns): update the api https://togithub.com/googleapis/google-api-python-client/commit/c250e0e81554847ba62d663c3f3020aa677701b8
    feat(documentai): update the api https://togithub.com/googleapis/google-api-python-client/commit/79ca84ab16a8cde17cdc0293c27f0e72b9cde5d5
    feat(securitycenter): update the api https://togithub.com/googleapis/google-api-python-client/commit/86e1526a1de990a72eda1e52c2df8078b48fc973
    feat(serviceconsumermanagement): update the api https://togithub.com/googleapis/google-api-python-client/commit/51e6ed6970b305f0225d5fd07e0aa9fb776ffd02
    feat(servicenetworking): update the api https://togithub.com/googleapis/google-api-python-client/commit/3130518d7a1c2f3f787a1a9cbdd23c3018de8f59
    feat(serviceusage): update the api https://togithub.com/googleapis/google-api-python-client/commit/7475ad606bad6f0fe5b8c95530e943df3ef322c8
    feat(testing): update the api https://togithub.com/googleapis/google-api-python-client/commit/a456ae80c81a8a0baea7f3871dfc56cee625dd05
    yoshi-code-bot authored Nov 22, 2022
    Configuration menu
    Copy the full SHA
    9b5767f View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2022

  1. chore(python): drop flake8-import-order in samples noxfile (#1985)

    Source-Link: googleapis/synthtool@6ed3a83
    Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:3abfa0f1886adaf0b83f07cb117b24a639ea1cb9cffe56d43280b977033563eb
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Nov 26, 2022
    Configuration menu
    Copy the full SHA
    8c2902a View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

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

Commits on Nov 30, 2022

  1. feat: add support for Python 3.11 (#1973)

    * feat: add support for Python 3.11
    
    Signed-off-by: Daniel Ziegenberg <[email protected]>
    
    * fix: FutureWarning pandas
    
    In a future version of pandas all arguments of StringMethods.rsplit except for the argument 'pat' will be keyword-only.
    
    Signed-off-by: Daniel Ziegenberg <[email protected]>
    
    * fix: DeprecationWarning: inspect.getargspec() is deprecated since Python 3.0
    
    With Python 3.11 `inspect.getargspec()` was removed. The recommendation
    is to use `inspect.getfullargspec()`.
    
    See: https://docs.python.org/3.10/library/inspect.html#inspect.getargspec
    
    > Deprecated since version 3.0: Use `getfullargspec()` for an updated API
    > that is usually a drop-in replacement, but also correctly handles
    > function annotations and keyword-only parameters.
    
    Signed-off-by: Daniel Ziegenberg <[email protected]>
    
    * add python 3.11 in template generation
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * Remove python 3.11 samples check
    
    Signed-off-by: Daniel Ziegenberg <[email protected]>
    Co-authored-by: Anthonios Partheniou <[email protected]>
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    3 people authored Nov 30, 2022
    Configuration menu
    Copy the full SHA
    1106672 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency google-auth to v2.14.0 (#1963)

    Co-authored-by: Anthonios Partheniou <[email protected]>
    renovate-bot and parthea authored Nov 30, 2022
    Configuration menu
    Copy the full SHA
    ad1396b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aec1249 View commit details
    Browse the repository at this point in the history
  4. chore(main): release 2.68.0 (#1984)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    Co-authored-by: Anthonios Partheniou <[email protected]>
    release-please[bot] and parthea authored Nov 30, 2022
    Configuration menu
    Copy the full SHA
    bad9f28 View commit details
    Browse the repository at this point in the history
Loading