diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-12-24 17:12:52 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-12-24 13:18:28 -0800 |
| commit | 3f09bcaf5490dcac6d101c369046d550137b4abb (patch) | |
| tree | a99355bbefa2ed6e2a45f55b2d2b543fe4123744 /meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb | |
| parent | c2710a2df9bbafa9fabe87610f29864c56476b9d (diff) | |
| download | meta-openembedded-3f09bcaf5490dcac6d101c369046d550137b4abb.tar.gz | |
python3-google-auth: upgrade 2.43.0 -> 2.45.0
Changelog:
=============
Features
---------
- Adding Agent Identity bound token support and handling certificate mismatches
with retries
- support Python 3.14
- add ecdsa p-384 support
- MDS connections use mTLS
- Implement token revocation in STS client and add revoke() method to
ExternalAccountAuthorizedUser credentials
- Add shlex to correctly parse executable commands with spaces
Bug Fixes
---------
- Use public refresh method for source credentials in ImpersonatedCredentials
- Add temporary patch to workload cert logic to accomodate Cloud Run
mis-configuration
- Delegate workload cert and key default lookup to helper function
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb new file mode 100644 index 0000000000..17a9d7051e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-google-auth_2.45.0.bb | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | DESCRIPTION = "Google Authentication Library" | ||
| 2 | HOMEPAGE = "https://github.com/googleapis/google-auth-library-python" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327" | ||
| 5 | |||
| 6 | inherit pypi setuptools3 ptest | ||
| 7 | |||
| 8 | SRC_URI += " \ | ||
| 9 | file://0001-make-the-TLS-tests-skip-when-pyopenssl-isn-t-availab.patch \ | ||
| 10 | file://0001-python3-google-auth-Skip-mTLS-tests-in-ptest-environ.patch \ | ||
| 11 | file://run-ptest \ | ||
| 12 | " | ||
| 13 | SRC_URI[sha256sum] = "90d3f41b6b72ea72dd9811e765699ee491ab24139f34ebf1ca2b9cc0c38708f3" | ||
| 14 | |||
| 15 | PYPI_PACKAGE = "google_auth" | ||
| 16 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += " \ | ||
| 19 | python3-aioresponses \ | ||
| 20 | python3-cryptography \ | ||
| 21 | python3-flask \ | ||
| 22 | python3-freezegun \ | ||
| 23 | python3-grpcio \ | ||
| 24 | python3-mock \ | ||
| 25 | python3-pyjwt \ | ||
| 26 | python3-pyopenssl \ | ||
| 27 | python3-pytest \ | ||
| 28 | python3-pytest-asyncio \ | ||
| 29 | python3-pytest-localserver \ | ||
| 30 | python3-pyu2f \ | ||
| 31 | python3-requests \ | ||
| 32 | python3-responses \ | ||
| 33 | python3-unittest-automake-output \ | ||
| 34 | python3-unixadmin \ | ||
| 35 | " | ||
| 36 | |||
| 37 | do_install_ptest() { | ||
| 38 | install -d ${D}${PTEST_PATH}/tests | ||
| 39 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 40 | } | ||
| 41 | |||
| 42 | RDEPENDS:${PN} += "\ | ||
| 43 | python3-cachetools \ | ||
| 44 | python3-json \ | ||
| 45 | python3-pyasn1-modules \ | ||
| 46 | python3-rsa \ | ||
| 47 | " | ||
