Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-mocket for openSUSE:Factory checked in at 2025-05-13 20:11:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-mocket (Old) and /work/SRC/openSUSE:Factory/.python-mocket.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-mocket" Tue May 13 20:11:42 2025 rev:40 rq:1276569 version:3.13.5 Changes: -------- --- /work/SRC/openSUSE:Factory/python-mocket/python-mocket.changes 2025-04-08 17:49:58.147321893 +0200 +++ /work/SRC/openSUSE:Factory/.python-mocket.new.30101/python-mocket.changes 2025-05-13 20:11:43.854604559 +0200 @@ -1,0 +2,9 @@ +Sun May 4 06:56:02 UTC 2025 - Sebastian Wagner <se...@sebix.at> + +- update to 3.13.5: + - First stable version after huge refactor + - Fix for caching when using uv + - Better conf for pytest-asyncio + - Fix test_truesendall failure on MacOS + +------------------------------------------------------------------- Old: ---- mocket-3.13.4.tar.gz New: ---- mocket-3.13.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-mocket.spec ++++++ --- /var/tmp/diff_new_pack.k8Y3lv/_old 2025-05-13 20:11:44.522632596 +0200 +++ /var/tmp/diff_new_pack.k8Y3lv/_new 2025-05-13 20:11:44.522632596 +0200 @@ -27,7 +27,7 @@ %{?sle15_python_module_pythons} Name: python-mocket%{psuffix} -Version: 3.13.4 +Version: 3.13.5 Release: 0 Summary: Python socket mock framework License: BSD-3-Clause ++++++ mocket-3.13.4.tar.gz -> mocket-3.13.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mocket-3.13.4/PKG-INFO new/mocket-3.13.5/PKG-INFO --- old/mocket-3.13.4/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 +++ new/mocket-3.13.5/PKG-INFO 2020-02-02 01:00:00.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: mocket -Version: 3.13.4 +Version: 3.13.5 Summary: Socket Mock Framework - for all kinds of socket animals, web-clients included - with gevent/asyncio/SSL support Project-URL: github, https://github.com/mindflayer/python-mocket Author-email: Giorgio Salluzzo <giorgio.sallu...@gmail.com> @@ -73,8 +73,8 @@ .. image:: https://github.com/mindflayer/python-mocket/actions/workflows/main.yml/badge.svg?branch=main :target: https://github.com/mindflayer/python-mocket/actions?query=workflow%3A%22Mocket%27s+CI%22 -.. image:: https://coveralls.io/repos/github/mindflayer/python-mocket/badge.svg?branch=main - :target: https://coveralls.io/github/mindflayer/python-mocket?branch=main +.. image:: https://codecov.io/github/mindflayer/python-mocket/graph/badge.svg?token=htRySebRBt + :target: https://codecov.io/github/mindflayer/python-mocket .. image:: https://app.codacy.com/project/badge/Grade/6327640518ce42adaf59368217028f14 :target: https://www.codacy.com/gh/mindflayer/python-mocket/dashboard diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mocket-3.13.4/README.rst new/mocket-3.13.5/README.rst --- old/mocket-3.13.4/README.rst 2020-02-02 01:00:00.000000000 +0100 +++ new/mocket-3.13.5/README.rst 2020-02-02 01:00:00.000000000 +0100 @@ -5,8 +5,8 @@ .. image:: https://github.com/mindflayer/python-mocket/actions/workflows/main.yml/badge.svg?branch=main :target: https://github.com/mindflayer/python-mocket/actions?query=workflow%3A%22Mocket%27s+CI%22 -.. image:: https://coveralls.io/repos/github/mindflayer/python-mocket/badge.svg?branch=main - :target: https://coveralls.io/github/mindflayer/python-mocket?branch=main +.. image:: https://codecov.io/github/mindflayer/python-mocket/graph/badge.svg?token=htRySebRBt + :target: https://codecov.io/github/mindflayer/python-mocket .. image:: https://app.codacy.com/project/badge/Grade/6327640518ce42adaf59368217028f14 :target: https://www.codacy.com/gh/mindflayer/python-mocket/dashboard diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mocket-3.13.4/mocket/__init__.py new/mocket-3.13.5/mocket/__init__.py --- old/mocket-3.13.4/mocket/__init__.py 2020-02-02 01:00:00.000000000 +0100 +++ new/mocket-3.13.5/mocket/__init__.py 2020-02-02 01:00:00.000000000 +0100 @@ -31,4 +31,4 @@ "FakeSSLContext", ) -__version__ = "3.13.4" +__version__ = "3.13.5" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mocket-3.13.4/mocket/socket.py new/mocket-3.13.5/mocket/socket.py --- old/mocket-3.13.4/mocket/socket.py 2020-02-02 01:00:00.000000000 +0100 +++ new/mocket-3.13.5/mocket/socket.py 2020-02-02 01:00:00.000000000 +0100 @@ -158,7 +158,7 @@ return self.gettimeout() is None def getsockname(self) -> _RetAddress: - return true_gethostbyname(self._address[0]), self._address[1] + return socket.gethostbyname(self._address[0]), self._address[1] def connect(self, address: Address) -> None: self._address = self._host, self._port = address diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mocket-3.13.4/pyproject.toml new/mocket-3.13.5/pyproject.toml --- old/mocket-3.13.4/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 +++ new/mocket-3.13.5/pyproject.toml 2020-02-02 01:00:00.000000000 +0100 @@ -88,7 +88,9 @@ testpaths = [ "tests", "mocket", ] -addopts = "--doctest-modules --cov=mocket --cov-report=term-missing --cov-append -v -x" +addopts = "--doctest-modules --cov=mocket --cov-report=xml --cov-report=term-missing --cov-append -v -x" +asyncio_default_fixture_loop_scope = "function" +asyncio_mode = "auto" [tool.ruff] src = ["mocket", "tests"] @@ -125,7 +127,6 @@ ] strict = true warn_unused_configs = true -suppress_unused_ignore = true ignore_missing_imports = true warn_redundant_casts = true warn_unused_ignores = true