Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/skip-gc-on-pause.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/fetchium/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchium/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fetchium",
"version": "0.4.4",
"version": "0.4.5",
"type": "module",
"repository": {
"type": "git",
Expand Down
Loading