From b86e2155704339463dfec5c7d1b669ea752d9c76 Mon Sep 17 00:00:00 2001 From: "Tommy D. Rossi" Date: Thu, 15 Jan 2026 12:51:23 +0100 Subject: [PATCH] Create CHANGELOG.md --- extension/CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 extension/CHANGELOG.md diff --git a/extension/CHANGELOG.md b/extension/CHANGELOG.md new file mode 100644 index 0000000..179400b --- /dev/null +++ b/extension/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## 0.0.68 + +### Bug Fixes + +- **Improved connection reliability**: Use `127.0.0.1` instead of `localhost` to avoid DNS/IPv6 resolution issues +- **Global connection timeout**: Added 15-second global timeout wrapper around `connect()` to prevent hanging forever when individual timeouts fail +- **Better WebSocket handling**: Added `settled` flag to properly handle timeout/open/error/close race conditions + +### Changes + +- **Faster retry loop**: Reduced retry attempts from 30 to 5 since `maintainLoop` retries every 3 seconds anyway +- **Allow own extension pages**: Added `OUR_EXTENSION_IDS` to allow attaching to our own extension pages while blocking other extensions + +## 0.0.67 + +- Initial changelog