@link-assistant/hive-mind 0.51.5 → 0.51.6

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 +21 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 0.51.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 9ee79c8: fix(ci): Add timeout, verbose diagnostics, and pre-fetch caching for Docker ARM64 builds
8
+
9
+ Addresses issue #998 where Docker Publish (linux/arm64) was stuck for >1.5 hours due to slow Homebrew bottle downloads on GitHub's ARM64 runners.
10
+
11
+ Changes:
12
+ - Added 90-minute timeout to docker-publish jobs to prevent indefinite hangs
13
+ - Switched from ubuntu-24.04-arm to ubuntu-22.04-arm for better network performance
14
+ - Added documentation comments about known ARM64 runner issues
15
+ - Added Homebrew verbose mode (`HOMEBREW_VERBOSE=1`) for detailed diagnostics
16
+ - Added `brew fetch --deps --retry` to pre-download bottles before installation
17
+ - Added timing measurements for fetch and install steps
18
+ - Updated case study with diagnostic approach
19
+
20
+ Root cause: GitHub's ubuntu-24.04-arm runners have known network performance issues (actions/runner-images#11790, actions/partner-runner-images#101). The ARM64 build was stuck downloading Homebrew bottles for PHP dependencies at extremely slow speeds.
21
+
22
+ See docs/case-studies/issue-998/README.md for detailed analysis.
23
+
3
24
  ## 0.51.5
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "0.51.5",
3
+ "version": "0.51.6",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",