Hello community,

here is the log from the commit of package python-certbot-dns-rfc2136 for 
openSUSE:Factory checked in at 2019-06-03 18:50:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-rfc2136 (Old)
 and      /work/SRC/openSUSE:Factory/.python-certbot-dns-rfc2136.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-certbot-dns-rfc2136"

Mon Jun  3 18:50:40 2019 rev:6 rq:705632 version:0.34.2

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-certbot-dns-rfc2136/python-certbot-dns-rfc2136.changes
    2019-03-19 10:00:54.859920896 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-certbot-dns-rfc2136.new.5148/python-certbot-dns-rfc2136.changes
  2019-06-03 18:50:41.536530540 +0200
@@ -1,0 +2,6 @@
+Sun May 19 12:34:34 UTC 2019 - Dirk Mueller <[email protected]>
+
+- update to 0.34.2:
+  * sync with main package
+
+-------------------------------------------------------------------

Old:
----
  certbot-dns-rfc2136-0.32.0.tar.gz

New:
----
  certbot-dns-rfc2136-0.34.2.tar.gz

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

Other differences:
------------------
++++++ python-certbot-dns-rfc2136.spec ++++++
--- /var/tmp/diff_new_pack.ZJD3Jq/_old  2019-06-03 18:50:42.032530369 +0200
+++ /var/tmp/diff_new_pack.ZJD3Jq/_new  2019-06-03 18:50:42.036530369 +0200
@@ -18,21 +18,21 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-certbot-dns-rfc2136
-Version:        0.32.0
+Version:        0.34.2
 Release:        0
 Summary:        RFC 2136 DNS Authenticator plugin for Certbot
 License:        Apache-2.0
 Group:          Development/Languages/Python
 Url:            https://github.com/certbot/certbot
 Source:         
https://files.pythonhosted.org/packages/source/c/certbot-dns-rfc2136/certbot-dns-rfc2136-%{version}.tar.gz
-BuildRequires:  %{python_module certbot >= 0.21.1}
+BuildRequires:  %{python_module certbot >= 0.34.0}
 BuildRequires:  %{python_module dnspython}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:       python-acme >= 0.21.1
-Requires:       python-certbot >= 0.21.1
+Requires:       python-acme >= 0.29.0
+Requires:       python-certbot >= 0.34.0
 Requires:       python-dnspython
 Requires:       python-zope.interface
 BuildArch:      noarch

++++++ certbot-dns-rfc2136-0.32.0.tar.gz -> certbot-dns-rfc2136-0.34.2.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-rfc2136-0.32.0/PKG-INFO 
new/certbot-dns-rfc2136-0.34.2/PKG-INFO
--- old/certbot-dns-rfc2136-0.32.0/PKG-INFO     2019-03-06 21:18:48.000000000 
+0100
+++ new/certbot-dns-rfc2136-0.34.2/PKG-INFO     2019-05-07 21:18:10.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-rfc2136
-Version: 0.32.0
+Version: 0.34.2
 Summary: RFC 2136 DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136/dns_rfc2136.py 
new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136/dns_rfc2136.py
--- old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136/dns_rfc2136.py   
2019-03-06 21:18:08.000000000 +0100
+++ new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136/dns_rfc2136.py   
2019-05-07 21:17:32.000000000 +0200
@@ -57,7 +57,7 @@
     def _validate_algorithm(self, credentials):
         algorithm = credentials.conf('algorithm')
         if algorithm:
-            if not self.ALGORITHMS.get(algorithm):
+            if not self.ALGORITHMS.get(algorithm.upper()):
                 raise errors.PluginError("Unknown algorithm: 
{0}.".format(algorithm))
 
     def _setup_credentials(self):
@@ -220,4 +220,3 @@
         except Exception as e:
             raise errors.PluginError('Encountered error when making query: {0}'
                                      .format(e))
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136/dns_rfc2136_test.py 
new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136/dns_rfc2136_test.py
--- old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136/dns_rfc2136_test.py      
2019-03-06 21:18:08.000000000 +0100
+++ new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136/dns_rfc2136_test.py      
2019-05-07 21:17:32.000000000 +0200
@@ -1,6 +1,5 @@
 """Tests for certbot_dns_rfc2136.dns_rfc2136."""
 
-import os
 import unittest
 
 import dns.flags
@@ -9,6 +8,7 @@
 import mock
 
 from certbot import errors
+from certbot.compat import os
 from certbot.plugins import dns_test_common
 from certbot.plugins.dns_test_common import DOMAIN
 from certbot.tests import util as test_util
@@ -64,7 +64,7 @@
 
     def test_valid_algorithm_passes(self):
         config = VALID_CONFIG.copy()
-        config["rfc2136_algorithm"] = "HMAC-SHA512"
+        config["rfc2136_algorithm"] = "HMAC-sha512"
         dns_test_common.write(config, self.config.rfc2136_credentials)
 
         self.auth.perform([self.achall])
@@ -171,7 +171,7 @@
         result = self.rfc2136_client._query_soa(DOMAIN)
 
         query_mock.assert_called_with(mock.ANY, SERVER, port=PORT)
-        self.assertTrue(result == True)
+        self.assertTrue(result)
 
     @mock.patch("dns.query.udp")
     def test_query_soa_not_found(self, query_mock):
@@ -181,7 +181,7 @@
         result = self.rfc2136_client._query_soa(DOMAIN)
 
         query_mock.assert_called_with(mock.ANY, SERVER, port=PORT)
-        self.assertTrue(result == False)
+        self.assertFalse(result)
 
     @mock.patch("dns.query.udp")
     def test_query_soa_wraps_errors(self, query_mock):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136.egg-info/PKG-INFO 
new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136.egg-info/PKG-INFO
--- old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136.egg-info/PKG-INFO        
2019-03-06 21:18:48.000000000 +0100
+++ new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136.egg-info/PKG-INFO        
2019-05-07 21:18:10.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: certbot-dns-rfc2136
-Version: 0.32.0
+Version: 0.34.2
 Summary: RFC 2136 DNS Authenticator plugin for Certbot
 Home-page: https://github.com/certbot/certbot
 Author: Certbot Project
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136.egg-info/requires.txt 
new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136.egg-info/requires.txt
--- old/certbot-dns-rfc2136-0.32.0/certbot_dns_rfc2136.egg-info/requires.txt    
2019-03-06 21:18:48.000000000 +0100
+++ new/certbot-dns-rfc2136-0.34.2/certbot_dns_rfc2136.egg-info/requires.txt    
2019-05-07 21:18:10.000000000 +0200
@@ -1,5 +1,5 @@
-acme>=0.21.1
-certbot>=0.21.1
+acme>=0.29.0
+certbot>=0.34.0
 dnspython
 mock
 setuptools
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certbot-dns-rfc2136-0.32.0/setup.py 
new/certbot-dns-rfc2136-0.34.2/setup.py
--- old/certbot-dns-rfc2136-0.32.0/setup.py     2019-03-06 21:18:09.000000000 
+0100
+++ new/certbot-dns-rfc2136-0.34.2/setup.py     2019-05-07 21:17:33.000000000 
+0200
@@ -2,13 +2,13 @@
 from setuptools import find_packages
 
 
-version = '0.32.0'
+version = '0.34.2'
 
 # Remember to update local-oldest-requirements.txt when changing the minimum
 # acme/certbot version.
 install_requires = [
-    'acme>=0.21.1',
-    'certbot>=0.21.1',
+    'acme>=0.29.0',
+    'certbot>=0.34.0',
     'dnspython',
     'mock',
     'setuptools',


Reply via email to