aidevops 3.13.73 → 3.13.74

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/VERSION CHANGED
@@ -1 +1 @@
1
- 3.13.73
1
+ 3.13.74
package/aidevops.sh CHANGED
@@ -5,7 +5,7 @@
5
5
  # AI DevOps Framework CLI
6
6
  # Usage: aidevops <command> [options]
7
7
  #
8
- # Version: 3.13.73
8
+ # Version: 3.13.74
9
9
 
10
10
  set -euo pipefail
11
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.13.73",
3
+ "version": "3.13.74",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -256,7 +256,8 @@ deploy_agents_to_runtimes() {
256
256
  # cannot be passed directly to the `timeout` binary. Instead we run it in a
257
257
  # background subshell and poll for completion with a configurable wall-clock
258
258
  # deadline. When the deadline expires the subshell is killed with SIGTERM then
259
- # SIGKILL and setup continues without this non-critical step.
259
+ # SIGKILL and this non-critical step is treated as a warning so setup can
260
+ # continue after core deployment has already succeeded.
260
261
  #
261
262
  # Configurable via AIDEVOPS_DEPLOY_RUNTIMES_TIMEOUT (default 120s).
262
263
  _deploy_agents_to_runtimes_bounded() {
@@ -275,7 +276,7 @@ _deploy_agents_to_runtimes_bounded() {
275
276
  kill -KILL "$_pid" 2>/dev/null || true
276
277
  wait "$_pid" 2>/dev/null || true
277
278
  print_warning "Runtime agent deployment exceeded ${timeout_s}s — skipping (non-critical)"
278
- return 1
279
+ return 0
279
280
  fi
280
281
  sleep 1
281
282
  done
package/setup.sh CHANGED
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
12
12
  # AI Assistant Server Access Framework Setup Script
13
13
  # Helps developers set up the framework for their infrastructure
14
14
  #
15
- # Version: 3.13.73
15
+ # Version: 3.13.74
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)