@kolisachint/hoocode-agent 0.4.64 → 0.4.65

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
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.65] - 2026-06-16
4
+
5
+ ### Added
6
+
7
+ - Release workflows now build and attach a 64-bit Windows standalone binary
8
+ (`hoocode-windows-x64.zip`) to each GitHub release. A `binaries` job in
9
+ `release.yml` and `merge-release.yml` runs the bun-only
10
+ `scripts/build-binaries.sh` (`bun build --compile --target=bun-windows-x64`),
11
+ stages the runtime assets and the koffi native module next to `hoocode.exe`,
12
+ zips them, and uploads the archive to the release.
13
+
14
+ ### Changed
15
+
16
+ - `scripts/build-binaries.sh` is now bun-only: dropped the `npm run build` step
17
+ (replaced with `bun run build`) and the obsolete `hoist-bun-deps.mjs` step
18
+ (the hoisted linker pinned in `bunfig.toml` already yields a flat
19
+ `node_modules`). Example sources are copied without their `node_modules` to
20
+ avoid unresolved bun workspace symlinks.
21
+
3
22
  ## [0.4.64] - 2026-06-16
4
23
 
5
24
  ### Fixed
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.2.62",
4
+ "version": "0.2.63",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.2.62",
4
+ "version": "0.2.63",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.2.62",
4
+ "version": "0.2.63",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.2.62",
4
+ "version": "0.2.63",
5
5
  "type": "module",
6
6
  "engines": {
7
7
  "bun": ">=1.0.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kolisachint/hoocode-agent",
3
- "version": "0.4.64",
3
+ "version": "0.4.65",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "hoocodeConfig": {
@@ -45,9 +45,9 @@
45
45
  "prepublishOnly": "npm run clean && npm run build"
46
46
  },
47
47
  "dependencies": {
48
- "@kolisachint/hoocode-agent-core": "^0.4.64",
49
- "@kolisachint/hoocode-ai": "^0.4.64",
50
- "@kolisachint/hoocode-tui": "^0.4.64",
48
+ "@kolisachint/hoocode-agent-core": "^0.4.65",
49
+ "@kolisachint/hoocode-ai": "^0.4.65",
50
+ "@kolisachint/hoocode-tui": "^0.4.65",
51
51
  "@silvia-odwyer/photon-node": "^0.3.4",
52
52
  "chalk": "^5.5.0",
53
53
  "cli-highlight": "^2.1.11",