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-12-21 20:42:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-nginx (Old)
 and      /work/SRC/openSUSE:Factory/.python-certbot-nginx.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certbot-nginx"

Tue Dec 21 20:42:25 2021 rev:32 rq:941957 version:1.22.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-certbot-nginx/python-certbot-nginx.changes    
    2021-12-21 18:41:37.357927213 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-certbot-nginx.new.2520/python-certbot-nginx.changes
      2021-12-21 20:42:31.554020037 +0100
@@ -1,0 +2,6 @@
+Tue Dec 21 19:25:52 UTC 2021 - Danilo Spinella <[email protected]>
+
+- update to version 1.22.0
+  * sync with the main certbot package
+
+-------------------------------------------------------------------

Old:
----
  certbot-nginx-1.20.0.tar.gz

New:
----
  certbot-nginx-1.22.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-certbot-nginx.spec ++++++
--- /var/tmp/diff_new_pack.cEEq0m/_old  2021-12-21 20:42:32.022020291 +0100
+++ /var/tmp/diff_new_pack.cEEq0m/_new  2021-12-21 20:42:32.026020293 +0100
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-certbot-nginx
-Version:        1.20.0
+Version:        1.22.0
 Release:        0
 Summary:        Nginx plugin for Certbot
 License:        Apache-2.0

++++++ certbot-nginx-1.20.0.tar.gz -> certbot-nginx-1.22.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-1.20.0/PKG-INFO 
new/certbot-nginx-1.22.0/PKG-INFO
--- old/certbot-nginx-1.20.0/PKG-INFO   2021-10-05 15:53:07.641754200 +0200
+++ new/certbot-nginx-1.22.0/PKG-INFO   2021-12-07 23:02:55.822584600 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-nginx
-Version: 1.20.0
+Version: 1.22.0
 Summary: Nginx plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
@@ -18,6 +18,7 @@
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
 Classifier: Topic :: Internet :: WWW/HTTP
 Classifier: Topic :: Security
 Classifier: Topic :: System :: Installation/Setup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.20.0/certbot_nginx/_internal/configurator.py 
new/certbot-nginx-1.22.0/certbot_nginx/_internal/configurator.py
--- old/certbot-nginx-1.20.0/certbot_nginx/_internal/configurator.py    
2021-10-05 15:52:55.000000000 +0200
+++ new/certbot-nginx-1.22.0/certbot_nginx/_internal/configurator.py    
2021-12-07 23:02:45.000000000 +0100
@@ -1,6 +1,5 @@
 # pylint: disable=too-many-lines
 """Nginx Configuration"""
-from distutils.version import LooseVersion
 import logging
 import re
 import socket
@@ -21,7 +20,6 @@
 from acme import crypto_util as acme_crypto_util
 from certbot import crypto_util
 from certbot import errors
-from certbot import interfaces
 from certbot import util
 from certbot.display import util as display_util
 from certbot.compat import os
@@ -43,7 +41,7 @@
 logger = logging.getLogger(__name__)
 
 
-class NginxConfigurator(common.Installer, interfaces.Authenticator):
+class NginxConfigurator(common.Configurator):
     """Nginx configurator.
 
     .. todo:: Add proper support for comments in the config. Currently,
@@ -142,8 +140,9 @@
         # For a complete history, check out 
https://github.com/certbot/certbot/issues/7322
 
         use_tls13 = self.version >= (1, 13, 0)
+        min_openssl_version = util.parse_loose_version('1.0.2l')
         session_tix_off = self.version >= (1, 5, 9) and self.openssl_version 
and\
-            LooseVersion(self.openssl_version) >= LooseVersion('1.0.2l')
+            util.parse_loose_version(self.openssl_version) >= 
min_openssl_version
 
         if use_tls13:
             if session_tix_off:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.20.0/certbot_nginx/_internal/http_01.py 
new/certbot-nginx-1.22.0/certbot_nginx/_internal/http_01.py
--- old/certbot-nginx-1.20.0/certbot_nginx/_internal/http_01.py 2021-10-05 
15:52:55.000000000 +0200
+++ new/certbot-nginx-1.22.0/certbot_nginx/_internal/http_01.py 2021-12-07 
23:02:45.000000000 +0100
@@ -4,6 +4,7 @@
 import logging
 from typing import List
 from typing import Optional
+from typing import TYPE_CHECKING
 
 from acme import challenges
 from certbot import achallenges
@@ -13,6 +14,9 @@
 from certbot_nginx._internal import nginxparser
 from certbot_nginx._internal import obj
 
+if TYPE_CHECKING:
+    from certbot_nginx._internal.configurator import NginxConfigurator
+
 logger = logging.getLogger(__name__)
 
 
@@ -36,8 +40,9 @@
 
     """
 
-    def __init__(self, configurator):
+    def __init__(self, configurator: "NginxConfigurator") -> None:
         super().__init__(configurator)
+        self.configurator: "NginxConfigurator"
         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.20.0/certbot_nginx.egg-info/PKG-INFO 
new/certbot-nginx-1.22.0/certbot_nginx.egg-info/PKG-INFO
--- old/certbot-nginx-1.20.0/certbot_nginx.egg-info/PKG-INFO    2021-10-05 
15:53:07.000000000 +0200
+++ new/certbot-nginx-1.22.0/certbot_nginx.egg-info/PKG-INFO    2021-12-07 
23:02:55.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-nginx
-Version: 1.20.0
+Version: 1.22.0
 Summary: Nginx plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
@@ -18,6 +18,7 @@
 Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
 Classifier: Topic :: Internet :: WWW/HTTP
 Classifier: Topic :: Security
 Classifier: Topic :: System :: Installation/Setup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-1.20.0/certbot_nginx.egg-info/requires.txt 
new/certbot-nginx-1.22.0/certbot_nginx.egg-info/requires.txt
--- old/certbot-nginx-1.20.0/certbot_nginx.egg-info/requires.txt        
2021-10-05 15:53:07.000000000 +0200
+++ new/certbot-nginx-1.22.0/certbot_nginx.egg-info/requires.txt        
2021-12-07 23:02:55.000000000 +0100
@@ -1,5 +1,5 @@
-acme>=1.20.0
-certbot>=1.20.0
+acme>=1.22.0
+certbot>=1.22.0
 PyOpenSSL>=17.3.0
 pyparsing>=2.2.0
 setuptools>=39.0.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-1.20.0/setup.py 
new/certbot-nginx-1.22.0/setup.py
--- old/certbot-nginx-1.20.0/setup.py   2021-10-05 15:52:56.000000000 +0200
+++ new/certbot-nginx-1.22.0/setup.py   2021-12-07 23:02:46.000000000 +0100
@@ -1,7 +1,7 @@
 from setuptools import find_packages
 from setuptools import setup
 
-version = '1.20.0'
+version = '1.22.0'
 
 install_requires = [
     # We specify the minimum acme and certbot version as the current plugin
@@ -35,6 +35,7 @@
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
         'Topic :: Internet :: WWW/HTTP',
         'Topic :: Security',
         'Topic :: System :: Installation/Setup',

Reply via email to