claude-threads 0.40.0 → 0.41.0

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 (4) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +5 -0
  3. package/dist/index.js +12511 -18171
  4. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.41.0] - 2026-01-07
11
+
12
+ ### Changed
13
+ - **Test coverage threshold increased to 80%** - CI now enforces minimum 80% line coverage (previously 75%)
14
+ - **Comprehensive test suite expansion** - Added 400+ new tests bringing total to 942 tests:
15
+ - `src/changelog.test.ts` - Changelog parsing and "What's New" extraction
16
+ - `src/logo.test.ts` - ASCII art logo generation
17
+ - `src/version.test.ts` - Package version resolution
18
+ - `src/session/types.test.ts` - Session type definitions
19
+ - `src/test-utils/mock-formatter.test.ts` - Mock formatter utilities
20
+ - `src/update-notifier.test.ts` - Update notification system
21
+ - Enhanced tests for message-handler, mattermost/api, platform/utils, and session modules
22
+
23
+ ### Added
24
+ - **Coverage badge** - README now displays live test coverage percentage via shields.io endpoint
25
+
26
+ ## [0.40.1] - 2026-01-07
27
+
28
+ ### Changed
29
+ - **Dependency updates** - Updated ink (5.2.1 → 6.6.0) and react (18.3.1 → 19.2.3)
30
+
10
31
  ## [0.40.0] - 2026-01-07
11
32
 
12
33
  ### Added
package/README.md CHANGED
@@ -8,7 +8,12 @@
8
8
 
9
9
  [![npm version](https://img.shields.io/npm/v/claude-threads.svg)](https://www.npmjs.com/package/claude-threads)
10
10
  [![npm downloads](https://img.shields.io/npm/dm/claude-threads.svg)](https://www.npmjs.com/package/claude-threads)
11
+ [![CI](https://github.com/anneschuth/claude-threads/actions/workflows/ci.yml/badge.svg)](https://github.com/anneschuth/claude-threads/actions/workflows/ci.yml)
12
+ [![Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/anneschuth/9ba67f04c8c04ae40e11b7f226d40fcb/raw/coverage-badge.json)](https://github.com/anneschuth/claude-threads/actions/workflows/ci.yml)
11
13
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
14
+ [![Bun](https://img.shields.io/badge/Bun-%3E%3D1.2.21-black.svg)](https://bun.sh/)
15
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/)
16
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/anneschuth/claude-threads/pulls)
12
17
 
13
18
  **Bring Claude Code to your team.** Run Claude Code on your machine, share it live in Mattermost or Slack. Colleagues can watch, collaborate, and run their own sessions—all from chat.
14
19