From f1f0ac5d5089116154be4fee83598ce0a2e4ec2b Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 25 Oct 2024 16:19:14 -0700 Subject: python3-google-auth: Upgrade to 2.35.0 2.35.0 (2024-09-17) Features Add cred info to ADC creds Add support for asynchronous AuthorizedSession api Bug Fixes Remove token_info call from token refresh path 2.34.0 (2024-08-13) Features auth: Update get_client_ssl_credentials to support X.509 workload certs Bug Fixes Retry token request on retryable status code (#1563) (f858a15) 2.33.0 (2024-08-06) Features Implement async StaticCredentials using access tokens Implement base classes for credentials and request sessions Bug Fixes metadata: Enhance retry logic for metadata server access in _metadata.py Documentation Update argument for Credentials initialization 2.32.0 (2024-07-08) Features Adds support for X509 workload credential type 2.31.0 (2024-06-27) Features Adds X509 workload cert logic Bug Fixes Added py.typed to MANIFEST.in Pass trust_env kwarg to ClientSession Signed-off-by: Khem Raj --- .../python/python3-google-auth_2.30.0.bb | 41 --------------------- .../python/python3-google-auth_2.35.0.bb | 43 ++++++++++++++++++++++ 2 files changed, 43 insertions(+), 41 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-google-auth_2.30.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-google-auth_2.35.0.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.30.0.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.30.0.bb deleted file mode 100644 index c51be16505..0000000000 --- a/meta-python/recipes-devtools/python/python3-google-auth_2.30.0.bb +++ /dev/null @@ -1,41 +0,0 @@ -DESCRIPTION = "Google Authentication Library" -HOMEPAGE = "https://github.com/googleapis/google-auth-library-python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" - -inherit pypi setuptools3 ptest - -SRC_URI[sha256sum] = "ab630a1320f6720909ad76a7dbdb6841cdf5c66b328d690027e4867bdfb16688" - -SRC_URI += " \ - file://run-ptest \ -" - -RDEPENDS:${PN}-ptest += " \ - python3-cryptography \ - python3-flask \ - python3-freezegun \ - python3-grpcio \ - python3-mock \ - python3-oauth2client \ - python3-pyopenssl \ - python3-pytest \ - python3-pytest-localserver \ - python3-pyu2f \ - python3-requests \ - python3-responses \ - python3-unittest-automake-output \ - python3-unixadmin \ -" - -do_install_ptest() { - install -d ${D}${PTEST_PATH}/tests - cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ -} - -RDEPENDS:${PN} += "\ - python3-cachetools \ - python3-json \ - python3-pyasn1-modules \ - python3-rsa \ -" diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.35.0.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.35.0.bb new file mode 100644 index 0000000000..f0ef3c6773 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-google-auth_2.35.0.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "Google Authentication Library" +HOMEPAGE = "https://github.com/googleapis/google-auth-library-python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" + +inherit pypi setuptools3 ptest + +SRC_URI[sha256sum] = "f4c64ed4e01e8e8b646ef34c018f8bf3338df0c8e37d8b3bba40e7f574a3278a" +SRC_URI += " \ + file://run-ptest \ +" + +PYPI_PACKAGE = "google_auth" + +RDEPENDS:${PN}-ptest += " \ + python3-aioresponses \ + python3-cryptography \ + python3-flask \ + python3-freezegun \ + python3-grpcio \ + python3-mock \ + python3-pyopenssl \ + python3-pytest \ + python3-pytest-asyncio \ + python3-pytest-localserver \ + python3-pyu2f \ + python3-requests \ + python3-responses \ + python3-unittest-automake-output \ + python3-unixadmin \ +" + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ +} + +RDEPENDS:${PN} += "\ + python3-cachetools \ + python3-json \ + python3-pyasn1-modules \ + python3-rsa \ +" -- cgit v1.2.3-54-g00ecf