Hello community,
here is the log from the commit of package python-certbot-dns-route53 for
openSUSE:Factory checked in at 2018-11-18 23:32:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-route53 (Old)
and /work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-dns-route53"
Sun Nov 18 23:32:59 2018 rev:2 rq:649943 version:0.28.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-certbot-dns-route53/python-certbot-dns-route53.changes
2018-09-26 16:11:17.463499140 +0200
+++
/work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new/python-certbot-dns-route53.changes
2018-11-18 23:33:08.049413319 +0100
@@ -1,0 +2,7 @@
+Fri Nov 16 17:48:30 UTC 2018 - Marketa Calabkova <[email protected]>
+
+- update to version 0.28.0
+ * Test fix for Route53 plugin to prevent boto3 making outgoing
+ connections.
+
+-------------------------------------------------------------------
Old:
----
certbot-dns-route53-0.26.1.tar.gz
New:
----
certbot-dns-route53-0.28.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-certbot-dns-route53.spec ++++++
--- /var/tmp/diff_new_pack.AEOP0n/_old 2018-11-18 23:33:09.217411917 +0100
+++ /var/tmp/diff_new_pack.AEOP0n/_new 2018-11-18 23:33:09.245411883 +0100
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-certbot-dns-route53
-Version: 0.26.1
+Version: 0.28.0
Release: 0
Summary: Route53 DNS Authenticator plugin for Certbot
License: Apache-2.0
++++++ certbot-dns-route53-0.26.1.tar.gz -> certbot-dns-route53-0.28.0.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-route53-0.26.1/PKG-INFO
new/certbot-dns-route53-0.28.0/PKG-INFO
--- old/certbot-dns-route53-0.26.1/PKG-INFO 2018-07-17 01:28:26.000000000
+0200
+++ new/certbot-dns-route53-0.28.0/PKG-INFO 2018-11-07 22:15:39.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: certbot-dns-route53
-Version: 0.26.1
+Version: 0.28.0
Summary: Route53 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-route53-0.26.1/certbot_dns_route53/dns_route53_test.py
new/certbot-dns-route53-0.28.0/certbot_dns_route53/dns_route53_test.py
--- old/certbot-dns-route53-0.26.1/certbot_dns_route53/dns_route53_test.py
2018-07-17 01:26:52.000000000 +0200
+++ new/certbot-dns-route53-0.28.0/certbot_dns_route53/dns_route53_test.py
2018-11-07 22:14:56.000000000 +0100
@@ -1,5 +1,6 @@
"""Tests for certbot_dns_route53.dns_route53.Authenticator"""
+import os
import unittest
import mock
@@ -20,8 +21,18 @@
self.config = mock.MagicMock()
+ # Set up dummy credentials for testing
+ os.environ["AWS_ACCESS_KEY_ID"] = "dummy_access_key"
+ os.environ["AWS_SECRET_ACCESS_KEY"] = "dummy_secret_access_key"
+
self.auth = Authenticator(self.config, "route53")
+ def tearDown(self):
+ # Remove the dummy credentials from env vars
+ del os.environ["AWS_ACCESS_KEY_ID"]
+ del os.environ["AWS_SECRET_ACCESS_KEY"]
+ super(AuthenticatorTest, self).tearDown()
+
def test_perform(self):
self.auth._change_txt_record = mock.MagicMock()
self.auth._wait_for_change = mock.MagicMock()
@@ -117,8 +128,18 @@
self.config = mock.MagicMock()
+ # Set up dummy credentials for testing
+ os.environ["AWS_ACCESS_KEY_ID"] = "dummy_access_key"
+ os.environ["AWS_SECRET_ACCESS_KEY"] = "dummy_secret_access_key"
+
self.client = Authenticator(self.config, "route53")
+ def tearDown(self):
+ # Remove the dummy credentials from env vars
+ del os.environ["AWS_ACCESS_KEY_ID"]
+ del os.environ["AWS_SECRET_ACCESS_KEY"]
+ super(ClientTest, self).tearDown()
+
def test_find_zone_id_for_domain(self):
self.client.r53.get_paginator = mock.MagicMock()
self.client.r53.get_paginator().paginate.return_value = [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-0.26.1/certbot_dns_route53.egg-info/PKG-INFO
new/certbot-dns-route53-0.28.0/certbot_dns_route53.egg-info/PKG-INFO
--- old/certbot-dns-route53-0.26.1/certbot_dns_route53.egg-info/PKG-INFO
2018-07-17 01:28:26.000000000 +0200
+++ new/certbot-dns-route53-0.28.0/certbot_dns_route53.egg-info/PKG-INFO
2018-11-07 22:15:39.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: certbot-dns-route53
-Version: 0.26.1
+Version: 0.28.0
Summary: Route53 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-route53-0.26.1/setup.py
new/certbot-dns-route53-0.28.0/setup.py
--- old/certbot-dns-route53-0.26.1/setup.py 2018-07-17 01:26:52.000000000
+0200
+++ new/certbot-dns-route53-0.28.0/setup.py 2018-11-07 22:14:57.000000000
+0100
@@ -1,7 +1,7 @@
from setuptools import setup
from setuptools import find_packages
-version = '0.26.1'
+version = '0.28.0'
# Remember to update local-oldest-requirements.txt when changing the minimum
# acme/certbot version.