mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-12-09 13:46:07 +08:00
# Issue Fixes https://github.com/StackExchange/dnscontrol/issues/3842 CC @das7pad # Resolution Convert domain.Name to IDN earlier in the pipeline. Hack the --domains processing to convert everything to IDN. * Domain names are now stored 3 ways: The original input from dnsconfig.js, canonical IDN format (`xn--...`), and Unicode format. All are downcased. Providers that haven't been updated will receive the IDN format instead of the original input format. This might break some providers but only for users with unicode in their D("domain.tld"). PLEASE TEST YOUR PROVIDER. * BIND filename formatting options have been added to access the new formats. # Breaking changes * BIND zonefiles may change. The default used the name input in the D() statement. It now defaults to the IDN name + "!tag" if there is a tag. * Providers that are not IDN-aware may break (hopefully only if they weren't processing IDN already) --------- Co-authored-by: Jakob Ackermann <das7pad@outlook.com>
25 lines
477 B
JSON
25 lines
477 B
JSON
{
|
|
"dns_providers": [],
|
|
"domains": [
|
|
{
|
|
"dnsProviders": {},
|
|
"meta": {
|
|
"dnscontrol_uniquename": "unsafe.com"
|
|
},
|
|
"name": "unsafe.com",
|
|
"records": [],
|
|
"registrar": "none",
|
|
"unmanaged_disable_safety_check": true
|
|
},
|
|
{
|
|
"dnsProviders": {},
|
|
"meta": {
|
|
"dnscontrol_uniquename": "safe.com"
|
|
},
|
|
"name": "safe.com",
|
|
"records": [],
|
|
"registrar": "none"
|
|
}
|
|
],
|
|
"registrars": []
|
|
}
|