Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-certbot-nginx for openSUSE:Factory checked in at 2021-05-12 19:32:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-certbot-nginx (Old) and /work/SRC/openSUSE:Factory/.python-certbot-nginx.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-nginx" Wed May 12 19:32:40 2021 rev:27 rq:892490 version:1.15.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-certbot-nginx/python-certbot-nginx.changes 2021-04-15 16:58:32.130780459 +0200 +++ /work/SRC/openSUSE:Factory/.python-certbot-nginx.new.2988/python-certbot-nginx.changes 2021-05-12 19:33:15.310792424 +0200 @@ -1,0 +2,6 @@ +Wed May 12 12:08:17 UTC 2021 - Mark??ta Machov?? <mmach...@suse.com> + +- update to version 1.15.0 + * sync with the main certbot package + +------------------------------------------------------------------- Old: ---- certbot-nginx-1.14.0.tar.gz New: ---- certbot-nginx-1.15.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-certbot-nginx.spec ++++++ --- /var/tmp/diff_new_pack.agDNgh/_old 2021-05-12 19:33:15.750790667 +0200 +++ /var/tmp/diff_new_pack.agDNgh/_new 2021-05-12 19:33:15.754790650 +0200 @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 Name: python-certbot-nginx -Version: 1.14.0 +Version: 1.15.0 Release: 0 Summary: Nginx plugin for Certbot License: Apache-2.0 ++++++ certbot-nginx-1.14.0.tar.gz -> certbot-nginx-1.15.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/PKG-INFO new/certbot-nginx-1.15.0/PKG-INFO --- old/certbot-nginx-1.14.0/PKG-INFO 2021-04-06 19:17:14.374538700 +0200 +++ new/certbot-nginx-1.15.0/PKG-INFO 2021-05-04 20:48:48.385637800 +0200 @@ -1,10 +1,10 @@ Metadata-Version: 1.2 Name: certbot-nginx -Version: 1.14.0 +Version: 1.15.0 Summary: Nginx plugin for Certbot Home-page: https://github.com/letsencrypt/letsencrypt Author: Certbot Project -Author-email: client-...@letsencrypt.org +Author-email: certbot-...@eff.org License: Apache License 2.0 Description: UNKNOWN Platform: UNKNOWN diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/certbot_nginx/_internal/configurator.py new/certbot-nginx-1.15.0/certbot_nginx/_internal/configurator.py --- old/certbot-nginx-1.14.0/certbot_nginx/_internal/configurator.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/certbot_nginx/_internal/configurator.py 2021-05-04 20:48:08.000000000 +0200 @@ -102,7 +102,7 @@ """ version = kwargs.pop("version", None) openssl_version = kwargs.pop("openssl_version", None) - super(NginxConfigurator, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) # Files to save self.save_notes = "" @@ -1110,7 +1110,7 @@ :raises .errors.PluginError: If unable to recover the configuration """ - super(NginxConfigurator, self).recovery_routine() + super().recovery_routine() self.new_vhost = None self.parser.load() @@ -1133,7 +1133,7 @@ the function is unable to correctly revert the configuration """ - super(NginxConfigurator, self).rollback_checkpoints(rollback) + super().rollback_checkpoints(rollback) self.new_vhost = None self.parser.load() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/certbot_nginx/_internal/http_01.py new/certbot-nginx-1.15.0/certbot_nginx/_internal/http_01.py --- old/certbot-nginx-1.14.0/certbot_nginx/_internal/http_01.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/certbot_nginx/_internal/http_01.py 2021-05-04 20:48:08.000000000 +0200 @@ -37,7 +37,7 @@ """ def __init__(self, configurator): - super(NginxHttp01, self).__init__(configurator) + super().__init__(configurator) self.challenge_conf = os.path.join( configurator.config.config_dir, "le_http_01_cert_challenge.conf") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/certbot_nginx/_internal/obj.py new/certbot-nginx-1.15.0/certbot_nginx/_internal/obj.py --- old/certbot-nginx-1.14.0/certbot_nginx/_internal/obj.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/certbot_nginx/_internal/obj.py 2021-05-04 20:48:08.000000000 +0200 @@ -35,7 +35,7 @@ CANONICAL_UNSPECIFIED_ADDRESS = UNSPECIFIED_IPV4_ADDRESSES[0] def __init__(self, host, port, ssl, default, ipv6, ipv6only): - super(Addr, self).__init__((host, port)) + super().__init__((host, port)) self.ssl = ssl self.default = default self.ipv6 = ipv6 @@ -120,7 +120,7 @@ def __hash__(self): # pylint: disable=useless-super-delegation # Python 3 requires explicit overridden for __hash__ # See certbot-apache/certbot_apache/_internal/obj.py for more information - return super(Addr, self).__hash__() + return super().__hash__() def super_eq(self, other): """Check ip/port equality, with IPv6 support. @@ -132,7 +132,7 @@ self.tup[1]), self.ipv6) == \ common.Addr((other.CANONICAL_UNSPECIFIED_ADDRESS, other.tup[1]), other.ipv6) - return super(Addr, self).__eq__(other) + return super().__eq__(other) def __eq__(self, other): if isinstance(other, self.__class__): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/certbot_nginx/_internal/parser_obj.py new/certbot-nginx-1.15.0/certbot_nginx/_internal/parser_obj.py --- old/certbot-nginx-1.14.0/certbot_nginx/_internal/parser_obj.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/certbot_nginx/_internal/parser_obj.py 2021-05-04 20:48:08.000000000 +0200 @@ -122,7 +122,7 @@ precede any more statements. """ def __init__(self, parent=None): - super(Statements, self).__init__(parent) + super().__init__(parent) self._trailing_whitespace = None # ======== Begin overridden functions @@ -167,7 +167,7 @@ def dump(self, include_spaces=False): """ Dumps this object by first dumping each statement, then appending its trailing whitespace (if `include_spaces` is set) """ - data = super(Statements, self).dump(include_spaces) + data = super().dump(include_spaces) if include_spaces and self._trailing_whitespace is not None: return data + [self._trailing_whitespace] return data @@ -271,7 +271,7 @@ contents = [["\n ", "content", " ", "1"], ["\n ", "content", " ", "2"], "\n"] """ def __init__(self, parent=None): - super(Block, self).__init__(parent) + super().__init__(parent) self.names: Sentence = None self.contents: Block = None diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/certbot_nginx.egg-info/PKG-INFO new/certbot-nginx-1.15.0/certbot_nginx.egg-info/PKG-INFO --- old/certbot-nginx-1.14.0/certbot_nginx.egg-info/PKG-INFO 2021-04-06 19:17:14.000000000 +0200 +++ new/certbot-nginx-1.15.0/certbot_nginx.egg-info/PKG-INFO 2021-05-04 20:48:48.000000000 +0200 @@ -1,10 +1,10 @@ Metadata-Version: 1.2 Name: certbot-nginx -Version: 1.14.0 +Version: 1.15.0 Summary: Nginx plugin for Certbot Home-page: https://github.com/letsencrypt/letsencrypt Author: Certbot Project -Author-email: client-...@letsencrypt.org +Author-email: certbot-...@eff.org License: Apache License 2.0 Description: UNKNOWN Platform: UNKNOWN diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/setup.py new/certbot-nginx-1.15.0/setup.py --- old/certbot-nginx-1.14.0/setup.py 2021-04-06 19:17:02.000000000 +0200 +++ new/certbot-nginx-1.15.0/setup.py 2021-05-04 20:48:10.000000000 +0200 @@ -1,7 +1,7 @@ from setuptools import find_packages from setuptools import setup -version = '1.14.0' +version = '1.15.0' # Remember to update local-oldest-requirements.txt when changing the minimum # acme/certbot version. @@ -20,7 +20,7 @@ description="Nginx plugin for Certbot", url='https://github.com/letsencrypt/letsencrypt', author="Certbot Project", - author_email='client-...@letsencrypt.org', + author_email='certbot-...@eff.org', license='Apache License 2.0', python_requires='>=3.6', classifiers=[ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/tests/configurator_test.py new/certbot-nginx-1.15.0/tests/configurator_test.py --- old/certbot-nginx-1.14.0/tests/configurator_test.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/tests/configurator_test.py 2021-05-04 20:48:08.000000000 +0200 @@ -26,7 +26,7 @@ def setUp(self): - super(NginxConfiguratorTest, self).setUp() + super().setUp() self.config = self.get_nginx_configurator( self.config_path, self.config_dir, self.work_dir, self.logs_dir) @@ -954,7 +954,7 @@ """Test that the options-ssl-nginx.conf file is installed and updated properly.""" def setUp(self): - super(InstallSslOptionsConfTest, self).setUp() + super().setUp() self.config = self.get_nginx_configurator( self.config_path, self.config_dir, self.work_dir, self.logs_dir) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/tests/display_ops_test.py new/certbot-nginx-1.15.0/tests/display_ops_test.py --- old/certbot-nginx-1.14.0/tests/display_ops_test.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/tests/display_ops_test.py 2021-05-04 20:48:08.000000000 +0200 @@ -12,7 +12,7 @@ """Tests for certbot_nginx._internal.display_ops.select_vhost_multiple.""" def setUp(self): - super(SelectVhostMultiTest, self).setUp() + super().setUp() nparser = parser.NginxParser(self.config_path) self.vhosts = nparser.get_vhosts() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/tests/http_01_test.py new/certbot-nginx-1.15.0/tests/http_01_test.py --- old/certbot-nginx-1.14.0/tests/http_01_test.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/tests/http_01_test.py 2021-05-04 20:48:08.000000000 +0200 @@ -51,7 +51,7 @@ ] def setUp(self): - super(HttpPerformTest, self).setUp() + super().setUp() config = self.get_nginx_configurator( self.config_path, self.config_dir, self.work_dir, self.logs_dir) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot-nginx-1.14.0/tests/test_util.py new/certbot-nginx-1.15.0/tests/test_util.py --- old/certbot-nginx-1.14.0/tests/test_util.py 2021-04-06 19:17:00.000000000 +0200 +++ new/certbot-nginx-1.15.0/tests/test_util.py 2021-05-04 20:48:08.000000000 +0200 @@ -22,7 +22,7 @@ class NginxTest(test_util.ConfigTestCase): def setUp(self): - super(NginxTest, self).setUp() + super().setUp() self.configuration = self.config self.config = None