Skip to content

Commit ab6b9ca

Browse files
authored
Version Packages (#838)
2 parents 029032a + 8c73ceb commit ab6b9ca

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.changeset/fix-sse-cleanup-on-retries-exhausted.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/sse/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @solid-primitives/sse
22

3+
## 0.0.102
4+
5+
### Patch Changes
6+
7+
- 326d05f: Fix memory leak when app-level retries are exhausted in `createSSE`. Previously, when all reconnect attempts were used up and the `EventSource` was permanently closed, `currentCleanup` was never called — leaving the `EventSource` instance and its event listeners alive in memory, and the `source` signal pointing to a stale handle. Now an `else if` branch explicitly calls `currentCleanup()`, clears the reference, and sets the `source` signal to `undefined`.
8+
39
## 0.0.101
410

511
### Patch Changes

packages/sse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solid-primitives/sse",
3-
"version": "0.0.101",
3+
"version": "0.0.102",
44
"description": "Primitives for Server-Sent Events (SSE) using the browser's EventSource API.",
55
"author": "David Di Biase <dave.dibiase@gmail.com>",
66
"contributors": [],

0 commit comments

Comments
 (0)