1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Merge pull request #831 from octodns/extract-ns1

Extract & shim Ns1Provider
This commit is contained in:
Ross McFarland
2022-01-05 07:37:50 -08:00
committed by GitHub
6 changed files with 20 additions and 4435 deletions

View File

@@ -7,6 +7,7 @@
https://github.com/octodns/octodns/pull/822 for more information. Providers
that have been extracted in this release include:
* [DnsimpleProvider](https://github.com/octodns/octodns-dnsimple/)
* [Ns1Provider](https://github.com/octodns/octodns-ns1/)
* [PowerDnsProvider](https://github.com/octodns/octodns-powerdns/)
* NS1 provider has received improvements to the dynamic record implementation.
As a result, if octoDNS is downgraded from this version, any dynamic records

View File

@@ -208,7 +208,7 @@ The table below lists the providers octoDNS supports. We're currently in the pro
| [GoogleCloudProvider](/octodns/provider/googlecloud.py) | | google-cloud-dns | A, AAAA, CAA, CNAME, MX, NAPTR, NS, PTR, SPF, SRV, TXT | No | |
| [HetznerProvider](/octodns/provider/hetzner.py) | | | A, AAAA, CAA, CNAME, MX, NS, SRV, TXT | No | |
| [MythicBeastsProvider](/octodns/provider/mythicbeasts.py) | | Mythic Beasts | A, AAAA, ALIAS, CNAME, MX, NS, SRV, SSHFP, CAA, TXT | No | |
| [Ns1Provider](/octodns/provider/ns1.py) | | ns1-python | All | Yes | |
| [Ns1Provider](https://github.com/octodns/octodns-ns1/) | [octodns_ns1](https://github.com/octodns/octodns-ns1/) | | | | |
| [OVH](/octodns/provider/ovh.py) | | ovh | A, AAAA, CAA, CNAME, MX, NAPTR, NS, PTR, SPF, SRV, SSHFP, TXT, DKIM | No | |
| [PowerDnsProvider](https://github.com/octodns/octodns-powerdns/) | [octodns_powerdns](https://github.com/octodns/octodns-powerdns/) | | | | |
| [Rackspace](/octodns/provider/rackspace.py) | | | A, AAAA, ALIAS, CNAME, MX, NS, PTR, SPF, TXT | No | |

View File

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ from __future__ import absolute_import, division, print_function, \
from logging import getLogger
logger = getLogger('PowerDNS')
logger = getLogger('PowerDns')
try:
logger.warn('octodns_powerdns shimmed. Update your provider class to '
'octodns_powerdns.PowerDnsProvider. '

View File

@@ -15,7 +15,6 @@ google-cloud-dns==0.32.0
jmespath==0.10.0
msrestazure==0.6.4
natsort==6.2.1
ns1-python==0.16.1
ovh==0.5.0
pycountry-convert==0.7.2
pycountry==20.7.3
@@ -23,4 +22,4 @@ python-dateutil==2.8.1
requests==2.25.1
s3transfer==0.3.3
setuptools==44.1.1
python-transip==0.5.0
python-transip==0.5.0

View File

File diff suppressed because it is too large Load Diff