@link-assistant/hive-mind 0.51.0 → 0.51.2

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 +39 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 0.51.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a605d9d: Fix perlbrew bashrc unbound variable error (issue #989)
8
+
9
+ **Problem:** The error `/home/hive/perl5/perlbrew/etc/bashrc: line 71: $1: unbound variable` appeared during Docker builds when running Perl version checks.
10
+
11
+ **Root Cause:** Perlbrew's generated bashrc uses positional parameter `$1` and other variables without protection against `set -u` (nounset mode).
12
+
13
+ **Solution:**
14
+ - Patch perlbrew bashrc after installation to use `${1:-}`, `${PERLBREW_LIB:-}`, and `${outsep:-}` syntax
15
+ - Add CI check to detect and fail on any unbound variable errors in Docker builds
16
+ - Add case study documentation for future reference
17
+
18
+ **Changes:**
19
+ - `scripts/ubuntu-24-server-install.sh`: Patch perlbrew bashrc for set -u compatibility
20
+ - `.github/workflows/release.yml`: Add CI check for unbound variable errors
21
+ - `docs/case-studies/issue-989/`: Add case study documentation
22
+
23
+ References:
24
+ - Issue: https://github.com/link-assistant/hive-mind/issues/989
25
+ - Upstream fix: https://github.com/gugod/App-perlbrew/pull/850
26
+
27
+ ## 0.51.1
28
+
29
+ ### Patch Changes
30
+
31
+ - ec08ef4: Fix Rocq installation verification (issue #952)
32
+ - Installation script: Check binary accessibility instead of just package listing
33
+ - Installation script: Use `opam pin add rocq-prover` per official documentation
34
+ - CI workflow: Require Rocq accessibility in container (not optional)
35
+ - CI workflow: Enhanced diagnostics when Rocq verification fails
36
+ - Dockerfile: Add opam environment variables (OPAM_SWITCH_PREFIX, CAML_LD_LIBRARY_PATH, OCAML_TOPLEVEL_PATH)
37
+
38
+ References:
39
+ - Issue: https://github.com/link-assistant/hive-mind/issues/952
40
+ - Rocq docs: https://rocq-prover.org/docs/using-opam
41
+
3
42
  ## 0.51.0
4
43
 
5
44
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "0.51.0",
3
+ "version": "0.51.2",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",