Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-google-auth for openSUSE:Factory checked in at 2025-05-31 19:14:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-google-auth (Old) and /work/SRC/openSUSE:Factory/.python-google-auth.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-google-auth" Sat May 31 19:14:38 2025 rev:55 rq:1281290 version:2.40.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-google-auth/python-google-auth.changes 2025-05-23 14:27:39.341221248 +0200 +++ /work/SRC/openSUSE:Factory/.python-google-auth.new.16005/python-google-auth.changes 2025-05-31 19:14:44.049470015 +0200 @@ -1,0 +2,7 @@ +Fri May 30 06:54:17 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 2.40.2 + * Remove sync response logs in AuthorizedSession + * Update test to consider new error message from cryptography (#1765) + +------------------------------------------------------------------- Old: ---- google_auth-2.40.1.tar.gz New: ---- google_auth-2.40.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-google-auth.spec ++++++ --- /var/tmp/diff_new_pack.VwveNt/_old 2025-05-31 19:14:44.685496299 +0200 +++ /var/tmp/diff_new_pack.VwveNt/_new 2025-05-31 19:14:44.685496299 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-google-auth -Version: 2.40.1 +Version: 2.40.2 Release: 0 Summary: Google Authentication Library License: Apache-2.0 ++++++ google_auth-2.40.1.tar.gz -> google_auth-2.40.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/google_auth-2.40.1/PKG-INFO new/google_auth-2.40.2/PKG-INFO --- old/google_auth-2.40.1/PKG-INFO 2025-05-07 03:04:52.288112000 +0200 +++ new/google_auth-2.40.2/PKG-INFO 2025-05-21 20:04:56.007751500 +0200 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/google_auth-2.40.1/google/auth/transport/requests.py new/google_auth-2.40.2/google/auth/transport/requests.py --- old/google_auth-2.40.1/google/auth/transport/requests.py 2025-05-07 03:00:59.000000000 +0200 +++ new/google_auth-2.40.2/google/auth/transport/requests.py 2025-05-21 20:00:57.000000000 +0200 @@ -545,7 +545,6 @@ timeout=timeout, **kwargs ) - _helpers.response_log(_LOGGER, response) remaining_time = guard.remaining_timeout # If the response indicated that the credentials needed to be diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/google_auth-2.40.1/google/auth/version.py new/google_auth-2.40.2/google/auth/version.py --- old/google_auth-2.40.1/google/auth/version.py 2025-05-07 03:00:59.000000000 +0200 +++ new/google_auth-2.40.2/google/auth/version.py 2025-05-21 20:00:57.000000000 +0200 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/google_auth-2.40.1/google_auth.egg-info/PKG-INFO new/google_auth-2.40.2/google_auth.egg-info/PKG-INFO --- old/google_auth-2.40.1/google_auth.egg-info/PKG-INFO 2025-05-07 03:04:52.000000000 +0200 +++ new/google_auth-2.40.2/google_auth.egg-info/PKG-INFO 2025-05-21 20:04:55.000000000 +0200 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/google_auth-2.40.1/tests/test__service_account_info.py new/google_auth-2.40.2/tests/test__service_account_info.py --- old/google_auth-2.40.1/tests/test__service_account_info.py 2025-05-07 03:00:59.000000000 +0200 +++ new/google_auth-2.40.2/tests/test__service_account_info.py 2025-05-21 20:00:57.000000000 +0200 @@ -53,7 +53,7 @@ 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():