summaryrefslogtreecommitdiffstats
path: root/contrib/python/google-auth/py3
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-06-05 11:21:54 +0300
committerrobot-piglet <[email protected]>2025-06-05 11:38:09 +0300
commitaccdddc4c1f6fbeb44638093a22fb6d677a4e805 (patch)
tree3886c43a99ac18142185e740f6c181e7760d3bc6 /contrib/python/google-auth/py3
parentbb54c2065e7e6650defae4b2ecba4ec34d407182 (diff)
Intermediate changes
commit_hash:40bf61b82ccf579324ce46b351b55852673bc7db
Diffstat (limited to 'contrib/python/google-auth/py3')
-rw-r--r--contrib/python/google-auth/py3/.dist-info/METADATA2
-rw-r--r--contrib/python/google-auth/py3/google/auth/transport/requests.py1
-rw-r--r--contrib/python/google-auth/py3/google/auth/version.py2
-rw-r--r--contrib/python/google-auth/py3/tests/test__service_account_info.py2
-rw-r--r--contrib/python/google-auth/py3/ya.make2
5 files changed, 4 insertions, 5 deletions
diff --git a/contrib/python/google-auth/py3/.dist-info/METADATA b/contrib/python/google-auth/py3/.dist-info/METADATA
index 6d1bff83523..b7b535632a5 100644
--- a/contrib/python/google-auth/py3/.dist-info/METADATA
+++ b/contrib/python/google-auth/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: google-auth
-Version: 2.40.1
+Version: 2.40.2
Summary: Google Authentication Library
Home-page: https://github.com/googleapis/google-auth-library-python
Author: Google Cloud Platform
diff --git a/contrib/python/google-auth/py3/google/auth/transport/requests.py b/contrib/python/google-auth/py3/google/auth/transport/requests.py
index 0540746f894..2753912c6d9 100644
--- a/contrib/python/google-auth/py3/google/auth/transport/requests.py
+++ b/contrib/python/google-auth/py3/google/auth/transport/requests.py
@@ -545,7 +545,6 @@ class AuthorizedSession(requests.Session):
timeout=timeout,
**kwargs
)
- _helpers.response_log(_LOGGER, response)
remaining_time = guard.remaining_timeout
# If the response indicated that the credentials needed to be
diff --git a/contrib/python/google-auth/py3/google/auth/version.py b/contrib/python/google-auth/py3/google/auth/version.py
index ee0bb12609d..13257b95f80 100644
--- a/contrib/python/google-auth/py3/google/auth/version.py
+++ b/contrib/python/google-auth/py3/google/auth/version.py
@@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__ = "2.40.1"
+__version__ = "2.40.2"
diff --git a/contrib/python/google-auth/py3/tests/test__service_account_info.py b/contrib/python/google-auth/py3/tests/test__service_account_info.py
index 2335765bb42..bf98247969e 100644
--- a/contrib/python/google-auth/py3/tests/test__service_account_info.py
+++ b/contrib/python/google-auth/py3/tests/test__service_account_info.py
@@ -54,7 +54,7 @@ def test_from_dict_bad_private_key():
with pytest.raises(ValueError) as excinfo:
_service_account_info.from_dict(info)
- assert excinfo.match(r"key")
+ assert excinfo.match(r"(?i)(key|PEM)")
def test_from_dict_bad_format():
diff --git a/contrib/python/google-auth/py3/ya.make b/contrib/python/google-auth/py3/ya.make
index 83c9200ad11..b1b28af6a87 100644
--- a/contrib/python/google-auth/py3/ya.make
+++ b/contrib/python/google-auth/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(2.40.1)
+VERSION(2.40.2)
LICENSE(Apache-2.0)