claude-threads 1.19.0 → 1.19.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.
- package/CHANGELOG.md +13 -0
- package/dist/mcp/mcp-server.js +21 -1
- package/package.json +9 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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.19.2] - 2026-08-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **The T in the logo now reaches the baseline.** The C in the CT mark is drawn with its bottom stroke centered on the baseline, so its visible edge extends half a stroke-width below it — while the T's stem (butt cap) stopped exactly on the centerline, making the T look too short. The stem now extends to the C's outer bottom edge in both `logo.svg` and `favicon.svg`. (#452)
|
|
12
|
+
|
|
13
|
+
### Security
|
|
14
|
+
- **Cleared three new high advisories flagged by `bun audit`**, all in transitive dependencies, by raising version overrides: `fast-uri` to `>=4.1.2` (GHSA-7p8r-x3mc-p8w7, host confusion via backslash authority introducer), `brace-expansion` to `>=5.0.9` (GHSA-rgw5-rvv9-x895, DoS via unbounded intermediate arrays), and a new `ip-address` `>=10.3.1` override (GHSA-mwp4-54f8-5fhr, SSRF via leading-zero octet confusion). (#452)
|
|
15
|
+
|
|
16
|
+
## [1.19.1] - 2026-07-28
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **Dependency updates.** Production: `@modelcontextprotocol/sdk` 1.29.0 → 1.30.0, `hono` 4.12.31 → 4.12.32, `@hono/node-server` 2.0.11 → 2.0.12, `express-rate-limit` 8.6.0 → 8.6.1. Dev: `@types/node` 26.1.1 → 26.1.2. Dependabot maintains `package-lock.json` only, so `bun.lock` was regenerated alongside it — CI installs with Bun, and without that sync the bumps would not actually reach CI. (#447, #448)
|
|
20
|
+
|
|
8
21
|
## [1.19.0] - 2026-07-27
|
|
9
22
|
|
|
10
23
|
### Added
|
package/dist/mcp/mcp-server.js
CHANGED
|
@@ -3624,7 +3624,12 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
3624
3624
|
}
|
|
3625
3625
|
function resolve(baseURI, relativeURI, options) {
|
|
3626
3626
|
const schemelessOptions = options ? Object.assign({ scheme: "null" }, options) : { scheme: "null" };
|
|
3627
|
-
const
|
|
3627
|
+
const { parsed: baseParsed, malformedAuthorityOrPort: baseMalformed } = parseWithStatus(baseURI, schemelessOptions);
|
|
3628
|
+
const { parsed: relativeParsed, malformedAuthorityOrPort: relativeMalformed } = parseWithStatus(relativeURI, schemelessOptions);
|
|
3629
|
+
if (baseMalformed || relativeMalformed) {
|
|
3630
|
+
throw new Error(baseParsed.error || relativeParsed.error || "URI is malformed.");
|
|
3631
|
+
}
|
|
3632
|
+
const resolved = resolveComponent(baseParsed, relativeParsed, schemelessOptions, true);
|
|
3628
3633
|
schemelessOptions.skipEscape = true;
|
|
3629
3634
|
return serialize(resolved, schemelessOptions);
|
|
3630
3635
|
}
|
|
@@ -3751,6 +3756,7 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
3751
3756
|
}
|
|
3752
3757
|
var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
|
|
3753
3758
|
var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
|
|
3759
|
+
var AUTHORITY_INTRODUCER_REGION = /^(?:[^#/:?]+:)?([/\\\t\n\r]*)/;
|
|
3754
3760
|
function getParseError(parsed, matches) {
|
|
3755
3761
|
if (matches[2] !== undefined && parsed.path && parsed.path[0] !== "/") {
|
|
3756
3762
|
return 'URI path must start with "/" when authority is present.';
|
|
@@ -3785,6 +3791,20 @@ var require_fast_uri = __commonJS((exports, module) => {
|
|
|
3785
3791
|
parsed.error = "URI authority must not contain a literal backslash.";
|
|
3786
3792
|
malformedAuthorityOrPort = true;
|
|
3787
3793
|
}
|
|
3794
|
+
const introducerMatch = uri.match(AUTHORITY_INTRODUCER_REGION);
|
|
3795
|
+
if (introducerMatch !== null) {
|
|
3796
|
+
const region = introducerMatch[1];
|
|
3797
|
+
const normalizedRegion = region.replace(/[\t\n\r]/g, "");
|
|
3798
|
+
if (normalizedRegion.length >= 2) {
|
|
3799
|
+
if (normalizedRegion.slice(0, 2) !== "//") {
|
|
3800
|
+
parsed.error = parsed.error || "URI authority must not contain a literal backslash.";
|
|
3801
|
+
malformedAuthorityOrPort = true;
|
|
3802
|
+
} else if (region.length !== normalizedRegion.length) {
|
|
3803
|
+
parsed.error = parsed.error || "URI authority introducer must not contain whitespace.";
|
|
3804
|
+
malformedAuthorityOrPort = true;
|
|
3805
|
+
}
|
|
3806
|
+
}
|
|
3807
|
+
}
|
|
3788
3808
|
const matches = uri.match(URI_PARSE);
|
|
3789
3809
|
if (matches) {
|
|
3790
3810
|
parsed.scheme = matches[1] === undefined ? undefined : matches[1].toLowerCase();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-threads",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"description": "Run Claude Code from Slack or Mattermost. Sessions stream live into threads where your whole team can watch and steer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"package.json"
|
|
68
68
|
],
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@hono/node-server": "2.0.
|
|
70
|
+
"@hono/node-server": "2.0.12",
|
|
71
71
|
"@inkjs/ui": "^2.0.0",
|
|
72
72
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
73
73
|
"@redactpii/node": "^1.0.16",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"commander": "^14.0.2",
|
|
76
76
|
"diff": "^8.0.3",
|
|
77
77
|
"express-rate-limit": "^8.3.0",
|
|
78
|
-
"hono": "4.12.
|
|
78
|
+
"hono": "4.12.32",
|
|
79
79
|
"ink": "^6.6.0",
|
|
80
80
|
"ink-scroll-view": "^0.3.5",
|
|
81
81
|
"js-yaml": "^4.3.0",
|
|
@@ -121,8 +121,9 @@
|
|
|
121
121
|
"flatted": ">=3.4.0",
|
|
122
122
|
"picomatch": ">=2.3.2",
|
|
123
123
|
"path-to-regexp": ">=8.4.0",
|
|
124
|
-
"fast-uri": ">=
|
|
125
|
-
"brace-expansion": ">=5.0.
|
|
124
|
+
"fast-uri": ">=4.1.2",
|
|
125
|
+
"brace-expansion": ">=5.0.9",
|
|
126
|
+
"ip-address": ">=10.3.1",
|
|
126
127
|
"ws": "$ws",
|
|
127
128
|
"shell-quote": ">=1.10.0"
|
|
128
129
|
},
|
|
@@ -133,8 +134,9 @@
|
|
|
133
134
|
"flatted": ">=3.4.0",
|
|
134
135
|
"picomatch": ">=2.3.2",
|
|
135
136
|
"path-to-regexp": ">=8.4.0",
|
|
136
|
-
"fast-uri": ">=
|
|
137
|
-
"brace-expansion": ">=5.0.
|
|
137
|
+
"fast-uri": ">=4.1.2",
|
|
138
|
+
"brace-expansion": ">=5.0.9",
|
|
139
|
+
"ip-address": ">=10.3.1",
|
|
138
140
|
"ws": "$ws",
|
|
139
141
|
"shell-quote": ">=1.10.0"
|
|
140
142
|
}
|