@link-assistant/hive-mind 1.29.0 → 1.30.1
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 +33 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 1.30.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 27b4f09: Fix Docker CI/CD amd64 build cancellation due to GHA cache export timeout
|
|
8
|
+
- Increase `timeout-minutes` from 30 to 45 in `docker-publish` and `docker-publish-instant` jobs
|
|
9
|
+
- Switch GHA cache mode from `mode=max` to `mode=min` to reduce sequential cache export payload
|
|
10
|
+
- Add `ignore-error=true` to `cache-to` so cache export failure does not cancel a successful image push
|
|
11
|
+
- Add comprehensive case study in `docs/case-studies/issue-1394/CASE-STUDY.md` with root cause analysis and CI log data
|
|
12
|
+
|
|
13
|
+
Root cause: The sandbox-based hive-mind image (~2-3 GB) takes ~30 min to build and push to Docker Hub.
|
|
14
|
+
After the push, BuildKit exports all image layers sequentially to GHA cache (`mode=max`). This sequential
|
|
15
|
+
write of ~800 MB per layer exhausted the 30-minute job timeout mid-export, cancelling an already-successful
|
|
16
|
+
build. The Docker image itself was published correctly; only the cache export step was interrupted.
|
|
17
|
+
|
|
18
|
+
## 1.30.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- ee6233a: Optimize Docker build by using pinned konard/sandbox version as base image
|
|
23
|
+
- Docker image now inherits from `konard/sandbox:1.3.16` (pinned) instead of building from scratch
|
|
24
|
+
- Significantly faster build times (2-3 min vs 10-15+ min) as general-purpose tools are pre-installed
|
|
25
|
+
- Reduced timeout risk since heavy installations (Homebrew, PHP, etc.) are handled by base image
|
|
26
|
+
- Removed `scripts/ubuntu-24-server-install.sh` (functionality now provided by sandbox)
|
|
27
|
+
- User renamed from `sandbox` to `hive` for backward compatibility
|
|
28
|
+
- Sandbox version is pinned to `1.3.16` for stable, reproducible builds (instead of `latest`)
|
|
29
|
+
- Docker image is versioned to match the published npm package version
|
|
30
|
+
- Docker builds are triggered only after npm package availability is confirmed
|
|
31
|
+
|
|
32
|
+
This change implements the separation of concerns described in link-foundation/sandbox#65:
|
|
33
|
+
- sandbox: Universal development environment with all general-purpose tools
|
|
34
|
+
- hive-mind: AI-specific tools (Claude CLI, Playwright MCP, etc.) built on top of sandbox
|
|
35
|
+
|
|
3
36
|
## 1.29.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|