From 53b5fed8ae5400a3ad5209bf15d63b5a5c793f47 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 8 May 2019 21:10:49 -0400 Subject: [PATCH] Tweak docs to indicate deprecation of id__in filter --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ab646f4..19225f7d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -194,7 +194,7 @@ functionality provided by the front end UI. * New API endpoint for custom field choices: `/api/extras/_custom_field_choices/` * ForeignKey fields now accept either the related object PK or a dictionary of attributes describing the related object. * Organizational objects now include child object counts. For example, the Role serializer includes `prefix_count` and `vlan_count`. -* Removed the `id__in` filter from all models. (Use `?id=1&id=2` format instead.) +* The `id__in` filter is now deprecated and will be removed in v2.7. (Begin using the `?id=1&id=2` format instead.) * Added a `description` field for all device components. * dcim.Device: The devices list endpoint now includes rendered context data. * dcim.DeviceType: `instance_count` has been renamed to `device_count`.