Compare commits
15 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 7244c113f4 | |||
| 4f8b89fba8 | |||
| 75e08467ab | |||
| 1c151ff518 | |||
| 2edae15cf3 | |||
| 7f0eb7ddd1 | |||
| 655e371e78 | |||
| e21e9d9f67 | |||
| f8c9888498 | |||
| c400bf075a | |||
| 9e52cf27dc | |||
| eeb001c5ba | |||
| 413d891197 | |||
| 384672a2f1 | |||
| 42ffe31aeb |
BIN
google_auth-2.38.0.tar.gz
LFS
BIN
google_auth-2.38.0.tar.gz
LFS
Binary file not shown.
3
google_auth-2.43.0.tar.gz
Normal file
3
google_auth-2.43.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:88228eee5fc21b62a1b5fe773ca15e67778cb07dc8363adcb4a8827b52d81483
|
||||
size 296359
|
||||
50
pytest9.patch
Normal file
50
pytest9.patch
Normal file
@@ -0,0 +1,50 @@
|
||||
From 5c372a92bf5086f1b63eaa8979fc13c5c0ce9dc9 Mon Sep 17 00:00:00 2001
|
||||
From: Lingqing Gan <lingqing.gan@gmail.com>
|
||||
Date: Mon, 10 Nov 2025 15:58:56 -0800
|
||||
Subject: [PATCH] chore: update secret and fix pytest issue (#1868)
|
||||
|
||||
---
|
||||
system_tests/secrets.tar.enc | Bin 10324 -> 10324 bytes
|
||||
tests/transport/aio/test_sessions.py | 22 ++++++++++++++++------
|
||||
2 files changed, 16 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/tests/transport/aio/test_sessions.py b/tests/transport/aio/test_sessions.py
|
||||
index c91a7c40a..742f863d0 100644
|
||||
--- a/tests/transport/aio/test_sessions.py
|
||||
+++ b/tests/transport/aio/test_sessions.py
|
||||
@@ -32,8 +32,13 @@
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
-async def simple_async_task():
|
||||
- return True
|
||||
+def simple_async_task():
|
||||
+ # Wrap async fixture within a synchronous fixture to suppress pytest.PytestRemovedIn9Warning
|
||||
+ # See https://docs.pytest.org/en/stable/deprecations.html#sync-test-depending-on-async-fixture
|
||||
+ async def inner_fixture():
|
||||
+ return True
|
||||
+
|
||||
+ return inner_fixture()
|
||||
|
||||
|
||||
class MockRequest(Request):
|
||||
@@ -151,10 +156,15 @@ class TestAsyncAuthorizedSession(object):
|
||||
credentials = AnonymousCredentials()
|
||||
|
||||
@pytest.fixture
|
||||
- async def mocked_content(self):
|
||||
- content = [b"Cavefish ", b"have ", b"no ", b"sight."]
|
||||
- for chunk in content:
|
||||
- yield chunk
|
||||
+ def mocked_content(self):
|
||||
+ # Wrap async fixture within a synchronous fixture to suppress pytest.PytestRemovedIn9Warning
|
||||
+ # See https://docs.pytest.org/en/stable/deprecations.html#sync-test-depending-on-async-fixture
|
||||
+ async def inner_fixture():
|
||||
+ content = [b"Cavefish ", b"have ", b"no ", b"sight."]
|
||||
+ for chunk in content:
|
||||
+ yield chunk
|
||||
+
|
||||
+ return inner_fixture()
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_constructor_with_default_auth_request(self):
|
||||
@@ -1,18 +1,18 @@
|
||||
diff -Nru google_auth-2.35.0.orig/tests/compute_engine/test_credentials.py google_auth-2.35.0/tests/compute_engine/test_credentials.py
|
||||
--- google_auth-2.35.0.orig/tests/compute_engine/test_credentials.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/compute_engine/test_credentials.py 2024-10-01 14:18:31.093500346 +0000
|
||||
@@ -14,7 +14,7 @@
|
||||
import base64
|
||||
diff -Nru google_auth-2.42.1.orig/tests/compute_engine/test_credentials.py google_auth-2.42.1/tests/compute_engine/test_credentials.py
|
||||
--- google_auth-2.42.1.orig/tests/compute_engine/test_credentials.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/compute_engine/test_credentials.py 2025-11-03 13:35:00.328319088 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import datetime
|
||||
import os
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
import responses # type: ignore
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/compute_engine/test__metadata.py google_auth-2.35.0/tests/compute_engine/test__metadata.py
|
||||
--- google_auth-2.35.0.orig/tests/compute_engine/test__metadata.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/compute_engine/test__metadata.py 2024-10-01 14:18:31.085500296 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/compute_engine/test__metadata.py google_auth-2.42.1/tests/compute_engine/test__metadata.py
|
||||
--- google_auth-2.42.1.orig/tests/compute_engine/test__metadata.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/compute_engine/test__metadata.py 2025-11-03 13:35:00.330609617 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -22,9 +22,9 @@ diff -Nru google_auth-2.35.0.orig/tests/compute_engine/test__metadata.py google_
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/conftest.py google_auth-2.35.0/tests/conftest.py
|
||||
--- google_auth-2.35.0.orig/tests/conftest.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/conftest.py 2024-10-01 14:18:31.113500470 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/conftest.py google_auth-2.42.1/tests/conftest.py
|
||||
--- google_auth-2.42.1.orig/tests/conftest.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/conftest.py 2025-11-03 13:35:00.252989012 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import os
|
||||
import sys
|
||||
@@ -34,9 +34,9 @@ diff -Nru google_auth-2.35.0.orig/tests/conftest.py google_auth-2.35.0/tests/con
|
||||
import pytest # type: ignore
|
||||
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/crypt/test__python_rsa.py google_auth-2.35.0/tests/crypt/test__python_rsa.py
|
||||
--- google_auth-2.35.0.orig/tests/crypt/test__python_rsa.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/crypt/test__python_rsa.py 2024-10-01 14:18:31.121500521 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/crypt/test__python_rsa.py google_auth-2.42.1/tests/crypt/test__python_rsa.py
|
||||
--- google_auth-2.42.1.orig/tests/crypt/test__python_rsa.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/crypt/test__python_rsa.py 2025-11-03 13:35:00.352876856 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -46,9 +46,9 @@ diff -Nru google_auth-2.35.0.orig/tests/crypt/test__python_rsa.py google_auth-2.
|
||||
from pyasn1_modules import pem # type: ignore
|
||||
import pytest # type: ignore
|
||||
import rsa # type: ignore
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_challenges.py google_auth-2.35.0/tests/oauth2/test_challenges.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_challenges.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_challenges.py 2024-10-01 14:18:31.137500621 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_challenges.py google_auth-2.42.1/tests/oauth2/test_challenges.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_challenges.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_challenges.py 2025-11-03 13:35:00.307598245 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import os
|
||||
import sys
|
||||
@@ -58,9 +58,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_challenges.py google_auth-2.
|
||||
import pytest # type: ignore
|
||||
import pyu2f # type: ignore
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test__client.py google_auth-2.35.0/tests/oauth2/test__client.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test__client.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test__client.py 2024-10-01 14:18:31.137500621 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test__client.py google_auth-2.42.1/tests/oauth2/test__client.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test__client.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test__client.py 2025-11-03 13:35:00.296759967 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import os
|
||||
import urllib
|
||||
@@ -70,9 +70,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test__client.py google_auth-2.35.
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_credentials.py google_auth-2.35.0/tests/oauth2/test_credentials.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_credentials.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_credentials.py 2024-10-01 14:18:31.137500621 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_credentials.py google_auth-2.42.1/tests/oauth2/test_credentials.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_credentials.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_credentials.py 2025-11-03 13:35:00.301089606 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import pickle
|
||||
import sys
|
||||
@@ -82,9 +82,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_credentials.py google_auth-2
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_gdch_credentials.py google_auth-2.35.0/tests/oauth2/test_gdch_credentials.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_gdch_credentials.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_gdch_credentials.py 2024-10-01 14:18:31.141500645 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_gdch_credentials.py google_auth-2.42.1/tests/oauth2/test_gdch_credentials.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_gdch_credentials.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_gdch_credentials.py 2025-11-03 13:35:00.289843323 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -94,9 +94,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_gdch_credentials.py google_a
|
||||
import pytest # type: ignore
|
||||
import requests
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_id_token.py google_auth-2.35.0/tests/oauth2/test_id_token.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_id_token.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_id_token.py 2024-10-01 14:18:31.141500645 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_id_token.py google_auth-2.42.1/tests/oauth2/test_id_token.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_id_token.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_id_token.py 2025-11-03 13:35:00.291748012 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -106,9 +106,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_id_token.py google_auth-2.35
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import environment_vars
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_reauth.py google_auth-2.35.0/tests/oauth2/test_reauth.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_reauth.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_reauth.py 2024-10-01 14:18:31.141500645 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_reauth.py google_auth-2.42.1/tests/oauth2/test_reauth.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_reauth.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_reauth.py 2025-11-03 13:35:00.302935053 +0100
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
import copy
|
||||
@@ -118,9 +118,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_reauth.py google_auth-2.35.0
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_service_account.py google_auth-2.35.0/tests/oauth2/test_service_account.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_service_account.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_service_account.py 2024-10-01 14:18:31.145500670 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_service_account.py google_auth-2.42.1/tests/oauth2/test_service_account.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_service_account.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_service_account.py 2025-11-03 13:35:00.299318239 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -130,9 +130,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_service_account.py google_au
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_sts.py google_auth-2.35.0/tests/oauth2/test_sts.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_sts.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_sts.py 2024-10-01 14:18:31.145500670 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_sts.py google_auth-2.42.1/tests/oauth2/test_sts.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_sts.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_sts.py 2025-11-03 13:35:00.309483087 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import json
|
||||
import urllib
|
||||
@@ -142,18 +142,18 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_sts.py google_auth-2.35.0/te
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_webauthn_handler_factory.py google_auth-2.35.0/tests/oauth2/test_webauthn_handler_factory.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_webauthn_handler_factory.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_webauthn_handler_factory.py 2024-10-01 14:18:31.149500695 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_webauthn_handler_factory.py google_auth-2.42.1/tests/oauth2/test_webauthn_handler_factory.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_webauthn_handler_factory.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_webauthn_handler_factory.py 2025-11-03 13:35:00.313186536 +0100
|
||||
@@ -1,4 +1,4 @@
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.oauth2 import webauthn_handler
|
||||
diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_webauthn_handler.py google_auth-2.35.0/tests/oauth2/test_webauthn_handler.py
|
||||
--- google_auth-2.35.0.orig/tests/oauth2/test_webauthn_handler.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/oauth2/test_webauthn_handler.py 2024-10-01 14:18:31.145500670 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/oauth2/test_webauthn_handler.py google_auth-2.42.1/tests/oauth2/test_webauthn_handler.py
|
||||
--- google_auth-2.42.1.orig/tests/oauth2/test_webauthn_handler.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/oauth2/test_webauthn_handler.py 2025-11-03 13:35:00.294618698 +0100
|
||||
@@ -1,7 +1,7 @@
|
||||
import json
|
||||
import struct
|
||||
@@ -163,9 +163,9 @@ diff -Nru google_auth-2.35.0.orig/tests/oauth2/test_webauthn_handler.py google_a
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_app_engine.py google_auth-2.35.0/tests/test_app_engine.py
|
||||
--- google_auth-2.35.0.orig/tests/test_app_engine.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_app_engine.py 2024-10-01 14:18:31.217501119 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_app_engine.py google_auth-2.42.1/tests/test_app_engine.py
|
||||
--- google_auth-2.42.1.orig/tests/test_app_engine.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_app_engine.py 2025-11-03 13:35:00.276012147 +0100
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
import datetime
|
||||
@@ -175,9 +175,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_app_engine.py google_auth-2.35.0/te
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import app_engine
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_aws.py google_auth-2.35.0/tests/test_aws.py
|
||||
--- google_auth-2.35.0.orig/tests/test_aws.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_aws.py 2024-10-01 14:18:31.233501219 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_aws.py google_auth-2.42.1/tests/test_aws.py
|
||||
--- google_auth-2.42.1.orig/tests/test_aws.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_aws.py 2025-11-03 13:35:00.366320202 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import os
|
||||
import urllib.parse
|
||||
@@ -187,9 +187,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_aws.py google_auth-2.35.0/tests/tes
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers, external_account
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test__cloud_sdk.py google_auth-2.35.0/tests/test__cloud_sdk.py
|
||||
--- google_auth-2.35.0.orig/tests/test__cloud_sdk.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test__cloud_sdk.py 2024-10-01 14:18:31.149500695 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test__cloud_sdk.py google_auth-2.42.1/tests/test__cloud_sdk.py
|
||||
--- google_auth-2.42.1.orig/tests/test__cloud_sdk.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test__cloud_sdk.py 2025-11-03 13:35:00.282317740 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import subprocess
|
||||
import sys
|
||||
@@ -199,33 +199,33 @@ diff -Nru google_auth-2.35.0.orig/tests/test__cloud_sdk.py google_auth-2.35.0/te
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _cloud_sdk
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_credentials.py google_auth-2.35.0/tests/test_credentials.py
|
||||
--- google_auth-2.35.0.orig/tests/test_credentials.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_credentials.py 2024-10-01 14:18:31.253501344 +0000
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
import datetime
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test__default.py google_auth-2.35.0/tests/test__default.py
|
||||
--- google_auth-2.35.0.orig/tests/test__default.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test__default.py 2024-10-01 14:18:31.153500720 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_credentials.py google_auth-2.42.1/tests/test_credentials.py
|
||||
--- google_auth-2.42.1.orig/tests/test_credentials.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_credentials.py 2025-11-03 13:35:00.317619651 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import json
|
||||
import datetime
|
||||
import os
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test__default.py google_auth-2.42.1/tests/test__default.py
|
||||
--- google_auth-2.42.1.orig/tests/test__default.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test__default.py 2025-11-03 13:35:00.320730022 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import os
|
||||
import warnings
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _default
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_downscoped.py google_auth-2.35.0/tests/test_downscoped.py
|
||||
--- google_auth-2.35.0.orig/tests/test_downscoped.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_downscoped.py 2024-10-01 14:18:31.293501594 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_downscoped.py google_auth-2.42.1/tests/test_downscoped.py
|
||||
--- google_auth-2.42.1.orig/tests/test_downscoped.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_downscoped.py 2025-11-03 13:35:00.325319000 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import json
|
||||
import urllib
|
||||
@@ -235,9 +235,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_downscoped.py google_auth-2.35.0/te
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test__exponential_backoff.py google_auth-2.35.0/tests/test__exponential_backoff.py
|
||||
--- google_auth-2.35.0.orig/tests/test__exponential_backoff.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test__exponential_backoff.py 2024-10-01 14:18:31.165500795 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test__exponential_backoff.py google_auth-2.42.1/tests/test__exponential_backoff.py
|
||||
--- google_auth-2.42.1.orig/tests/test__exponential_backoff.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test__exponential_backoff.py 2025-11-03 13:35:00.247630509 +0100
|
||||
@@ -12,7 +12,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
@@ -247,45 +247,21 @@ diff -Nru google_auth-2.35.0.orig/tests/test__exponential_backoff.py google_auth
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _exponential_backoff
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_external_account_authorized_user.py google_auth-2.35.0/tests/test_external_account_authorized_user.py
|
||||
--- google_auth-2.35.0.orig/tests/test_external_account_authorized_user.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_external_account_authorized_user.py 2024-10-01 14:18:31.337501868 +0000
|
||||
@@ -16,7 +16,7 @@
|
||||
import http.client as http_client
|
||||
import json
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_external_account.py google_auth-2.35.0/tests/test_external_account.py
|
||||
--- google_auth-2.35.0.orig/tests/test_external_account.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_external_account.py 2024-10-01 14:18:31.317501743 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_external_account_authorized_user.py google_auth-2.42.1/tests/test_external_account_authorized_user.py
|
||||
--- google_auth-2.42.1.orig/tests/test_external_account_authorized_user.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_external_account_authorized_user.py 2025-11-03 13:35:00.322985588 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import json
|
||||
import urllib
|
||||
import os
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_iam.py google_auth-2.35.0/tests/test_iam.py
|
||||
--- google_auth-2.35.0.orig/tests/test_iam.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_iam.py 2024-10-01 14:18:31.349501943 +0000
|
||||
@@ -17,7 +17,7 @@
|
||||
import http.client as http_client
|
||||
import json
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_identity_pool.py google_auth-2.35.0/tests/test_identity_pool.py
|
||||
--- google_auth-2.35.0.orig/tests/test_identity_pool.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_identity_pool.py 2024-10-01 14:18:31.357501992 +0000
|
||||
from google.auth import environment_vars
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_external_account.py google_auth-2.42.1/tests/test_external_account.py
|
||||
--- google_auth-2.42.1.orig/tests/test_external_account.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_external_account.py 2025-11-03 13:35:00.249316773 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import os
|
||||
import urllib
|
||||
@@ -294,10 +270,46 @@ diff -Nru google_auth-2.35.0.orig/tests/test_identity_pool.py google_auth-2.35.0
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers, external_account
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_impersonated_credentials.py google_auth-2.35.0/tests/test_impersonated_credentials.py
|
||||
--- google_auth-2.35.0.orig/tests/test_impersonated_credentials.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_impersonated_credentials.py 2024-10-01 14:18:31.377502117 +0000
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_iam.py google_auth-2.42.1/tests/test_iam.py
|
||||
--- google_auth-2.42.1.orig/tests/test_iam.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_iam.py 2025-11-03 13:35:00.335121893 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import http.client as http_client
|
||||
import json
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_identity_pool.py google_auth-2.42.1/tests/test_identity_pool.py
|
||||
--- google_auth-2.42.1.orig/tests/test_identity_pool.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_identity_pool.py 2025-11-03 13:35:00.338319381 +0100
|
||||
@@ -19,7 +19,7 @@
|
||||
import os
|
||||
import urllib
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
from OpenSSL import crypto
|
||||
import pytest # type: ignore
|
||||
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_impersonated_credentials.py google_auth-2.42.1/tests/test_impersonated_credentials.py
|
||||
--- google_auth-2.42.1.orig/tests/test_impersonated_credentials.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_impersonated_credentials.py 2025-11-03 13:35:00.362320085 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
import json
|
||||
import os
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_jwt.py google_auth-2.42.1/tests/test_jwt.py
|
||||
--- google_auth-2.42.1.orig/tests/test_jwt.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_jwt.py 2025-11-03 13:35:00.340842665 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import json
|
||||
import os
|
||||
@@ -307,21 +319,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_impersonated_credentials.py google_
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_jwt.py google_auth-2.35.0/tests/test_jwt.py
|
||||
--- google_auth-2.35.0.orig/tests/test_jwt.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_jwt.py 2024-10-01 14:18:31.389502192 +0000
|
||||
@@ -17,7 +17,7 @@
|
||||
import json
|
||||
import os
|
||||
|
||||
-import mock
|
||||
+from unittest import mock
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_metrics.py google_auth-2.35.0/tests/test_metrics.py
|
||||
--- google_auth-2.35.0.orig/tests/test_metrics.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_metrics.py 2024-10-01 14:18:31.397502242 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_metrics.py google_auth-2.42.1/tests/test_metrics.py
|
||||
--- google_auth-2.42.1.orig/tests/test_metrics.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_metrics.py 2025-11-03 13:35:00.287107573 +0100
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
import platform
|
||||
@@ -331,9 +331,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_metrics.py google_auth-2.35.0/tests
|
||||
|
||||
from google.auth import metrics
|
||||
from google.auth import version
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test__oauth2client.py google_auth-2.35.0/tests/test__oauth2client.py
|
||||
--- google_auth-2.35.0.orig/tests/test__oauth2client.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test__oauth2client.py 2024-10-01 14:18:31.169500820 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test__oauth2client.py google_auth-2.42.1/tests/test__oauth2client.py
|
||||
--- google_auth-2.42.1.orig/tests/test__oauth2client.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test__oauth2client.py 2025-11-03 13:35:00.277733889 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import os
|
||||
import sys
|
||||
@@ -343,9 +343,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test__oauth2client.py google_auth-2.35.0
|
||||
import pytest # type: ignore
|
||||
|
||||
try:
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test_pluggable.py google_auth-2.35.0/tests/test_pluggable.py
|
||||
--- google_auth-2.35.0.orig/tests/test_pluggable.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test_pluggable.py 2024-10-01 14:18:31.417502367 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test_pluggable.py google_auth-2.42.1/tests/test_pluggable.py
|
||||
--- google_auth-2.42.1.orig/tests/test_pluggable.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test_pluggable.py 2025-11-03 13:35:00.364120814 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import os
|
||||
import subprocess
|
||||
@@ -355,9 +355,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test_pluggable.py google_auth-2.35.0/tes
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/test__refresh_worker.py google_auth-2.35.0/tests/test__refresh_worker.py
|
||||
--- google_auth-2.35.0.orig/tests/test__refresh_worker.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/test__refresh_worker.py 2024-10-01 14:18:31.173500845 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/test__refresh_worker.py google_auth-2.42.1/tests/test__refresh_worker.py
|
||||
--- google_auth-2.42.1.orig/tests/test__refresh_worker.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/test__refresh_worker.py 2025-11-03 13:35:00.355629928 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
import threading
|
||||
import time
|
||||
@@ -367,9 +367,9 @@ diff -Nru google_auth-2.35.0.orig/tests/test__refresh_worker.py google_auth-2.35
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _refresh_worker, credentials, exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/aio/test_aiohttp.py google_auth-2.35.0/tests/transport/aio/test_aiohttp.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/aio/test_aiohttp.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/aio/test_aiohttp.py 2024-10-01 14:18:31.453502591 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/aio/test_aiohttp.py google_auth-2.42.1/tests/transport/aio/test_aiohttp.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/aio/test_aiohttp.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/aio/test_aiohttp.py 2025-11-03 13:35:00.258192110 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import asyncio
|
||||
|
||||
@@ -379,9 +379,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/aio/test_aiohttp.py google_aut
|
||||
import pytest # type: ignore
|
||||
import pytest_asyncio # type: ignore
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/aio/test_sessions.py google_auth-2.35.0/tests/transport/aio/test_sessions.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/aio/test_sessions.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/aio/test_sessions.py 2024-10-01 14:18:31.465502666 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/aio/test_sessions.py google_auth-2.42.1/tests/transport/aio/test_sessions.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/aio/test_sessions.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/aio/test_sessions.py 2025-11-03 13:35:00.256483423 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
from typing import AsyncGenerator
|
||||
|
||||
@@ -391,9 +391,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/aio/test_sessions.py google_au
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth.aio.credentials import AnonymousCredentials
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test__custom_tls_signer.py google_auth-2.35.0/tests/transport/test__custom_tls_signer.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test__custom_tls_signer.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test__custom_tls_signer.py 2024-10-01 14:18:31.493502841 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test__custom_tls_signer.py google_auth-2.42.1/tests/transport/test__custom_tls_signer.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test__custom_tls_signer.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test__custom_tls_signer.py 2025-11-03 13:35:00.259865401 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import ctypes
|
||||
import os
|
||||
@@ -403,9 +403,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/test__custom_tls_signer.py goo
|
||||
import pytest # type: ignore
|
||||
from requests.packages.urllib3.util.ssl_ import create_urllib3_context # type: ignore
|
||||
import urllib3.contrib.pyopenssl # type: ignore
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test_grpc.py google_auth-2.35.0/tests/transport/test_grpc.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test_grpc.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test_grpc.py 2024-10-01 14:18:31.529503065 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test_grpc.py google_auth-2.42.1/tests/transport/test_grpc.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test_grpc.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test_grpc.py 2025-11-03 13:35:00.261543389 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import os
|
||||
import time
|
||||
@@ -415,9 +415,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/test_grpc.py google_auth-2.35.
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import _helpers
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test__mtls_helper.py google_auth-2.35.0/tests/transport/test__mtls_helper.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test__mtls_helper.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test__mtls_helper.py 2024-10-01 14:18:31.513502965 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test__mtls_helper.py google_auth-2.42.1/tests/transport/test__mtls_helper.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test__mtls_helper.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test__mtls_helper.py 2025-11-03 13:35:00.264970803 +0100
|
||||
@@ -15,7 +15,7 @@
|
||||
import os
|
||||
import re
|
||||
@@ -427,9 +427,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/test__mtls_helper.py google_au
|
||||
from OpenSSL import crypto
|
||||
import pytest # type: ignore
|
||||
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test_mtls.py google_auth-2.35.0/tests/transport/test_mtls.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test_mtls.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test_mtls.py 2024-10-01 14:18:31.549503190 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test_mtls.py google_auth-2.42.1/tests/transport/test_mtls.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test_mtls.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test_mtls.py 2025-11-03 13:35:00.266704768 +0100
|
||||
@@ -12,7 +12,7 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
@@ -439,9 +439,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/test_mtls.py google_auth-2.35.
|
||||
import pytest # type: ignore
|
||||
|
||||
from google.auth import exceptions
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test_requests.py google_auth-2.35.0/tests/transport/test_requests.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test_requests.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test_requests.py 2024-10-01 14:18:31.561503265 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test_requests.py google_auth-2.42.1/tests/transport/test_requests.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test_requests.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test_requests.py 2025-11-03 13:35:00.269317359 +0100
|
||||
@@ -19,7 +19,7 @@
|
||||
import sys
|
||||
|
||||
@@ -451,9 +451,9 @@ diff -Nru google_auth-2.35.0.orig/tests/transport/test_requests.py google_auth-2
|
||||
import OpenSSL
|
||||
import pytest # type: ignore
|
||||
import requests
|
||||
diff -Nru google_auth-2.35.0.orig/tests/transport/test_urllib3.py google_auth-2.35.0/tests/transport/test_urllib3.py
|
||||
--- google_auth-2.35.0.orig/tests/transport/test_urllib3.py 2024-09-19 18:05:39.000000000 +0000
|
||||
+++ google_auth-2.35.0/tests/transport/test_urllib3.py 2024-10-01 14:18:31.573503339 +0000
|
||||
diff -Nru google_auth-2.42.1.orig/tests/transport/test_urllib3.py google_auth-2.42.1/tests/transport/test_urllib3.py
|
||||
--- google_auth-2.42.1.orig/tests/transport/test_urllib3.py 2025-10-30 17:37:50.000000000 +0100
|
||||
+++ google_auth-2.42.1/tests/transport/test_urllib3.py 2025-11-03 13:35:00.254724090 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -1,3 +1,105 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 27 09:54:02 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add upstream pytest9.patch to fix tests
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 10 09:08:33 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.43.0
|
||||
* Add public wrapper for _mtls_helper.check_use_client_cert which
|
||||
enables mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set,
|
||||
when the MWID/X.509 cert sources detected (#1859) Add public
|
||||
wrapper for check_use_client_cert which enables mTLS if
|
||||
GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, when the MWID/X.509
|
||||
cert sources detected. Also, fix check_use_client_cert to return
|
||||
boolean value.
|
||||
Change #1848 added the check_use_client_cert method that helps know
|
||||
if client cert should be used for mTLS connection. However, that was
|
||||
in a private class, thus, created a public wrapper of the same function
|
||||
so that it can be used by python Client Libraries. Also, updated
|
||||
check_use_client_cert to return a boolean value instead of existing
|
||||
string value for better readability and future scope.
|
||||
* Enable mTLS if GOOGLE_API_USE_CLIENT_CERTIFICATE is not set, if
|
||||
the MWID/X.509 cert sources detected (#1848) The Python SDK will
|
||||
use a hybrid approach for mTLS enablement:
|
||||
* If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is set
|
||||
(either true or false), the SDK will respect that setting. This is
|
||||
necessary for test scenarios and users who need to explicitly control
|
||||
mTLS behavior.
|
||||
* If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not
|
||||
set, the SDK will automatically enable mTLS only if it detects Managed
|
||||
Workload Identity (MWID) or X.509 Workforce Identity Federation (WIF)
|
||||
certificate sources. In other cases where the variable is not set, mTLS
|
||||
will remain disabled.
|
||||
** This change also adds the helper method `check_use_client_cert` and
|
||||
it's unit test, which will be used for checking the criteria for setting
|
||||
the mTLS to true
|
||||
** This change is only for Auth-Library, other changes will be created
|
||||
for Client-Library use-cases.
|
||||
* onboard `google-auth` to librarian (#1838) This PR onboards `google-auth`
|
||||
library to the Librarian system.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 3 12:35:20 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.42.1
|
||||
* Catch ValueError for json.loads() (#1842)
|
||||
- from version 2.42.0
|
||||
* Add trust boundary support for external accounts. (#1809)
|
||||
* Read scopes from ADC json for impersoanted cred (#1820)
|
||||
- Refresh python-google-auth-no-mock.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 9 14:33:25 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.41.1
|
||||
* Suppress deprecation warning for ADC (#1815)
|
||||
- from version 2.41.0
|
||||
* Add support for cachetools 6.0 (#1773)
|
||||
* Add trust boundary support for service accounts and impersonation. (#1778)
|
||||
* Deprecating load_credentials_from_dict (58b66ec)
|
||||
* Fix type error in credentials.py for python 3.7 and 3.8 (#1805)
|
||||
* Update user guide to include x509 feature. (#1802)
|
||||
- Refresh patches for new version
|
||||
* python-google-auth-no-mock.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 13 15:25:25 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to pip-based build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 11 08:59:54 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.40.3
|
||||
* Auth fetch token from default endpoint (#1779)
|
||||
* Remove unnecessary call to mds service (#1769)
|
||||
* Retry 504 errors (#1767)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 30 06:54:17 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.40.2
|
||||
* Remove sync response logs in AuthorizedSession
|
||||
* Update test to consider new error message from cryptography (#1765)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 19 13:09:42 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 2.40.1
|
||||
* Disable logging response body for async logs (#1756)
|
||||
- from version 2.40.0
|
||||
* Add request response logging to auth (#1678)
|
||||
* Correct webauthn JSON parsing to be compliant with standard. (#1658)
|
||||
- from version 2.39.0
|
||||
* Adds GA support for X.509 workload identity federation (#1695)
|
||||
* Add impersonated SA via local ADC support for fetch_id_token (#1740)
|
||||
* Add missing packaging dependency for feature requiring urllib3 (#1732)
|
||||
* Add request timeout for MDS requests (#1699)
|
||||
* Explicitly declare support for Python 3.13 ([#1741)
|
||||
- Refresh python-google-auth-no-mock.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 5 13:24:01 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-google-auth
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,14 +18,16 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-google-auth
|
||||
Version: 2.38.0
|
||||
Version: 2.43.0
|
||||
Release: 0
|
||||
Summary: Google Authentication Library
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/googleapis/google-auth-library-python
|
||||
Source: https://files.pythonhosted.org/packages/source/g/google-auth/google_auth-%{version}.tar.gz
|
||||
Source: https://files.pythonhosted.org/packages/source/g/google_auth/google_auth-%{version}.tar.gz
|
||||
# https://github.com/googleapis/google-auth-library-python/issues/1055
|
||||
Patch1: python-google-auth-no-mock.patch
|
||||
# PATCH-FIX-UPSTREAM https://github.com/googleapis/google-auth-library-python/pull/1868 chore: update secret and fix pytest issue
|
||||
Patch2: pytest9.patch
|
||||
BuildRequires: %{python_module Flask}
|
||||
BuildRequires: %{python_module PyJWT >= 2.0}
|
||||
BuildRequires: %{python_module aiohttp >= 3.6.2}
|
||||
@@ -33,6 +35,7 @@ BuildRequires: %{python_module aioresponses}
|
||||
BuildRequires: %{python_module cachetools >= 2.0.0}
|
||||
BuildRequires: %{python_module cryptography}
|
||||
BuildRequires: %{python_module freezegun}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module pyOpenSSL >= 22.0.0}
|
||||
BuildRequires: %{python_module pyasn1-modules >= 0.2.1}
|
||||
BuildRequires: %{python_module pytest-asyncio}
|
||||
@@ -44,6 +47,7 @@ BuildRequires: %{python_module responses}
|
||||
BuildRequires: %{python_module rsa >= 3.1.4}
|
||||
BuildRequires: %{python_module setuptools >= 40.3.0}
|
||||
BuildRequires: %{python_module urllib3}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-cachetools >= 2.0.0
|
||||
@@ -66,10 +70,10 @@ This library simplifies using Google’s various server-to-server authentication
|
||||
%autosetup -p1 -n google_auth-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
|
||||
Reference in New Issue
Block a user