diff -Nru python-certbot-dns-linode-0.28.0/certbot_dns_linode/dns_linode.py python-certbot-dns-linode-0.31.0/certbot_dns_linode/dns_linode.py --- python-certbot-dns-linode-0.28.0/certbot_dns_linode/dns_linode.py 2018-11-07 21:14:56.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/certbot_dns_linode/dns_linode.py 2019-02-07 21:20:29.000000000 +0000 @@ -54,6 +54,7 @@ def _get_linode_client(self): return _LinodeLexiconClient(self.credentials.conf('key')) + class _LinodeLexiconClient(dns_common_lexicon.LexiconClient): """ Encapsulates all communication with the Linode API. @@ -61,11 +62,13 @@ def __init__(self, api_key): super(_LinodeLexiconClient, self).__init__() - self.provider = linode.Provider({ - 'provider_name': 'linode', - 'auth_token': api_key + + config = dns_common_lexicon.build_lexicon_config('linode', {}, { + 'auth_token': api_key, }) + self.provider = linode.Provider(config) + def _handle_general_error(self, e, domain_name): if not str(e).startswith('Domain not found'): return errors.PluginError('Unexpected error determining zone identifier for {0}: {1}' diff -Nru python-certbot-dns-linode-0.28.0/certbot_dns_linode.egg-info/PKG-INFO python-certbot-dns-linode-0.31.0/certbot_dns_linode.egg-info/PKG-INFO --- python-certbot-dns-linode-0.28.0/certbot_dns_linode.egg-info/PKG-INFO 2018-11-07 21:15:28.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/certbot_dns_linode.egg-info/PKG-INFO 2019-02-07 21:21:05.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-linode -Version: 0.28.0 +Version: 0.31.0 Summary: Linode DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-linode-0.28.0/certbot_dns_linode.egg-info/requires.txt python-certbot-dns-linode-0.31.0/certbot_dns_linode.egg-info/requires.txt --- python-certbot-dns-linode-0.28.0/certbot_dns_linode.egg-info/requires.txt 2018-11-07 21:15:28.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/certbot_dns_linode.egg-info/requires.txt 2019-02-07 21:21:05.000000000 +0000 @@ -1,5 +1,5 @@ -acme>=0.21.1 -certbot>=0.21.1 +acme>=0.31.0 +certbot>=0.31.0 dns-lexicon>=2.2.1 mock setuptools diff -Nru python-certbot-dns-linode-0.28.0/debian/changelog python-certbot-dns-linode-0.31.0/debian/changelog --- python-certbot-dns-linode-0.28.0/debian/changelog 2018-11-07 23:52:19.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/debian/changelog 2019-02-10 01:15:27.000000000 +0000 @@ -1,3 +1,11 @@ +python-certbot-dns-linode (0.31.0-1) unstable; urgency=medium + + * New upstream version 0.31.0 + * Bump deps per upstream. + * Bump S-V; no changes needed. + + -- Harlan Lieberman-Berg Sat, 09 Feb 2019 20:15:27 -0500 + python-certbot-dns-linode (0.28.0-1) unstable; urgency=medium * New upstream version 0.28.0 diff -Nru python-certbot-dns-linode-0.28.0/debian/control python-certbot-dns-linode-0.31.0/debian/control --- python-certbot-dns-linode-0.28.0/debian/control 2018-11-07 23:52:07.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/debian/control 2019-02-10 01:15:15.000000000 +0000 @@ -6,15 +6,15 @@ Build-Depends: debhelper (>= 11~), dh-python, python3, - python3-acme (>= 0.21.1~), - python3-certbot (>= 0.21.1~), + python3-acme (>= 0.31.0~), + python3-certbot (>= 0.31.0~), python3-lexicon (>= 2.2.1~), python3-mock, python3-setuptools (>= 1.0), python3-sphinx (>= 1.3.1-1~), python3-sphinx-rtd-theme, python3-zope.interface -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: https://certbot.eff.org/ Vcs-Git: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-linode.git Vcs-Browser: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-linode diff -Nru python-certbot-dns-linode-0.28.0/PKG-INFO python-certbot-dns-linode-0.31.0/PKG-INFO --- python-certbot-dns-linode-0.28.0/PKG-INFO 2018-11-07 21:15:28.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/PKG-INFO 2019-02-07 21:21:05.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: certbot-dns-linode -Version: 0.28.0 +Version: 0.31.0 Summary: Linode DNS Authenticator plugin for Certbot Home-page: https://github.com/certbot/certbot Author: Certbot Project diff -Nru python-certbot-dns-linode-0.28.0/setup.py python-certbot-dns-linode-0.31.0/setup.py --- python-certbot-dns-linode-0.28.0/setup.py 2018-11-07 21:14:57.000000000 +0000 +++ python-certbot-dns-linode-0.31.0/setup.py 2019-02-07 21:20:31.000000000 +0000 @@ -1,14 +1,12 @@ -import sys - from setuptools import setup from setuptools import find_packages -version = '0.28.0' +version = '0.31.0' # Please update tox.ini when modifying dependency version requirements install_requires = [ - 'acme>=0.21.1', - 'certbot>=0.21.1', + 'acme>=0.31.0', + 'certbot>=0.31.0', 'dns-lexicon>=2.2.1', 'mock', 'setuptools',