Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-certbot-apache for openSUSE:Factory checked in at 2025-08-13 16:30:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-certbot-apache (Old) and /work/SRC/openSUSE:Factory/.python-certbot-apache.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-apache" Wed Aug 13 16:30:34 2025 rev:48 rq:1299120 version:4.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-certbot-apache/python-certbot-apache.changes 2025-06-16 12:26:26.060158344 +0200 +++ /work/SRC/openSUSE:Factory/.python-certbot-apache.new.1085/python-certbot-apache.changes 2025-08-13 16:32:12.816657635 +0200 @@ -1,0 +2,6 @@ +Tue Aug 12 16:02:42 UTC 2025 - Markéta Machová <mmach...@suse.com> + +- update to version 4.2.0 + * sync with the main certbot package + +------------------------------------------------------------------- Old: ---- certbot_apache-4.1.1.tar.gz New: ---- certbot_apache-4.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-certbot-apache.spec ++++++ --- /var/tmp/diff_new_pack.qnwhAb/_old 2025-08-13 16:32:15.576773011 +0200 +++ /var/tmp/diff_new_pack.qnwhAb/_new 2025-08-13 16:32:15.592773681 +0200 @@ -18,7 +18,7 @@ %{?sle15_python_module_pythons} Name: python-certbot-apache -Version: 4.1.1 +Version: 4.2.0 Release: 0 Summary: Apache plugin for Certbot License: Apache-2.0 ++++++ certbot_apache-4.1.1.tar.gz -> certbot_apache-4.2.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/PKG-INFO new/certbot_apache-4.2.0/PKG-INFO --- old/certbot_apache-4.1.1/PKG-INFO 2025-06-12 20:08:37.152964000 +0200 +++ new/certbot_apache-4.2.0/PKG-INFO 2025-08-05 17:57:50.676868400 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: certbot-apache -Version: 4.1.1 +Version: 4.2.0 Summary: Apache plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project @@ -26,8 +26,8 @@ Classifier: Topic :: Utilities Requires-Python: >=3.9.2 License-File: LICENSE.txt -Requires-Dist: acme>=4.1.1 -Requires-Dist: certbot>=4.1.1 +Requires-Dist: acme>=4.2.0 +Requires-Dist: certbot>=4.2.0 Requires-Dist: python-augeas Provides-Extra: dev Requires-Dist: apacheconfig>=0.3.2; extra == "dev" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/setup.py new/certbot_apache-4.2.0/setup.py --- old/certbot_apache-4.1.1/setup.py 2025-06-12 20:08:35.000000000 +0200 +++ new/certbot_apache-4.2.0/setup.py 2025-08-05 17:57:49.000000000 +0200 @@ -1,7 +1,7 @@ from setuptools import find_packages from setuptools import setup -version = '4.1.1' +version = '4.2.0' install_requires = [ # We specify the minimum acme and certbot version as the current plugin diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/augeas_lens/httpd.aug new/certbot_apache-4.2.0/src/certbot_apache/_internal/augeas_lens/httpd.aug --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/augeas_lens/httpd.aug 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/augeas_lens/httpd.aug 2025-08-05 17:57:48.000000000 +0200 @@ -157,7 +157,7 @@ * not need to have space between them, but bare arguments do. * * Apache apparently is also happy if the last argument starts with a double - * quote, but has no corresponding closing duoble quote, which is what + * quote, but has no corresponding closing double quote, which is what * arg_dir_msg handles *) let dir_args = diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/configurator.py new/certbot_apache-4.2.0/src/certbot_apache/_internal/configurator.py --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/configurator.py 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/configurator.py 2025-08-05 17:57:48.000000000 +0200 @@ -166,6 +166,10 @@ openssl_version = self.openssl_version(warn_on_no_mod_ssl) if self.version < (2, 4, 11) or not openssl_version or \ util.parse_loose_version(openssl_version) < min_openssl_version: + logger.warning('Certbot has detected that apache version < 2.4.11 or compiled against ' + 'openssl < 1.0.2l. Since these are deprecated, the configuration file being ' + 'installed at %s will not receive future updates. To get the latest configuration ' + 'version, update apache.', self.mod_ssl_conf) return apache_util.find_ssl_apache_conf("old") return apache_util.find_ssl_apache_conf("current") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/constants.py new/certbot_apache-4.2.0/src/certbot_apache/_internal/constants.py --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/constants.py 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/constants.py 2025-08-05 17:57:48.000000000 +0200 @@ -34,6 +34,7 @@ '34783b9e2210f5c4a23bced2dfd7ec289834716673354ed7c7abf69fe30192a3', '61466bc2f98a623c02be8a5ee916ead1655b0ce883bdc936692076ea499ff5ce', '3fd812e3e87fe5c645d3682a511b2a06c8286f19594f28e280f17cd6af1301b5', + '27155797e160fe43b6951354a0a0ca4d829e9e605b3b41fc223c20bf2f6cb3c6', ] """SHA256 hashes of the contents of previous versions of all versions of MOD_SSL_CONF_SRC""" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/parser.py new/certbot_apache-4.2.0/src/certbot_apache/_internal/parser.py --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/parser.py 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/parser.py 2025-08-05 17:57:48.000000000 +0200 @@ -418,7 +418,7 @@ def add_dir( self, aug_conf_path: Optional[str], directive: Optional[str], args: Union[List[str], str] ) -> None: - """Appends directive to the end fo the file given by aug_conf_path. + """Appends directive to the end of the file given by aug_conf_path. .. note:: Not added to AugeasConfigurator because it may depend on the lens diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/configurator_test.py new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/configurator_test.py --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/configurator_test.py 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/configurator_test.py 2025-08-05 17:57:48.000000000 +0200 @@ -1091,7 +1091,7 @@ # pylint: disable=protected-access http_vhost = self.config._get_http_vhost(ssl_vhost) - # Create an old (previously suppoorted) https redirectoin rewrite rule + # Create an old (previously supported) https redirectoin rewrite rule self.config.parser.add_dir( http_vhost.path, "RewriteRule", ["^", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/centos7_apache/apache/httpd/conf.d/ssl.conf new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/centos7_apache/apache/httpd/conf.d/ssl.conf --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/centos7_apache/apache/httpd/conf.d/ssl.conf 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/centos7_apache/apache/httpd/conf.d/ssl.conf 2025-08-05 17:57:48.000000000 +0200 @@ -110,7 +110,7 @@ # certificate chain for the server certificate. Alternatively # the referenced file can be the same as SSLCertificateFile # when the CA certificates are directly appended to the server -# certificate for convinience. +# certificate for convenience. #SSLCertificateChainFile /etc/pki/tls/certs/server-chain.crt # Certificate Authority (CA): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/apache2/vhosts.d/00_default_ssl_vhost.conf new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/apache2/vhosts.d/00_default_ssl_vhost.conf --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/apache2/vhosts.d/00_default_ssl_vhost.conf 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/apache2/vhosts.d/00_default_ssl_vhost.conf 2025-08-05 17:57:48.000000000 +0200 @@ -58,7 +58,7 @@ # PEM encoded CA certificates which form the certificate chain for the # server certificate. Alternatively the referenced file can be the same as # SSLCertificateFile when the CA certificates are directly appended to the - # server certificate for convinience. + # server certificate for convenience. #SSLCertificateChainFile /etc/ssl/apache2/ca.crt ## Certificate Authority (CA): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/conf.d/apache2 new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/conf.d/apache2 --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/conf.d/apache2 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/tests/testdata/gentoo_apache/apache/conf.d/apache2 2025-08-05 17:57:48.000000000 +0200 @@ -26,7 +26,7 @@ # # The following two options provide the default virtual host for the HTTP and # HTTPS protocol. YOU NEED TO ENABLE AT LEAST ONE OF THEM, otherwise apache -# will not listen for incomming connections on the approriate port. +# will not listen for incoming connections on the appropriate port. # # DEFAULT_VHOST Enables name-based virtual hosts, with the default # virtual host being in /var/www/localhost/htdocs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache/_internal/tls_configs/old-options-ssl-apache.conf new/certbot_apache-4.2.0/src/certbot_apache/_internal/tls_configs/old-options-ssl-apache.conf --- old/certbot_apache-4.1.1/src/certbot_apache/_internal/tls_configs/old-options-ssl-apache.conf 2025-06-12 20:08:34.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache/_internal/tls_configs/old-options-ssl-apache.conf 2025-08-05 17:57:48.000000000 +0200 @@ -3,6 +3,10 @@ # updates. Instead, Certbot will print and log an error message with a path to # the up-to-date file that you will need to refer to when manually updating # this file. Contents are based on https://ssl-config.mozilla.org +# +# This file is installed when apache < 2.4.11 or compiled against openssl < 1.0.2l. Since these +# are deprecated, it is no longer receiving updates. To get the latest configuration +# version, update apache. SSLEngine on diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache.egg-info/PKG-INFO new/certbot_apache-4.2.0/src/certbot_apache.egg-info/PKG-INFO --- old/certbot_apache-4.1.1/src/certbot_apache.egg-info/PKG-INFO 2025-06-12 20:08:37.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache.egg-info/PKG-INFO 2025-08-05 17:57:50.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: certbot-apache -Version: 4.1.1 +Version: 4.2.0 Summary: Apache plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project @@ -26,8 +26,8 @@ Classifier: Topic :: Utilities Requires-Python: >=3.9.2 License-File: LICENSE.txt -Requires-Dist: acme>=4.1.1 -Requires-Dist: certbot>=4.1.1 +Requires-Dist: acme>=4.2.0 +Requires-Dist: certbot>=4.2.0 Requires-Dist: python-augeas Provides-Extra: dev Requires-Dist: apacheconfig>=0.3.2; extra == "dev" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/certbot_apache-4.1.1/src/certbot_apache.egg-info/requires.txt new/certbot_apache-4.2.0/src/certbot_apache.egg-info/requires.txt --- old/certbot_apache-4.1.1/src/certbot_apache.egg-info/requires.txt 2025-06-12 20:08:37.000000000 +0200 +++ new/certbot_apache-4.2.0/src/certbot_apache.egg-info/requires.txt 2025-08-05 17:57:50.000000000 +0200 @@ -1,5 +1,5 @@ -acme>=4.1.1 -certbot>=4.1.1 +acme>=4.2.0 +certbot>=4.2.0 python-augeas [dev]