claude-threads 1.17.2 → 1.17.3

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,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [1.17.2] - 2026-06-19
10
+ ## [1.17.3] - 2026-07-01
11
+
12
+ ### Dependencies
13
+ - **Production:** `@hono/node-server` 2.0.5 → 2.0.6, `hono` 4.12.26 → 4.12.27, `semver` 7.8.4 → 7.8.5. (#417)
14
+ - **Dev:** `@types/node` 25 → 26, `typescript-eslint` 8.61.1 → 8.62.1. (#416)
15
+
16
+ ### Changed
17
+ - **Held `js-yaml` on 4.x and added a dependabot ignore for `js-yaml >=5.0.0`.** Dependabot grouped a `js-yaml` 4.x → 5.x major into the production bump, but 5.x is ESM-only and dropped the CommonJS `default` export, breaking our `import yaml from 'js-yaml'` call sites with `Missing 'default' export`. The bump now stays on 4.x until the code migrates to named ESM imports. (#417)
18
+ - **CI:** `actions/checkout` 6 → 7. (#413)
11
19
 
12
20
  ### Security
13
21
  - **`@hono/node-server` 2.0.4 → 2.0.5** to resolve GHSA-frvp-7c67-39w9: on Windows, prefix-mounted Serve Static middleware could be bypassed. Only affects Windows deployments using Serve Static. (#408)
package/dist/index.js CHANGED
@@ -8051,15 +8051,16 @@ var require_range = __commonJS((exports, module) => {
8051
8051
  };
8052
8052
  var replaceTilde = (comp, options) => {
8053
8053
  const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];
8054
+ const z = options.includePrerelease ? "-0" : "";
8054
8055
  return comp.replace(r, (_, M, m, p, pr) => {
8055
8056
  debug("tilde", comp, _, M, m, p, pr);
8056
8057
  let ret;
8057
8058
  if (isX(M)) {
8058
8059
  ret = "";
8059
8060
  } else if (isX(m)) {
8060
- ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
8061
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;
8061
8062
  } else if (isX(p)) {
8062
- ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
8063
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;
8063
8064
  } else if (pr) {
8064
8065
  debug("replaceTilde pr", pr);
8065
8066
  ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
@@ -13117,15 +13117,16 @@ var require_range = __commonJS((exports, module) => {
13117
13117
  };
13118
13118
  var replaceTilde = (comp, options) => {
13119
13119
  const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];
13120
+ const z2 = options.includePrerelease ? "-0" : "";
13120
13121
  return comp.replace(r, (_, M, m, p, pr) => {
13121
13122
  debug("tilde", comp, _, M, m, p, pr);
13122
13123
  let ret;
13123
13124
  if (isX(M)) {
13124
13125
  ret = "";
13125
13126
  } else if (isX(m)) {
13126
- ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
13127
+ ret = `>=${M}.0.0${z2} <${+M + 1}.0.0-0`;
13127
13128
  } else if (isX(p)) {
13128
- ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
13129
+ ret = `>=${M}.${m}.0${z2} <${M}.${+m + 1}.0-0`;
13129
13130
  } else if (pr) {
13130
13131
  debug("replaceTilde pr", pr);
13131
13132
  ret = `>=${M}.${m}.${p}-${pr} <${M}.${+m + 1}.0-0`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-threads",
3
- "version": "1.17.2",
3
+ "version": "1.17.3",
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",
@@ -63,7 +63,7 @@
63
63
  "package.json"
64
64
  ],
65
65
  "dependencies": {
66
- "@hono/node-server": "2.0.5",
66
+ "@hono/node-server": "2.0.6",
67
67
  "@inkjs/ui": "^2.0.0",
68
68
  "@modelcontextprotocol/sdk": "^1.26.0",
69
69
  "@redactpii/node": "^1.0.16",
@@ -71,13 +71,13 @@
71
71
  "commander": "^14.0.2",
72
72
  "diff": "^8.0.3",
73
73
  "express-rate-limit": "^8.3.0",
74
- "hono": "4.12.26",
74
+ "hono": "4.12.27",
75
75
  "ink": "^6.6.0",
76
76
  "ink-scroll-view": "^0.3.5",
77
77
  "js-yaml": "^4.1.1",
78
78
  "prompts": "^2.4.2",
79
79
  "react": "^19.2.3",
80
- "semver": "7.8.4",
80
+ "semver": "7.8.5",
81
81
  "update-notifier": "^7.3.1",
82
82
  "ws": "8.21.0",
83
83
  "zod": "^4.3.6"
@@ -86,7 +86,7 @@
86
86
  "@eslint/js": "^10.0.1",
87
87
  "@types/bun": "latest",
88
88
  "@types/js-yaml": "^4.0.9",
89
- "@types/node": "^25.0.3",
89
+ "@types/node": "^26.0.1",
90
90
  "@types/prompts": "^2.4.9",
91
91
  "@types/react": "^19.2.7",
92
92
  "@types/semver": "^7.7.1",