Skip to content

v3.3.13

Compare
Choose a tag to compare
@packagr-io-beta packagr-io-beta released this 05 Jan 00:35
Timestamp SHA Message Author
2020-01-05T00:35Z e76abc8 (v3.3.13) Automated packaging of release by Packagr packagr-io-beta
2020-01-05T00:21Z acb8e29 Merge 645953b into cd91153 Oldřich Jedlička
2020-01-05T00:21Z cd91153 Fix auto provider handling of parameters. (#473) The ConfigResolver.with_dict() function expects the dictionary to have
nested dictionaries instead of colon-separated keys. Fix the dictionary
creation by ensuring the nesting is done.

Steps to reproduce the problem:

lexicon auto --ovh-auth-entrypoint=ovh-eu list ovh.co.uk TXT

Throws error Exception: Error, entrypoint is not defined, which is not
true.

Signed-off-by: Oldřich Jedlička [email protected] | Oldřich Jedlička
2020-01-04T22:20Z | 645953b | Fix nslookup resolution on Windows. Windows (at least on my Insider build 19041) requires domain to be absolute (dot at the end) in the nslookup command, otherwise it adds local primary domain suffix before looking-up the domain. Tested both on Linux and Windows. ### Windows Relative domain: #> nslookup -querytype=NS ovh.co.uk Server: xxx.home.oldium.net Address: xxxx:xxxx:xxxx:1::1 Non-authoritative answer: ovh.co.uk.oldium.net canonical name = oldium.net oldium.net nameserver = ns3.gransy.com ... Absolute domain: #> nslookup -querytype=NS ovh.co.uk. Server: xxxx.home.oldium.net Address: xxxx:xxxx:xxxx:1::1 Non-authoritative answer: ovh.co.uk nameserver = dns10.ovh.net ovh.co.uk nameserver = ns10.ovh.net ... ### Linux (Ubuntu 18.04 LTS) Relative domain: #> nslookup -querytype=NS ovh.co.uk Server: 172.27.144.1 Address: 172.27.144.1#53 Non-authoritative answer: ovh.co.uk nameserver = dns10.ovh.net. ovh.co.uk nameserver = ns10.ovh.net. Absolute domain: #> nslookup -querytype=NS ovh.co.uk. Server: 172.27.144.1 Address: 172.27.144.1#53 Non-authoritative answer: ovh.co.uk nameserver = dns10.ovh.net. ovh.co.uk nameserver = ns10.ovh.net. See also answer about absolute and relative domain names. Signed-off-by: Oldřich Jedlička [email protected] | Old?ich Jedli?ka