Skip to content

Commit c37c469

Browse files
authored
[Changelog] Add DNS entry (cloudflare#21172)
1 parent dbb356f commit c37c469

File tree

3 files changed

+47
-12
lines changed

3 files changed

+47
-12
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Removed unused meta fields from DNS records
3+
description: Cloudflare is removing five fields from the meta object of DNS records.
4+
date: 2025-02-02T18:00:00Z
5+
---
6+
7+
Cloudflare is removing five fields from the `meta` object of DNS records. These fields have been unused for more than a year and are no longer set on new records. This change may take up to four weeks to fully roll out.
8+
9+
The affected fields are:
10+
11+
- the `auto_added` boolean
12+
- the `managed_by_apps` boolean and corresponding `apps_install_id`
13+
- the `managed_by_argo_tunnel` boolean and corresponding `argo_tunnel_id`
14+
15+
An example record returned from the API would now look like the following:
16+
17+
```json title="Updated API Response" del={14-16}
18+
{
19+
"result": {
20+
"id": "<ID>",
21+
"zone_id": "<ZONE_ID>",
22+
"zone_name": "example.com",
23+
"name": "www.example.com",
24+
"type": "A",
25+
"content": "192.0.2.1",
26+
"proxiable": true,
27+
"proxied": false,
28+
"ttl": 1,
29+
"locked": false,
30+
"meta": {
31+
"auto_added": false,
32+
"managed_by_apps": false,
33+
"managed_by_argo_tunnel": false,
34+
"source": "primary"
35+
},
36+
"comment": null,
37+
"tags": [],
38+
"created_on": "2025-03-17T20:37:05.368097Z",
39+
"modified_on": "2025-03-17T20:37:05.368097Z"
40+
},
41+
"success": true,
42+
"errors": [],
43+
"messages": []
44+
}
45+
```
46+
47+
For more guidance, refer to [Manage DNS records](/dns/manage-dns-records/).

src/content/docs/dns/manage-dns-records/reference/dns-record-types.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ curl "https://api.cloudflare.com/client/v4/zones/<ZONE_ID>/dns_records" \
7777
"ttl": 1,
7878
"locked": false,
7979
"meta": {
80-
"auto_added": false,
81-
"managed_by_apps": false,
82-
"managed_by_argo_tunnel": false,
8380
"source": "primary"
8481
},
8582
"comment": null,
@@ -150,9 +147,6 @@ curl "https://api.cloudflare.com/client/v4/zones/<ZONE_ID>/dns_records" \
150147
"ttl": 1,
151148
"locked": false,
152149
"meta": {
153-
"auto_added": false,
154-
"managed_by_apps": false,
155-
"managed_by_argo_tunnel": false,
156150
"source": "primary"
157151
},
158152
"comment": null,

src/content/partials/dns/add-mx-records.mdx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ To **send and receive** emails from your domain, you need an SMTP provider. Then
5151
"ttl": 1,
5252
"locked": false,
5353
"meta": {
54-
"auto_added": false,
55-
"managed_by_apps": false,
56-
"managed_by_argo_tunnel": false,
5754
"source": "primary"
5855
},
5956
"comment": null,
@@ -108,9 +105,6 @@ To **send and receive** emails from your domain, you need an SMTP provider. Then
108105
"ttl": 3600,
109106
"locked": false,
110107
"meta": {
111-
"auto_added": false,
112-
"managed_by_apps": false,
113-
"managed_by_argo_tunnel": false,
114108
"source": "primary"
115109
},
116110
"comment": null,

0 commit comments

Comments
 (0)