Skip to content

v0.6.2

Choose a tag to compare

@github-actions github-actions released this 04 Jun 15:14
· 9 commits to main since this release
6de4c8d

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.