@link-assistant/hive-mind 1.30.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
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
+
3
18
  ## 1.30.0
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.30.0",
3
+ "version": "1.30.1",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",