apollo-client v1.3.12 Release Notes

    • Avoid using DepTrackingCache for optimistic reads. PR #4521

    • When creating an InMemoryCache object, it's now possible to disable the result caching behavior introduced in #3394, either for diagnostic purposes or because the benefit of caching repeated reads is not worth the extra memory usage in your application:

      new InMemoryCache({
      resultCaching: false
      })
      

      Part of PR #4521.