Also, ``get-all-domains-query`` got an extra column for a zone's catalog assignment.
+API changes
+~~~~~~~~~~~
+
+A long time ago (in version 3.4.2), the ``priority`` field was removed from record content in the HTTP API.
+Starting with 4.9, API calls containing a ``priority`` field are actively rejected.
+This makes it easier for users to detect they are attempting to use a very old API client.
+
any version to 4.8.x
--------------------
const auto& items = container["records"].array_items();
for (const auto& record : items) {
string content = stringFromJson(record, "content");
+ if (record.object_items().count("priority") > 0) {
+ throw std::runtime_error("`priority` element is not allowed in record");
+ }
resourceRecord.disabled = false;
if (!record["disabled"].is_null()) {
resourceRecord.disabled = boolFromJson(record, "disabled");