Thanks for your work on this library, it's been very useful!
We have a few version changes where, rather than changes the values within a response, are changing what's sent back with the response. For example, if an endpoint started returning Foo.objects.all(is_bar=True), we might update it to return Foo.objects.all().
To date, we've been taking the approach of returning different responses in the views, e.g.:
if request.META.get('HTTP_API_VERSION', CURRENT_VERSION) <= '0003':
serializer = FooSerializer(foos, many=True, context={'request': request})
return Response({'foos': serializer.data})
What would be the recommended approach for handling that with this library? (It doesn't look like it's currently handled.)
Thanks for your work on this library, it's been very useful!
We have a few version changes where, rather than changes the values within a response, are changing what's sent back with the response. For example, if an endpoint started returning
Foo.objects.all(is_bar=True), we might update it to returnFoo.objects.all().To date, we've been taking the approach of returning different responses in the views, e.g.:
What would be the recommended approach for handling that with this library? (It doesn't look like it's currently handled.)