diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-02-27 18:12:48 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-02 19:25:52 -0800 |
| commit | 263194d7a3a29b7a7eb31b39913e15c267979731 (patch) | |
| tree | ad6a18406d276847dd1bff1d61c28d89f9268ad3 /meta-python/recipes-devtools/python/python3-google-auth_2.48.0.bb | |
| parent | 4eda10a4eda5bdb31fd1db00b0d29bb60ec45730 (diff) | |
| download | meta-openembedded-263194d7a3a29b7a7eb31b39913e15c267979731.tar.gz | |
python3-google-auth: upgrade 2.47.0 -> 2.48.0
Features
----------
- honor NO_GCE_CHECK environment variable
- add configurable GCE Metadata Server retries
- add cryptography as required dependency
- Support the mTLS IAM domain for Certificate based Access
Bug Fixes
----------
- resolve circular imports
- Use user_verification=preferred for ReAuth WebAuthn challenge
- removes content-header from AWS IMDS get request
- detect correct auth when ADC env var is set but empty
- replace deprecated utcfromtimestamp
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.48.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-google-auth_2.48.0.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.48.0.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.48.0.bb new file mode 100644 index 0000000000..4e48c62861 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-google-auth_2.48.0.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 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-python3-google-auth-Skip-mTLS-tests-in-ptest-environ.patch \ | ||
| 10 | file://run-ptest \ | ||
| 11 | " | ||
| 12 | SRC_URI[sha256sum] = "4f7e706b0cd3208a3d940a19a822c37a476ddba5450156c3e6624a71f7c841ce" | ||
| 13 | |||
| 14 | PYPI_PACKAGE = "google_auth" | ||
| 15 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 16 | |||
| 17 | RDEPENDS:${PN}-ptest += " \ | ||
| 18 | python3-aioresponses \ | ||
| 19 | python3-cryptography \ | ||
| 20 | python3-flask \ | ||
| 21 | python3-freezegun \ | ||
| 22 | python3-grpcio \ | ||
| 23 | python3-mock \ | ||
| 24 | python3-pyjwt \ | ||
| 25 | python3-pyopenssl \ | ||
| 26 | python3-pytest \ | ||
| 27 | python3-pytest-asyncio \ | ||
| 28 | python3-pytest-localserver \ | ||
| 29 | python3-pyu2f \ | ||
| 30 | python3-requests \ | ||
| 31 | python3-responses \ | ||
| 32 | python3-unittest-automake-output \ | ||
| 33 | python3-unixadmin \ | ||
| 34 | " | ||
| 35 | |||
| 36 | do_install_ptest() { | ||
| 37 | install -d ${D}${PTEST_PATH}/tests | ||
| 38 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 39 | } | ||
| 40 | |||
| 41 | RDEPENDS:${PN} += "\ | ||
| 42 | python3-cachetools \ | ||
| 43 | python3-json \ | ||
| 44 | python3-pyasn1-modules \ | ||
| 45 | python3-rsa \ | ||
| 46 | " | ||
