Releases: TimothyYe/godns
Releases · TimothyYe/godns
V1.9.6 Add IPv6 support for HE.net
For the configuration, please refer to https://github.com/TimothyYe/godns#ipv6-support
V1.9.5 Add IPv6 support to Cloudflare
Now only Cloudflare is supported, will integrate the other providers later.
For the configuration, please refer to https://github.com/TimothyYe/godns#ipv6-support
IPv6 mode configuration example:
{
"provider": "Cloudflare",
"login_token": "API_TOKEN",
"domains": [
{
"domain_name": "example.com",
"sub_domains": [
"ipv6"
]
}
],
"ip_url": "https://myip.biturl.top",
"ipv6_url": "https://api-ipv6.ip.sb/ip",
"ip_type": "IPv6",
}
V1.9.4 Add API Token support for Cloudflare
See issue #41
Configuration file example:
{
"provider": "Cloudflare",
"login_token": "API Token",
"domains": [{
"domain_name": "example.com",
"sub_domains": ["www","test"]
},{
"domain_name": "example2.com",
"sub_domains": ["www","test"]
}
],
"ip_url": "https://myip.biturl.top",
"interval": 300,
"socks5_proxy": ""
}
V1.9.3 Fix google domain basic auth issue
GoDNS V1.9.2
Add User-Agent support for Google Domain.
A new configuration field user_agent
with a default value is added.
GoDNS V1.9.1
Fix google domain issue.
GoDNS V1.9
Support DuckDNS provider.
For more configuration information, please refer to the configuration example
GoDNS V1.8
Add google handler to support Google Domains.
Configuration for example:
{
"provider": "Google",
"email": "Your_Username",
"password": "Your_Password",
"domains": [{
"domain_name": "example.com",
"sub_domains": ["www","test"]
},{
"domain_name": "example2.com",
"sub_domains": ["www","test"]
}
],
"ip_url": "https://myip.biturl.top",
"interval": 300,
"socks5_proxy": ""
}
GoDNS RC1.8
Add google handler to support Google Domains.
Configuration for example:
{
"provider": "Google",
"email": "Your_Username",
"password": "Your_Password",
"domains": [{
"domain_name": "example.com",
"sub_domains": ["www","test"]
},{
"domain_name": "example2.com",
"sub_domains": ["www","test"]
}
],
"ip_url": "https://myip.biturl.top",
"interval": 300,
"socks5_proxy": ""
}
GoDNS V1.7.2
Fix issue #36, add interval in setting file.