You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Changed
Bumped the pinned djangorestframework-services dependency to 0.15.1.
The selector-tool dispatch path now discriminates queryset shapes with the
sister package's centralized is_queryset() predicate
(rest_framework_services.selectors.utils) instead of a local _is_queryset_like duck-typing helper that probed for .filter / .order_by / .count. This is a precise isinstance check
against QuerySet / Manager, so a domain object that merely exposes those
method names is no longer mistaken for a queryset and routed through the
FilterSet / ordering / .count() shaping path. Plain lists and tuples still
paginate in-memory via len() + slice exactly as before. No public API or
behavioral change for the documented queryset / list selector shapes.