claude-threads 1.0.2 → 1.0.4

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/index.js +643 -623
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.4] - 2026-01-13
9
+
10
+ ### Changed
11
+ - **Disable session header pinning** - Session headers are no longer pinned to avoid clutter (#208)
12
+
13
+ ### Fixed
14
+ - **Sticky message link validation** - Fixed bug where invalid `lastMessageId` could cause malformed links in sticky messages (#209)
15
+
16
+ ### Refactored
17
+ - **Extract BasePlatformClient** - Consolidated common code between Mattermost and Slack clients into a shared base class, reducing duplication (#205)
18
+
19
+ ## [1.0.3] - 2026-01-13
20
+
21
+ ### Fixed
22
+ - **WebSocket reconnection after long idle** - Improved reconnection reliability with forceful cleanup of stale connections, automatic retry on failure, and more compact UI (#206)
23
+ - **Metadata suggestion retry logic** - Added retry logic for title/description/tags fetching on session start with up to 2 retries (#207)
24
+
8
25
  ## [1.0.2] - 2026-01-13
9
26
 
10
27
  ### Fixed