@apollo/client 3.14.0-rc.0 → 3.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/apollo-client.cjs +85 -77
  3. package/apollo-client.cjs.map +1 -1
  4. package/apollo-client.min.cjs +1 -1
  5. package/cache/cache.cjs +14 -41
  6. package/cache/cache.cjs.map +1 -1
  7. package/cache/cache.cjs.native.js +14 -41
  8. package/cache/core/cache.js +1 -1
  9. package/cache/core/cache.js.map +1 -1
  10. package/cache/inmemory/inMemoryCache.js +1 -1
  11. package/cache/inmemory/inMemoryCache.js.map +1 -1
  12. package/core/ApolloClient.js +1 -1
  13. package/core/ApolloClient.js.map +1 -1
  14. package/core/ObservableQuery.d.ts +1 -0
  15. package/core/ObservableQuery.js +10 -6
  16. package/core/ObservableQuery.js.map +1 -1
  17. package/core/QueryInfo.js +1 -1
  18. package/core/QueryInfo.js.map +1 -1
  19. package/core/QueryManager.js +1 -1
  20. package/core/QueryManager.js.map +1 -1
  21. package/core/core.cjs +38 -61
  22. package/core/core.cjs.map +1 -1
  23. package/core/core.cjs.native.js +38 -61
  24. package/dev/dev.cjs +49 -53
  25. package/dev/dev.cjs.map +1 -1
  26. package/dev/dev.cjs.native.js +49 -53
  27. package/invariantErrorCodes.js +48 -53
  28. package/link/core/ApolloLink.js +1 -1
  29. package/link/core/ApolloLink.js.map +1 -1
  30. package/link/core/core.cjs +1 -15
  31. package/link/core/core.cjs.map +1 -1
  32. package/link/core/core.cjs.native.js +1 -15
  33. package/package.json +1 -1
  34. package/react/components/components.cjs +2 -14
  35. package/react/components/components.cjs.map +1 -1
  36. package/react/components/components.cjs.native.js +2 -14
  37. package/react/hoc/graphql.js +1 -1
  38. package/react/hoc/graphql.js.map +1 -1
  39. package/react/hoc/hoc.cjs +12 -31
  40. package/react/hoc/hoc.cjs.map +1 -1
  41. package/react/hoc/hoc.cjs.native.js +12 -31
  42. package/react/hoc/mutation-hoc.js +1 -1
  43. package/react/hoc/mutation-hoc.js.map +1 -1
  44. package/react/hoc/query-hoc.js +1 -1
  45. package/react/hoc/query-hoc.js.map +1 -1
  46. package/react/hoc/subscription-hoc.js +1 -1
  47. package/react/hoc/subscription-hoc.js.map +1 -1
  48. package/react/hooks/hooks.cjs +26 -52
  49. package/react/hooks/hooks.cjs.map +1 -1
  50. package/react/hooks/hooks.cjs.native.js +26 -52
  51. package/react/hooks/internal/useWarnRemoved.d.ts +1 -1
  52. package/react/hooks/internal/useWarnRemoved.js +1 -1
  53. package/react/hooks/internal/useWarnRemoved.js.map +1 -1
  54. package/react/hooks/internal/useWarnRemovedOption.d.ts +2 -1
  55. package/react/hooks/internal/useWarnRemovedOption.js +7 -5
  56. package/react/hooks/internal/useWarnRemovedOption.js.map +1 -1
  57. package/react/hooks/useApolloClient.js +1 -1
  58. package/react/hooks/useBackgroundQuery.js +1 -1
  59. package/react/hooks/useBackgroundQuery.js.map +1 -1
  60. package/react/hooks/useFragment.js +1 -1
  61. package/react/hooks/useFragment.js.map +1 -1
  62. package/react/hooks/useLazyQuery.js +3 -3
  63. package/react/hooks/useLazyQuery.js.map +1 -1
  64. package/react/hooks/useLoadableQuery.js +3 -3
  65. package/react/hooks/useLoadableQuery.js.map +1 -1
  66. package/react/hooks/useQuery.js +3 -3
  67. package/react/hooks/useQuery.js.map +1 -1
  68. package/react/hooks/useSubscription.js +3 -3
  69. package/react/hooks/useSuspenseQuery.js +3 -3
  70. package/react/hooks/useSuspenseQuery.js.map +1 -1
  71. package/react/hooks/useSyncExternalStore.js +1 -1
  72. package/react/internal/cache/QueryReference.js +2 -2
  73. package/react/internal/cache/QueryReference.js.map +1 -1
  74. package/react/internal/internal.cjs +3 -14
  75. package/react/internal/internal.cjs.map +1 -1
  76. package/react/internal/internal.cjs.native.js +3 -14
  77. package/react/parser/index.js +7 -7
  78. package/react/parser/index.js.map +1 -1
  79. package/react/parser/parser.cjs +9 -29
  80. package/react/parser/parser.cjs.map +1 -1
  81. package/react/parser/parser.cjs.native.js +9 -29
  82. package/react/query-preloader/createQueryPreloader.js +1 -1
  83. package/react/query-preloader/createQueryPreloader.js.map +1 -1
  84. package/react/react.cjs +4 -31
  85. package/react/react.cjs.map +1 -1
  86. package/react/react.cjs.native.js +4 -31
  87. package/testing/core/core.cjs +4 -4
  88. package/testing/core/core.cjs.map +1 -1
  89. package/testing/core/core.cjs.native.js +4 -4
  90. package/testing/core/mocking/mockLink.d.ts +13 -0
  91. package/testing/core/mocking/mockLink.js +4 -4
  92. package/testing/core/mocking/mockLink.js.map +1 -1
  93. package/testing/internal/disposables/index.d.ts +1 -0
  94. package/testing/internal/disposables/index.js +1 -0
  95. package/testing/internal/disposables/index.js.map +1 -1
  96. package/testing/internal/disposables/withMutedDeprecations.d.ts +4 -0
  97. package/testing/internal/disposables/withMutedDeprecations.js +13 -0
  98. package/testing/internal/disposables/withMutedDeprecations.js.map +1 -0
  99. package/testing/react/MockedProvider.js +1 -1
  100. package/testing/react/MockedProvider.js.map +1 -1
  101. package/testing/testing.cjs +5 -32
  102. package/testing/testing.cjs.map +1 -1
  103. package/testing/testing.cjs.native.js +5 -32
  104. package/utilities/deprecation/index.d.ts +0 -3
  105. package/utilities/deprecation/index.js +4 -12
  106. package/utilities/deprecation/index.js.map +1 -1
  107. package/utilities/globals/globals.cjs +1 -1
  108. package/utilities/globals/globals.cjs.map +1 -1
  109. package/utilities/globals/globals.cjs.native.js +1 -1
  110. package/utilities/graphql/DocumentTransform.js +1 -1
  111. package/utilities/graphql/directives.js +7 -7
  112. package/utilities/graphql/fragments.js +3 -3
  113. package/utilities/graphql/getFromAST.js +8 -8
  114. package/utilities/graphql/storeUtils.js +1 -1
  115. package/utilities/graphql/transform.js +2 -2
  116. package/utilities/index.d.ts +2 -0
  117. package/utilities/index.js +1 -0
  118. package/utilities/index.js.map +1 -1
  119. package/utilities/utilities.cjs +54 -22
  120. package/utilities/utilities.cjs.map +1 -1
  121. package/utilities/utilities.cjs.native.js +54 -22
  122. package/version.js +1 -1
  123. package/.changeset/breezy-lions-rule.md +0 -5
  124. package/.changeset/chilled-cameras-scream.md +0 -5
  125. package/.changeset/great-jobs-fetch.md +0 -5
  126. package/.changeset/great-suns-cover.md +0 -5
  127. package/.changeset/perfect-donuts-roll.md +0 -5
  128. package/.changeset/popular-waves-drop.md +0 -5
  129. package/.changeset/pre.json +0 -20
  130. package/.changeset/shy-boxes-exercise.md +0 -5
  131. package/.changeset/shy-dragons-tease.md +0 -5
  132. package/.changeset/smooth-countries-cough.md +0 -5
  133. package/.changeset/spotty-walls-repair.md +0 -5
  134. package/.changeset/tidy-bulldogs-exercise.md +0 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.