claude-threads 0.48.0 → 0.48.2

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 (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.48.2] - 2026-01-08
11
+
12
+ ### Fixed
13
+ - **CI knip checks now pass** - Added `--no-config-hints` flag to knip in CI and pre-commit to handle environment differences (dist/ exists locally but not in CI)
14
+
15
+ ## [0.48.1] - 2026-01-08
16
+
17
+ ### Fixed
18
+ - **Pre-commit hooks work with non-JS files** - Added `--allow-empty` to lint-staged so commits with only markdown/config files don't fail
19
+ - **Knip no longer flags prettier** - Added prettier to ignoreDependencies and ignoreBinaries in knip config
20
+
21
+ ### Changed
22
+ - **Updated release documentation** - Added PR check verification step and removed `--no-verify` flags from release instructions
23
+
10
24
  ## [0.48.0] - 2026-01-08
11
25
 
12
26
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "0.48.0",
3
+ "version": "0.48.2",
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",