@link-assistant/hive-mind 0.50.7 → 0.50.9
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 +43 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @link-assistant/hive-mind
|
|
2
2
|
|
|
3
|
+
## 0.50.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix stuck Docker multi-platform builds by using native ARM64 runners
|
|
8
|
+
|
|
9
|
+
The Docker publish workflow was getting stuck for hours when building ARM64 images using QEMU emulation on x86_64 runners. QEMU emulation introduces 10-100x slowdown, especially for complex Dockerfiles that compile native packages.
|
|
10
|
+
|
|
11
|
+
**Solution**: Refactored docker-publish jobs to use GitHub's native ARM64 runners (`ubuntu-24.04-arm`) with a matrix strategy:
|
|
12
|
+
- Each platform (amd64, arm64) builds natively in parallel on dedicated runners
|
|
13
|
+
- Build artifacts (digests) are uploaded and merged into a multi-platform manifest
|
|
14
|
+
- Eliminates QEMU emulation overhead entirely
|
|
15
|
+
- Build times should now be similar for both platforms (~10-15 minutes each)
|
|
16
|
+
|
|
17
|
+
This fix applies to both:
|
|
18
|
+
- `docker-publish` job (triggered by regular releases)
|
|
19
|
+
- `docker-publish-instant` job (triggered by manual instant releases)
|
|
20
|
+
|
|
21
|
+
Fixes #982
|
|
22
|
+
|
|
23
|
+
Fix Docker Publish jobs being skipped after npm publish
|
|
24
|
+
|
|
25
|
+
Added explicit shell-based output passthrough step for `published` output in both `release` and `instant-release` jobs. This ensures reliable output propagation to dependent jobs (`docker-publish` and `docker-publish-instant`).
|
|
26
|
+
|
|
27
|
+
Root cause: Node.js `appendFileSync` to `GITHUB_OUTPUT` was not reliably propagating outputs to dependent jobs. The fix uses a dedicated shell step to echo outputs, which is proven to work correctly.
|
|
28
|
+
|
|
29
|
+
Also added debug logging to `setOutput` function in `publish-to-npm.mjs` and `version-and-commit.mjs` scripts.
|
|
30
|
+
|
|
31
|
+
Add case study for harmful prompts and resource exhaustion attacks
|
|
32
|
+
|
|
33
|
+
Documents analysis of LLM resource exhaustion attacks including:
|
|
34
|
+
- Timeline and root cause analysis
|
|
35
|
+
- OWASP LLM Top 10 (2025) attack classification
|
|
36
|
+
- Attack patterns database with detection rules
|
|
37
|
+
- Five proposed solution approaches
|
|
38
|
+
- Raw attack samples for research
|
|
39
|
+
|
|
40
|
+
## 0.50.8
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- Test patch release
|
|
45
|
+
|
|
3
46
|
## 0.50.7
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|