All Versions
172
Latest Version
Avg Release Cycle
34 days
Latest Release
1376 days ago

Changelog History
Page 16

  • v0.3.6 Changes

    • ๐Ÿ› Bug: Loading state is no longer true on uncalled mutations.
    • ๐Ÿ‘Œ Improvement: don't set the loading state to false if forceFetch is true
  • v0.3.5 Changes

    Return promise from the refetch method

  • v0.3.4 Changes

    • ๐Ÿ› Bug: Fix bug where state / props weren't accurate when executing mutations.
    • ๐ŸŽ - Improvement: Increase performance by limiting re-renders and re-execution of queries. Chore: Split tests to make them easier to maintain.
  • v0.3.2 Changes

    • ๐Ÿ”‹ Feature: add startPolling and stopPolling to the prop object for queries
    • ๐Ÿ› Bug: Fix bug where full options were not being passed to watchQuery
  • v0.3.1 Changes

    • ๐Ÿ”‹ Feature: Support 0.3.0 of apollo-client
  • v0.3.0 Changes

    • ๐Ÿ”‹ Feature: Change Provider export to be ApolloProvider and use Provider from react-redux
  • v0.2.1 Changes

    • ๐Ÿ”‹ Feature: Support 0.1.0 and 0.2.0 of apollo-client
  • v0.2.0 Changes

    ๐Ÿ’ฅ Breaking change:

    {
      loading: false,
      result: {
        posts: []
      }
    }
    

    becomes

    {
      loading: false,
      posts: []
    }
    
  • v0.1.5 Changes

    • ๐Ÿ› Bug: Get state directly from redux store internally
  • v0.1.4 Changes

    • ๐Ÿ› Bug: Fix bug with willReceiveProps