all: sync with master; upd chlog
This commit is contained in:
@@ -4,6 +4,19 @@
|
||||
|
||||
## v0.108.0: API changes
|
||||
|
||||
## v0.107.39: API changes
|
||||
|
||||
### New HTTP API 'POST /control/dhcp/update_static_lease'
|
||||
|
||||
* The new `POST /control/dhcp/update_static_lease` HTTP API allows modifying IP
|
||||
address, hostname of the static DHCP lease. IP version must be the same as
|
||||
previous.
|
||||
|
||||
### The new field `"blocked_response_ttl"` in `DNSConfig` object
|
||||
|
||||
* The new field `"blocked_response_ttl"` in `GET /control/dns_info` and `POST
|
||||
/control/dns_config` is the TTL for blocked responses.
|
||||
|
||||
## v0.107.37: API changes
|
||||
|
||||
### The new field `"fallback_dns"` in `UpstreamsConfig` object
|
||||
|
||||
@@ -566,6 +566,26 @@
|
||||
'schema':
|
||||
'$ref': '#/components/schemas/Error'
|
||||
'description': 'Not implemented (for example, on Windows).'
|
||||
'/dhcp/update_static_lease':
|
||||
'post':
|
||||
'tags':
|
||||
- 'dhcp'
|
||||
'operationId': 'dhcpUpdateStaticLease'
|
||||
'description': >
|
||||
Updates IP address, hostname of the static lease. IP version must be
|
||||
the same as previous.
|
||||
'summary': 'Updates a static lease'
|
||||
'requestBody':
|
||||
'$ref': '#/components/requestBodies/DhcpStaticLease'
|
||||
'responses':
|
||||
'200':
|
||||
'description': 'OK.'
|
||||
'501':
|
||||
'content':
|
||||
'application/json':
|
||||
'schema':
|
||||
'$ref': '#/components/schemas/Error'
|
||||
'description': 'Not implemented (for example, on Windows).'
|
||||
'/dhcp/reset':
|
||||
'post':
|
||||
'tags':
|
||||
@@ -1460,6 +1480,10 @@
|
||||
'type': 'string'
|
||||
'blocking_ipv6':
|
||||
'type': 'string'
|
||||
'blocked_response_ttl':
|
||||
'type': 'integer'
|
||||
'minimum': 0
|
||||
'description': 'TTL for blocked responses.'
|
||||
'protection_disabled_until':
|
||||
'type': 'string'
|
||||
'description': 'Protection is pause until this time. Nullable.'
|
||||
|
||||
Reference in New Issue
Block a user