@link-assistant/hive-mind 0.51.1 → 0.51.3

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 +30 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 0.51.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fdb8b8: Fix Docker publish jobs being skipped after successful npm releases by adding always() to job conditions and explicit result checks
8
+
9
+ ## 0.51.2
10
+
11
+ ### Patch Changes
12
+
13
+ - a605d9d: Fix perlbrew bashrc unbound variable error (issue #989)
14
+
15
+ **Problem:** The error `/home/hive/perl5/perlbrew/etc/bashrc: line 71: $1: unbound variable` appeared during Docker builds when running Perl version checks.
16
+
17
+ **Root Cause:** Perlbrew's generated bashrc uses positional parameter `$1` and other variables without protection against `set -u` (nounset mode).
18
+
19
+ **Solution:**
20
+ - Patch perlbrew bashrc after installation to use `${1:-}`, `${PERLBREW_LIB:-}`, and `${outsep:-}` syntax
21
+ - Add CI check to detect and fail on any unbound variable errors in Docker builds
22
+ - Add case study documentation for future reference
23
+
24
+ **Changes:**
25
+ - `scripts/ubuntu-24-server-install.sh`: Patch perlbrew bashrc for set -u compatibility
26
+ - `.github/workflows/release.yml`: Add CI check for unbound variable errors
27
+ - `docs/case-studies/issue-989/`: Add case study documentation
28
+
29
+ References:
30
+ - Issue: https://github.com/link-assistant/hive-mind/issues/989
31
+ - Upstream fix: https://github.com/gugod/App-perlbrew/pull/850
32
+
3
33
  ## 0.51.1
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "0.51.1",
3
+ "version": "0.51.3",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",