Hello community,

here is the log from the commit of package python-certbot-apache for 
openSUSE:Factory checked in at 2019-11-15 00:21:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-apache (Old)
 and      /work/SRC/openSUSE:Factory/.python-certbot-apache.new.26869 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certbot-apache"

Fri Nov 15 00:21:41 2019 rev:14 rq:748665 version:0.40.1

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-certbot-apache/python-certbot-apache.changes  
    2019-10-31 18:14:02.633934690 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-certbot-apache.new.26869/python-certbot-apache.changes
   2019-11-15 00:21:42.819920639 +0100
@@ -1,0 +2,6 @@
+Thu Nov 14 11:54:06 UTC 2019 - Marketa Calabkova <[email protected]>
+
+- update to version 0.40.1
+  * Sync with main certbot package.
+
+-------------------------------------------------------------------

Old:
----
  certbot-apache-0.39.0.tar.gz

New:
----
  certbot-apache-0.40.1.tar.gz

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

Other differences:
------------------
++++++ python-certbot-apache.spec ++++++
--- /var/tmp/diff_new_pack.mSo9nV/_old  2019-11-15 00:21:43.247920490 +0100
+++ /var/tmp/diff_new_pack.mSo9nV/_new  2019-11-15 00:21:43.251920489 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-certbot-apache
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-certbot-apache
-Version:        0.39.0
+Version:        0.40.1
 Release:        0
 Summary:        Apache plugin for Certbot
 License:        Apache-2.0

++++++ certbot-apache-0.39.0.tar.gz -> certbot-apache-0.40.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/PKG-INFO 
new/certbot-apache-0.40.1/PKG-INFO
--- old/certbot-apache-0.39.0/PKG-INFO  2019-10-01 21:48:50.000000000 +0200
+++ new/certbot-apache-0.40.1/PKG-INFO  2019-11-06 03:24:57.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-apache
-Version: 0.39.0
+Version: 0.40.1
 Summary: Apache plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/certbot_apache/configurator.py 
new/certbot-apache-0.40.1/certbot_apache/configurator.py
--- old/certbot-apache-0.39.0/certbot_apache/configurator.py    2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache/configurator.py    2019-11-06 
03:24:51.000000000 +0100
@@ -174,8 +174,6 @@
                  "(Only Ubuntu/Debian currently)")
         add("ctl", default=DEFAULTS["ctl"],
             help="Full path to Apache control script")
-        util.add_deprecated_argument(
-            add, argument_name="init-script", nargs=1)
 
     def __init__(self, *args, **kwargs):
         """Initialize an Apache Configurator.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/certbot_apache/entrypoint.py 
new/certbot-apache-0.40.1/certbot_apache/entrypoint.py
--- old/certbot-apache-0.39.0/certbot_apache/entrypoint.py      2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache/entrypoint.py      2019-11-06 
03:24:51.000000000 +0100
@@ -16,6 +16,7 @@
 
 OVERRIDE_CLASSES = {
     "arch": override_arch.ArchConfigurator,
+    "cloudlinux": override_centos.CentOSConfigurator,
     "darwin": override_darwin.DarwinConfigurator,
     "debian": override_debian.DebianConfigurator,
     "ubuntu": override_debian.DebianConfigurator,
@@ -23,7 +24,9 @@
     "centos linux": override_centos.CentOSConfigurator,
     "fedora_old": override_centos.CentOSConfigurator,
     "fedora": override_fedora.FedoraConfigurator,
+    "linuxmint": override_debian.DebianConfigurator,
     "ol": override_centos.CentOSConfigurator,
+    "oracle": override_centos.CentOSConfigurator,
     "redhatenterpriseserver": override_centos.CentOSConfigurator,
     "red hat enterprise linux server": override_centos.CentOSConfigurator,
     "rhel": override_centos.CentOSConfigurator,
@@ -32,6 +35,7 @@
     "gentoo base system": override_gentoo.GentooConfigurator,
     "opensuse": override_suse.OpenSUSEConfigurator,
     "suse": override_suse.OpenSUSEConfigurator,
+    "sles": override_suse.OpenSUSEConfigurator,
     "scientific": override_centos.CentOSConfigurator,
     "scientific linux": override_centos.CentOSConfigurator,
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/certbot_apache/http_01.py 
new/certbot-apache-0.40.1/certbot_apache/http_01.py
--- old/certbot-apache-0.39.0/certbot_apache/http_01.py 2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache/http_01.py 2019-11-06 
03:24:51.000000000 +0100
@@ -14,7 +14,7 @@
 logger = logging.getLogger(__name__)
 
 
-class ApacheHttp01(common.TLSSNI01):
+class ApacheHttp01(common.ChallengePerformer):
     """Class that performs HTTP-01 challenges within the Apache 
configurator."""
 
     CONFIG_TEMPLATE22_PRE = """\
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-apache-0.39.0/certbot_apache/tests/configurator_test.py 
new/certbot-apache-0.40.1/certbot_apache/tests/configurator_test.py
--- old/certbot-apache-0.39.0/certbot_apache/tests/configurator_test.py 
2019-10-01 21:48:40.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache/tests/configurator_test.py 
2019-11-06 03:24:51.000000000 +0100
@@ -108,13 +108,9 @@
                 exp[k.replace("_", "-")] = ApacheConfigurator.OS_DEFAULTS[k]
         # Special cases
         exp["vhost-root"] = None
-        exp["init-script"] = None
 
         found = set()
         for call in mock_add.call_args_list:
-            # init-script is a special case: deprecated argument
-            if call[0][0] != "init-script":
-                self.assertEqual(exp[call[0][0]], call[1]['default'])
             found.add(call[0][0])
 
         # Make sure that all (and only) the expected values exist
@@ -1296,13 +1292,13 @@
         account_key = self.rsa512jwk
         achall1 = achallenges.KeyAuthorizationAnnotatedChallenge(
             challb=acme_util.chall_to_challb(
-                challenges.TLSSNI01(
+                challenges.HTTP01(
                     token=b"jIq_Xy1mXGN37tb4L6Xj_es58fW571ZNyXekdZzhh7Q"),
                 "pending"),
             domain="encryption-example.demo", account_key=account_key)
         achall2 = achallenges.KeyAuthorizationAnnotatedChallenge(
             challb=acme_util.chall_to_challb(
-                challenges.TLSSNI01(
+                challenges.HTTP01(
                     token=b"uqnaPzxtrndteOqtrXb0Asl5gOJfWAnnx6QJyvcmlDU"),
                 "pending"),
             domain="certbot.demo", account_key=account_key)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-apache-0.39.0/certbot_apache.egg-info/PKG-INFO 
new/certbot-apache-0.40.1/certbot_apache.egg-info/PKG-INFO
--- old/certbot-apache-0.39.0/certbot_apache.egg-info/PKG-INFO  2019-10-01 
21:48:50.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache.egg-info/PKG-INFO  2019-11-06 
03:24:57.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-apache
-Version: 0.39.0
+Version: 0.40.1
 Summary: Apache plugin for Certbot
 Home-page: https://github.com/letsencrypt/letsencrypt
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-apache-0.39.0/certbot_apache.egg-info/SOURCES.txt 
new/certbot-apache-0.40.1/certbot_apache.egg-info/SOURCES.txt
--- old/certbot-apache-0.39.0/certbot_apache.egg-info/SOURCES.txt       
2019-10-01 21:48:50.000000000 +0200
+++ new/certbot-apache-0.40.1/certbot_apache.egg-info/SOURCES.txt       
2019-11-06 03:24:57.000000000 +0100
@@ -199,5 +199,4 @@
 docs/api/configurator.rst
 docs/api/display_ops.rst
 docs/api/obj.rst
-docs/api/parser.rst
-docs/api/tls_sni_01.rst
\ No newline at end of file
+docs/api/parser.rst
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/docs/api/tls_sni_01.rst 
new/certbot-apache-0.40.1/docs/api/tls_sni_01.rst
--- old/certbot-apache-0.39.0/docs/api/tls_sni_01.rst   2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-apache-0.40.1/docs/api/tls_sni_01.rst   1970-01-01 
01:00:00.000000000 +0100
@@ -1,5 +0,0 @@
-:mod:`certbot_apache.tls_sni_01`
-------------------------------------
-
-.. automodule:: certbot_apache.tls_sni_01
-   :members:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-apache-0.39.0/setup.py 
new/certbot-apache-0.40.1/setup.py
--- old/certbot-apache-0.39.0/setup.py  2019-10-01 21:48:41.000000000 +0200
+++ new/certbot-apache-0.40.1/setup.py  2019-11-06 03:24:52.000000000 +0100
@@ -4,7 +4,7 @@
 import sys
 
 
-version = '0.39.0'
+version = '0.40.1'
 
 # Remember to update local-oldest-requirements.txt when changing the minimum
 # acme/certbot version.


Reply via email to