claude-threads 1.19.3 → 1.19.4
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 +5 -0
- package/dist/index.js +3 -4
- package/dist/mcp/mcp-server.js +3 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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.4] - 2026-08-05
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Dependency updates.** Production: `js-yaml` 4.3.0 → 4.3.1 (#457). Dev: `@types/react` 19.2.17 → 19.2.18, `knip` 6.29.0 → 6.31.0, `lint-staged` 17.2.0 → 17.3.0 (#456). The js-yaml bump additionally needed a manual `bun.lock` sync: the lockfile-sync workflow's `bun install` no-ops when the locked version still satisfies the manifest range (`^4.3.0` covers 4.3.0), so `bun.lock` — the lockfile CI actually installs from — had kept 4.3.0. Both manifests now pin `^4.3.1` and both lockfiles lock 4.3.1.
|
|
12
|
+
|
|
8
13
|
## [1.19.3] - 2026-08-04
|
|
9
14
|
|
|
10
15
|
### Changed
|
package/dist/index.js
CHANGED
|
@@ -48960,7 +48960,7 @@ function requireOmap() {
|
|
|
48960
48960
|
function resolveYamlOmap(data) {
|
|
48961
48961
|
if (data === null)
|
|
48962
48962
|
return true;
|
|
48963
|
-
const objectKeys =
|
|
48963
|
+
const objectKeys = {};
|
|
48964
48964
|
const object = data;
|
|
48965
48965
|
for (let index = 0, length = object.length;index < length; index += 1) {
|
|
48966
48966
|
const pair = object[index];
|
|
@@ -48978,10 +48978,9 @@ function requireOmap() {
|
|
|
48978
48978
|
}
|
|
48979
48979
|
if (!pairHasKey)
|
|
48980
48980
|
return false;
|
|
48981
|
-
if (
|
|
48982
|
-
objectKeys.push(pairKey);
|
|
48983
|
-
else
|
|
48981
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
48984
48982
|
return false;
|
|
48983
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
48985
48984
|
}
|
|
48986
48985
|
return true;
|
|
48987
48986
|
}
|
package/dist/mcp/mcp-server.js
CHANGED
|
@@ -52774,7 +52774,7 @@ function requireOmap() {
|
|
|
52774
52774
|
function resolveYamlOmap(data) {
|
|
52775
52775
|
if (data === null)
|
|
52776
52776
|
return true;
|
|
52777
|
-
const objectKeys =
|
|
52777
|
+
const objectKeys = {};
|
|
52778
52778
|
const object5 = data;
|
|
52779
52779
|
for (let index = 0, length = object5.length;index < length; index += 1) {
|
|
52780
52780
|
const pair = object5[index];
|
|
@@ -52792,10 +52792,9 @@ function requireOmap() {
|
|
|
52792
52792
|
}
|
|
52793
52793
|
if (!pairHasKey)
|
|
52794
52794
|
return false;
|
|
52795
|
-
if (
|
|
52796
|
-
objectKeys.push(pairKey);
|
|
52797
|
-
else
|
|
52795
|
+
if (_hasOwnProperty.call(objectKeys, pairKey))
|
|
52798
52796
|
return false;
|
|
52797
|
+
Object.defineProperty(objectKeys, pairKey, { value: true });
|
|
52799
52798
|
}
|
|
52800
52799
|
return true;
|
|
52801
52800
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-threads",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.4",
|
|
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",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"hono": "4.13.0",
|
|
79
79
|
"ink": "^6.6.0",
|
|
80
80
|
"ink-scroll-view": "^0.3.5",
|
|
81
|
-
"js-yaml": "^4.3.
|
|
81
|
+
"js-yaml": "^4.3.1",
|
|
82
82
|
"prompts": "^2.4.2",
|
|
83
83
|
"react": "^19.2.3",
|
|
84
84
|
"semver": "7.8.5",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"@types/ws": "^8.18.0",
|
|
99
99
|
"eslint": "^10.7.0",
|
|
100
100
|
"husky": "^9.1.7",
|
|
101
|
-
"knip": "6.
|
|
101
|
+
"knip": "6.31.0",
|
|
102
102
|
"lint-staged": "^17.0.4",
|
|
103
103
|
"prettier": "^3.9.5",
|
|
104
104
|
"typescript": "^6.0.2",
|