@tanstack/solid-query 5.30.4 → 5.30.5

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.
package/build/dev.cjs CHANGED
@@ -278,6 +278,7 @@ function createBaseQuery(options, Observer, queryClient) {
278
278
  ([obs, opts]) => {
279
279
  obs.setOptions(opts);
280
280
  setStateWithReconciliation(obs.getOptimisticResult(opts));
281
+ refetch();
281
282
  },
282
283
  { defer: true }
283
284
  )
package/build/dev.js CHANGED
@@ -277,6 +277,7 @@ function createBaseQuery(options, Observer, queryClient) {
277
277
  ([obs, opts]) => {
278
278
  obs.setOptions(opts);
279
279
  setStateWithReconciliation(obs.getOptimisticResult(opts));
280
+ refetch();
280
281
  },
281
282
  { defer: true }
282
283
  )
package/build/index.cjs CHANGED
@@ -269,6 +269,7 @@ function createBaseQuery(options, Observer, queryClient) {
269
269
  ([obs, opts]) => {
270
270
  obs.setOptions(opts);
271
271
  setStateWithReconciliation(obs.getOptimisticResult(opts));
272
+ refetch();
272
273
  },
273
274
  { defer: true }
274
275
  )
package/build/index.js CHANGED
@@ -268,6 +268,7 @@ function createBaseQuery(options, Observer, queryClient) {
268
268
  ([obs, opts]) => {
269
269
  obs.setOptions(opts);
270
270
  setStateWithReconciliation(obs.getOptimisticResult(opts));
271
+ refetch();
271
272
  },
272
273
  { defer: true }
273
274
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/solid-query",
3
- "version": "5.30.4",
3
+ "version": "5.30.5",
4
4
  "description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -355,6 +355,7 @@ export function createBaseQuery<
355
355
  ([obs, opts]) => {
356
356
  obs.setOptions(opts)
357
357
  setStateWithReconciliation(obs.getOptimisticResult(opts))
358
+ refetch()
358
359
  },
359
360
  { defer: true },
360
361
  ),