claude-threads 0.40.1 → 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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,22 @@ 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
+
10
26
  ## [0.40.1] - 2026-01-07
11
27
 
12
28
  ### Changed
package/README.md CHANGED
@@ -9,6 +9,7 @@
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
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)
12
13
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
13
14
  [![Bun](https://img.shields.io/badge/Bun-%3E%3D1.2.21-black.svg)](https://bun.sh/)
14
15
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.40.1",
3
+ "version": "0.41.0",
4
4
  "description": "Share Claude Code sessions live in a Mattermost channel with interactive features",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",