Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-certbot-dns-route53 for
openSUSE:Factory checked in at 2022-04-08 22:46:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-certbot-dns-route53 (Old)
and /work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.1900 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-certbot-dns-route53"
Fri Apr 8 22:46:09 2022 rev:32 rq:967772 version:1.26.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-certbot-dns-route53/python-certbot-dns-route53.changes
2021-12-21 20:42:30.870019665 +0100
+++
/work/SRC/openSUSE:Factory/.python-certbot-dns-route53.new.1900/python-certbot-dns-route53.changes
2022-04-08 22:46:32.534590731 +0200
@@ -1,0 +2,6 @@
+Fri Apr 8 11:12:00 UTC 2022 - Mark??ta Machov?? <[email protected]>
+
+- update to version 1.26.0
+ * certbot-dns-route53 now requires boto3>=1.15.15.
+
+-------------------------------------------------------------------
Old:
----
certbot-dns-route53-1.22.0.tar.gz
New:
----
certbot-dns-route53-1.26.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-certbot-dns-route53.spec ++++++
--- /var/tmp/diff_new_pack.nQ5llc/_old 2022-04-08 22:46:33.086584605 +0200
+++ /var/tmp/diff_new_pack.nQ5llc/_new 2022-04-08 22:46:33.090584561 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-certbot-dns-route53
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,14 +19,14 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-certbot-dns-route53
-Version: 1.22.0
+Version: 1.26.0
Release: 0
Summary: Route53 DNS Authenticator plugin for Certbot
License: Apache-2.0
URL: https://github.com/certbot/certbot
Source:
https://files.pythonhosted.org/packages/source/c/certbot-dns-route53/certbot-dns-route53-%{version}.tar.gz
BuildRequires: %{python_module acme >= %{version}}
-BuildRequires: %{python_module boto3}
+BuildRequires: %{python_module boto3 >= 1.15.15}
BuildRequires: %{python_module certbot >= %{version}}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
@@ -34,7 +34,7 @@
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-acme >= %{version}
-Requires: python-boto3
+Requires: python-boto3 >= 1.15.15
Requires: python-certbot >= %{version}
Requires: python-zope.interface
BuildArch: noarch
++++++ certbot-dns-route53-1.22.0.tar.gz -> certbot-dns-route53-1.26.0.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-route53-1.22.0/MANIFEST.in
new/certbot-dns-route53-1.26.0/MANIFEST.in
--- old/certbot-dns-route53-1.22.0/MANIFEST.in 2021-12-07 23:02:45.000000000
+0100
+++ new/certbot-dns-route53-1.26.0/MANIFEST.in 2022-04-05 19:41:26.000000000
+0200
@@ -2,5 +2,6 @@
include README.rst
recursive-include docs *
recursive-include tests *
+include certbot_dns_route53/py.typed
global-exclude __pycache__
global-exclude *.py[cod]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-route53-1.22.0/PKG-INFO
new/certbot-dns-route53-1.26.0/PKG-INFO
--- old/certbot-dns-route53-1.22.0/PKG-INFO 2021-12-07 23:03:17.526681400
+0100
+++ new/certbot-dns-route53-1.26.0/PKG-INFO 2022-04-05 19:42:22.100479000
+0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: certbot-dns-route53
-Version: 1.22.0
+Version: 1.26.0
Summary: Route53 DNS Authenticator plugin for Certbot
Home-page: https://github.com/certbot/certbot
Author: Certbot Project
@@ -15,7 +15,6 @@
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
@@ -26,7 +25,7 @@
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
Provides-Extra: docs
License-File: LICENSE.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53/_internal/dns_route53.py
new/certbot-dns-route53-1.26.0/certbot_dns_route53/_internal/dns_route53.py
--- old/certbot-dns-route53-1.22.0/certbot_dns_route53/_internal/dns_route53.py
2021-12-07 23:02:45.000000000 +0100
+++ new/certbot-dns-route53-1.26.0/certbot_dns_route53/_internal/dns_route53.py
2022-04-05 19:41:26.000000000 +0200
@@ -2,6 +2,7 @@
import collections
import logging
import time
+from typing import Any
from typing import DefaultDict
from typing import Dict
from typing import List
@@ -10,7 +11,9 @@
from botocore.exceptions import ClientError
from botocore.exceptions import NoCredentialsError
+from acme.challenges import ChallengeResponse
from certbot import errors
+from certbot.achallenges import AnnotatedChallenge
from certbot.plugins import dns_common
logger = logging.getLogger(__name__)
@@ -32,21 +35,21 @@
"DNS).")
ttl = 10
- def __init__(self, *args, **kwargs):
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)
self.r53 = boto3.client("route53")
self._resource_records: DefaultDict[str, List[Dict[str, str]]] =
collections.defaultdict(list)
- def more_info(self): # pylint: disable=missing-function-docstring
+ def more_info(self) -> str:
return "Solve a DNS01 challenge using AWS Route53"
- def _setup_credentials(self):
+ def _setup_credentials(self) -> None:
pass
- def _perform(self, domain, validation_name, validation):
+ def _perform(self, domain: str, validation_name: str, validation: str) ->
None:
pass
- def perform(self, achalls):
+ def perform(self, achalls: List[AnnotatedChallenge]) ->
List[ChallengeResponse]:
self._attempt_cleanup = True
try:
@@ -64,13 +67,13 @@
raise errors.PluginError("\n".join([str(e), INSTRUCTIONS]))
return [achall.response(achall.account_key) for achall in achalls]
- def _cleanup(self, domain, validation_name, validation):
+ def _cleanup(self, domain: str, validation_name: str, validation: str) ->
None:
try:
self._change_txt_record("DELETE", validation_name, validation)
except (NoCredentialsError, ClientError) as e:
logger.debug('Encountered error during cleanup: %s', e,
exc_info=True)
- def _find_zone_id_for_domain(self, domain):
+ def _find_zone_id_for_domain(self, domain: str) -> str:
"""Find the zone id responsible a given FQDN.
That is, the id for the zone whose name is the longest parent of the
@@ -100,7 +103,7 @@
zones.sort(key=lambda z: len(z[0]), reverse=True)
return zones[0][1]
- def _change_txt_record(self, action, validation_domain_name, validation):
+ def _change_txt_record(self, action: str, validation_domain_name: str,
validation: str) -> str:
zone_id = self._find_zone_id_for_domain(validation_domain_name)
rrecords = self._resource_records[validation_domain_name]
@@ -136,7 +139,7 @@
)
return response["ChangeInfo"]["Id"]
- def _wait_for_change(self, change_id):
+ def _wait_for_change(self, change_id: str) -> None:
"""Wait for a change to be propagated to all Route53 DNS servers.
https://docs.aws.amazon.com/Route53/latest/APIReference/API_GetChange.html
"""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53/authenticator.py
new/certbot-dns-route53-1.26.0/certbot_dns_route53/authenticator.py
--- old/certbot-dns-route53-1.22.0/certbot_dns_route53/authenticator.py
2021-12-07 23:02:45.000000000 +0100
+++ new/certbot-dns-route53-1.26.0/certbot_dns_route53/authenticator.py
2022-04-05 19:41:26.000000000 +0200
@@ -1,4 +1,5 @@
"""Shim around `~certbot_dns_route53._internal.dns_route53` for backwards
compatibility."""
+from typing import Any
import warnings
from certbot_dns_route53._internal import dns_route53
@@ -10,7 +11,7 @@
hidden = True
- def __init__(self, *args, **kwargs):
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
warnings.warn("The 'authenticator' module was renamed 'dns_route53'",
DeprecationWarning)
super().__init__(*args, **kwargs)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/PKG-INFO
new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/PKG-INFO
--- old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/PKG-INFO
2021-12-07 23:03:17.000000000 +0100
+++ new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/PKG-INFO
2022-04-05 19:42:21.000000000 +0200
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: certbot-dns-route53
-Version: 1.22.0
+Version: 1.26.0
Summary: Route53 DNS Authenticator plugin for Certbot
Home-page: https://github.com/certbot/certbot
Author: Certbot Project
@@ -15,7 +15,6 @@
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
@@ -26,7 +25,7 @@
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
-Requires-Python: >=3.6
+Requires-Python: >=3.7
Provides-Extra: docs
License-File: LICENSE.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/SOURCES.txt
new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/SOURCES.txt
--- old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/SOURCES.txt
2021-12-07 23:03:17.000000000 +0100
+++ new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/SOURCES.txt
2022-04-05 19:42:22.000000000 +0200
@@ -1,10 +1,10 @@
LICENSE.txt
MANIFEST.in
README.rst
-setup.cfg
setup.py
certbot_dns_route53/__init__.py
certbot_dns_route53/authenticator.py
+certbot_dns_route53/py.typed
certbot_dns_route53.egg-info/PKG-INFO
certbot_dns_route53.egg-info/SOURCES.txt
certbot_dns_route53.egg-info/dependency_links.txt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/entry_points.txt
new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/entry_points.txt
---
old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/entry_points.txt
2021-12-07 23:03:17.000000000 +0100
+++
new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/entry_points.txt
2022-04-05 19:42:21.000000000 +0200
@@ -1,4 +1,3 @@
[certbot.plugins]
certbot-route53:auth = certbot_dns_route53.authenticator:Authenticator
dns-route53 = certbot_dns_route53._internal.dns_route53:Authenticator
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/requires.txt
new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/requires.txt
--- old/certbot-dns-route53-1.22.0/certbot_dns_route53.egg-info/requires.txt
2021-12-07 23:03:17.000000000 +0100
+++ new/certbot-dns-route53-1.26.0/certbot_dns_route53.egg-info/requires.txt
2022-04-05 19:42:22.000000000 +0200
@@ -1,7 +1,7 @@
-boto3
-setuptools>=39.0.1
-acme>=1.22.0
-certbot>=1.22.0
+boto3>=1.15.15
+setuptools>=41.6.0
+acme>=1.26.0
+certbot>=1.26.0
[docs]
Sphinx>=1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-route53-1.22.0/setup.cfg
new/certbot-dns-route53-1.26.0/setup.cfg
--- old/certbot-dns-route53-1.22.0/setup.cfg 2021-12-07 23:03:17.526681400
+0100
+++ new/certbot-dns-route53-1.26.0/setup.cfg 2022-04-05 19:42:22.100636000
+0200
@@ -1,6 +1,3 @@
-[bdist_wheel]
-universal = 1
-
[egg_info]
tag_build =
tag_date = 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/certbot-dns-route53-1.22.0/setup.py
new/certbot-dns-route53-1.26.0/setup.py
--- old/certbot-dns-route53-1.22.0/setup.py 2021-12-07 23:02:46.000000000
+0100
+++ new/certbot-dns-route53-1.26.0/setup.py 2022-04-05 19:41:27.000000000
+0200
@@ -4,11 +4,11 @@
from setuptools import find_packages
from setuptools import setup
-version = '1.22.0'
+version = '1.26.0'
install_requires = [
- 'boto3',
- 'setuptools>=39.0.1',
+ 'boto3>=1.15.15',
+ 'setuptools>=41.6.0',
]
if not os.environ.get('SNAP_BUILD'):
@@ -38,7 +38,7 @@
author="Certbot Project",
author_email='[email protected]',
license='Apache License 2.0',
- python_requires='>=3.6',
+ python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
@@ -47,7 +47,6 @@
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',