bosun 0.41.7 → 0.41.8

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/config/config.mjs CHANGED
@@ -1217,7 +1217,10 @@ export function loadConfig(argv = process.argv, options = {}) {
1217
1217
  {
1218
1218
  const selPath = selectedRepository?.path || "";
1219
1219
  const selHasGit = selPath && existsSync(resolve(selPath, ".git"));
1220
- repoRoot = (selHasGit ? selPath : null) || getFallbackRepoRoot();
1220
+ repoRoot =
1221
+ explicitRepoRoot ||
1222
+ (selHasGit ? selPath : null) ||
1223
+ getFallbackRepoRoot();
1221
1224
  }
1222
1225
 
1223
1226
  if (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bosun",
3
- "version": "0.41.7",
3
+ "version": "0.41.8",
4
4
  "description": "Bosun Autonomous Engineering — manages AI agent executors with failover, extremely powerful workflow builder, and a massive amount of included default workflow templates for autonomous engineering, creates PRs via Vibe-Kanban API, and sends Telegram notifications. Supports N executors with weighted distribution, multi-repo projects, and auto-setup.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",