Hello community,

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

Package is "python-certbot-nginx"

Fri Nov 15 00:30:03 2019 rev:14 rq:748677 version:0.40.1

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

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

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

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

Other differences:
------------------
++++++ python-certbot-nginx.spec ++++++
--- /var/tmp/diff_new_pack.UImixv/_old  2019-11-15 00:30:07.371745329 +0100
+++ /var/tmp/diff_new_pack.UImixv/_new  2019-11-15 00:30:07.375745327 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-certbot-nginx
 #
-# 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-nginx
-Version:        0.39.0
+Version:        0.40.1
 Release:        0
 Summary:        Nginx plugin for Certbot
 License:        Apache-2.0

++++++ certbot-nginx-0.39.0.tar.gz -> certbot-nginx-0.40.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-0.39.0/PKG-INFO 
new/certbot-nginx-0.40.1/PKG-INFO
--- old/certbot-nginx-0.39.0/PKG-INFO   2019-10-01 21:48:52.000000000 +0200
+++ new/certbot-nginx-0.40.1/PKG-INFO   2019-11-06 03:24:59.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-nginx
-Version: 0.39.0
+Version: 0.40.1
 Summary: Nginx 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-nginx-0.39.0/certbot_nginx/configurator.py 
new/certbot-nginx-0.40.1/certbot_nginx/configurator.py
--- old/certbot-nginx-0.39.0/certbot_nginx/configurator.py      2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx/configurator.py      2019-11-06 
03:24:51.000000000 +0100
@@ -1107,7 +1107,7 @@
     ###########################################################################
     def get_chall_pref(self, unused_domain):  # pylint: disable=no-self-use
         """Return list of challenge preferences."""
-        return [challenges.HTTP01, challenges.TLSSNI01]
+        return [challenges.HTTP01]
 
     # Entry point in main.py for performing challenges
     def perform(self, achalls):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-0.39.0/certbot_nginx/http_01.py 
new/certbot-nginx-0.40.1/certbot_nginx/http_01.py
--- old/certbot-nginx-0.39.0/certbot_nginx/http_01.py   2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx/http_01.py   2019-11-06 
03:24:51.000000000 +0100
@@ -29,10 +29,10 @@
     :param list indices: Meant to hold indices of challenges in a
         larger array. NginxHttp01 is capable of solving many challenges
         at once which causes an indexing issue within NginxConfigurator
-        who must return all responses in order.  Imagine NginxConfigurator
-        maintaining state about where all of the http-01 Challenges,
-        TLS-SNI-01 Challenges belong in the response array.  This is an
-        optional utility.
+        who must return all responses in order. Imagine
+        NginxConfigurator maintaining state about where all of the
+        challenges, possibly of different types, belong in the response
+        array. This is an optional utility.
 
     """
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-0.39.0/certbot_nginx/tests/configurator_test.py 
new/certbot-nginx-0.40.1/certbot_nginx/tests/configurator_test.py
--- old/certbot-nginx-0.39.0/certbot_nginx/tests/configurator_test.py   
2019-10-01 21:48:40.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx/tests/configurator_test.py   
2019-11-06 03:24:51.000000000 +0100
@@ -97,7 +97,7 @@
             errors.PluginError, self.config.enhance, 'myhost', 
'unknown_enhancement')
 
     def test_get_chall_pref(self):
-        self.assertEqual([challenges.HTTP01, challenges.TLSSNI01],
+        self.assertEqual([challenges.HTTP01],
                          self.config.get_chall_pref('myhost'))
 
     def test_save(self):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-nginx-0.39.0/certbot_nginx/tests/http_01_test.py 
new/certbot-nginx-0.40.1/certbot_nginx/tests/http_01_test.py
--- old/certbot-nginx-0.39.0/certbot_nginx/tests/http_01_test.py        
2019-10-01 21:48:40.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx/tests/http_01_test.py        
2019-11-06 03:24:51.000000000 +0100
@@ -73,11 +73,11 @@
             self.http01.add_chall(achall)
             acme_responses.append(achall.response(self.account_key))
 
-        sni_responses = self.http01.perform()
+        http_responses = self.http01.perform()
 
-        self.assertEqual(len(sni_responses), 4)
+        self.assertEqual(len(http_responses), 4)
         for i in six.moves.range(4):
-            self.assertEqual(sni_responses[i], acme_responses[i])
+            self.assertEqual(http_responses[i], acme_responses[i])
 
     def test_mod_config(self):
         self.http01.add_chall(self.achalls[0])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-0.39.0/certbot_nginx.egg-info/PKG-INFO 
new/certbot-nginx-0.40.1/certbot_nginx.egg-info/PKG-INFO
--- old/certbot-nginx-0.39.0/certbot_nginx.egg-info/PKG-INFO    2019-10-01 
21:48:52.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx.egg-info/PKG-INFO    2019-11-06 
03:24:59.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-nginx
-Version: 0.39.0
+Version: 0.40.1
 Summary: Nginx 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-nginx-0.39.0/certbot_nginx.egg-info/SOURCES.txt 
new/certbot-nginx-0.40.1/certbot_nginx.egg-info/SOURCES.txt
--- old/certbot-nginx-0.39.0/certbot_nginx.egg-info/SOURCES.txt 2019-10-01 
21:48:52.000000000 +0200
+++ new/certbot-nginx-0.40.1/certbot_nginx.egg-info/SOURCES.txt 2019-11-06 
03:24:59.000000000 +0100
@@ -72,5 +72,4 @@
 docs/_templates/.gitignore
 docs/api/nginxparser.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-nginx-0.39.0/docs/api/tls_sni_01.rst 
new/certbot-nginx-0.40.1/docs/api/tls_sni_01.rst
--- old/certbot-nginx-0.39.0/docs/api/tls_sni_01.rst    2019-10-01 
21:48:40.000000000 +0200
+++ new/certbot-nginx-0.40.1/docs/api/tls_sni_01.rst    1970-01-01 
01:00:00.000000000 +0100
@@ -1,5 +0,0 @@
-:mod:`certbot_nginx.tls_sni_01`
------------------------------------
-
-.. automodule:: certbot_nginx.tls_sni_01
-   :members:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-nginx-0.39.0/setup.py 
new/certbot-nginx-0.40.1/setup.py
--- old/certbot-nginx-0.39.0/setup.py   2019-10-01 21:48:41.000000000 +0200
+++ new/certbot-nginx-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