forgexa-cli 1.16.5__tar.gz → 1.17.0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.16.5
3
+ Version: 1.17.0
4
4
  Summary: Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform
5
5
  Author-email: Jason Sun <dev.winds@gmail.com>
6
6
  License-Expression: MIT
@@ -1,2 +1,2 @@
1
1
  """forgexa-cli — Forgexa command-line client."""
2
- __version__ = "1.16.5"
2
+ __version__ = "1.17.0"
@@ -523,7 +523,7 @@ except (ImportError, ModuleNotFoundError):
523
523
  # DAEMON_VERSION is the protocol/logic version of the daemon code.
524
524
  # Kept in sync with pyproject.toml version via bump-version.sh.
525
525
  # CLIENT_TYPE identifies which packaging/distribution this daemon runs in.
526
- DAEMON_VERSION = "1.16.5"
526
+ DAEMON_VERSION = "1.17.0"
527
527
 
528
528
 
529
529
  def _detect_client_type() -> str:
@@ -2617,7 +2617,9 @@ class WorkspaceManager:
2617
2617
  try:
2618
2618
  await self._git(
2619
2619
  "push", "origin", "--delete", branch_name,
2620
- cwd=ws_path, project_key=project_key,
2620
+ cwd=ws_path,
2621
+ timeout=settings.GIT_PUSH_TIMEOUT,
2622
+ project_key=project_key,
2621
2623
  )
2622
2624
  logger.info(
2623
2625
  "Deleted remote branch %s for fresh analysis restart",
@@ -2930,7 +2932,9 @@ class WorkspaceManager:
2930
2932
  await self._git(
2931
2933
  "fetch", "origin",
2932
2934
  f"{branch_name}:refs/remotes/origin/{branch_name}",
2933
- cwd=main_repo, timeout=60, project_key=project_key,
2935
+ cwd=main_repo,
2936
+ timeout=settings.GIT_FETCH_TIMEOUT,
2937
+ project_key=project_key,
2934
2938
  )
2935
2939
  except RuntimeError:
2936
2940
  pass # Branch may not exist on remote yet (first analysis)
@@ -2986,7 +2990,9 @@ class WorkspaceManager:
2986
2990
  await self._git(
2987
2991
  "fetch", "origin",
2988
2992
  f"{branch_name}:refs/remotes/origin/{branch_name}",
2989
- cwd=main_repo, timeout=60, project_key=project_key,
2993
+ cwd=main_repo,
2994
+ timeout=settings.GIT_FETCH_TIMEOUT,
2995
+ project_key=project_key,
2990
2996
  )
2991
2997
  except RuntimeError:
2992
2998
  pass
@@ -3023,7 +3029,9 @@ class WorkspaceManager:
3023
3029
  try:
3024
3030
  await self._git(
3025
3031
  "push", "origin", "--delete", branch_name,
3026
- cwd=main_repo, project_key=project_key,
3032
+ cwd=main_repo,
3033
+ timeout=settings.GIT_PUSH_TIMEOUT,
3034
+ project_key=project_key,
3027
3035
  )
3028
3036
  logger.info(
3029
3037
  "Deleted remote branch %s for fresh analysis restart (new worktree path)",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.16.5
3
+ Version: 1.17.0
4
4
  Summary: Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform
5
5
  Author-email: Jason Sun <dev.winds@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "forgexa-cli"
3
- version = "1.16.5"
3
+ version = "1.17.0"
4
4
  description = "Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform"
5
5
  requires-python = ">=3.9"
6
6
  license = "MIT"
File without changes
File without changes