We're going to be deploying a backwards incompatible change to all "since" values in the API. Any endpoint which accepts this parameter to use as a form of range pagination will now include the value sent, as well as values before or after it (depending on the order).
For example, in the original implementation, since=1, would return results of 2, 3, 4, etc. In the new implementation, since=1, would return results of 1, 2, 3, 4, etc. We will also very shortly be implementing proper pagination using cursors to avoid certain race conditions when attempting to paginate. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
