@link-assistant/hive-mind 0.50.3 → 0.50.5

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 +23 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 0.50.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Test patch release
8
+
9
+ ## 0.50.4
10
+
11
+ ### Patch Changes
12
+
13
+ - d58e5dd: fix: enable Docker and Helm publishing for instant releases
14
+
15
+ Previously, when using the "instant release" workflow (triggered via workflow_dispatch),
16
+ Docker images and Helm charts were not published because they only depended on the
17
+ `release` job outputs. This fix adds dedicated `docker-publish-instant` and
18
+ `helm-release-instant` jobs that depend on the `instant-release` job outputs.
19
+
20
+ This resolves the issue where Docker Hub images were 14 days behind npm releases.
21
+
22
+ Additionally, duplicated CI/CD logic has been moved to reusable scripts:
23
+ - `scripts/wait-for-npm.sh` - Waits for NPM package availability
24
+ - `scripts/helm-release.sh` - Packages and publishes Helm charts to gh-pages
25
+
3
26
  ## 0.50.3
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "0.50.3",
3
+ "version": "0.50.5",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",