diff --git a/.changeset/skip-gc-on-pause.md b/.changeset/skip-gc-on-pause.md deleted file mode 100644 index 61203f2..0000000 --- a/.changeset/skip-gc-on-pause.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"fetchium": patch ---- - -Paused queries no longer schedule garbage collection, so resuming reuses the cached result instead of refetching. Previously a paused query with a low `gcTime` was evicted immediately and recreated on resume, dropping its polling interval. GC still runs on genuine teardown. - -This relies on the `isPausing` flag signalium passes to `RelayHooks.deactivate` (see https://github.com/Signalium/signalium/pull/242), so the `signalium` peer requirement is now `>=3.0.3` (was `>=3.0.1`). diff --git a/packages/fetchium/CHANGELOG.md b/packages/fetchium/CHANGELOG.md index e2fe005..439b452 100644 --- a/packages/fetchium/CHANGELOG.md +++ b/packages/fetchium/CHANGELOG.md @@ -1,5 +1,13 @@ # fetchium +## 0.4.5 + +### Patch Changes + +- 76df9c4: Paused queries no longer schedule garbage collection, so resuming reuses the cached result instead of refetching. Previously a paused query with a low `gcTime` was evicted immediately and recreated on resume, dropping its polling interval. GC still runs on genuine teardown. + + This relies on the `isPausing` flag signalium passes to `RelayHooks.deactivate` (see https://github.com/Signalium/signalium/pull/242), so the `signalium` peer requirement is now `>=3.0.3` (was `>=3.0.1`). + ## 0.4.4 ### Patch Changes diff --git a/packages/fetchium/package.json b/packages/fetchium/package.json index c07b537..c23e9a2 100644 --- a/packages/fetchium/package.json +++ b/packages/fetchium/package.json @@ -1,6 +1,6 @@ { "name": "fetchium", - "version": "0.4.4", + "version": "0.4.5", "type": "module", "repository": { "type": "git",