forgexa-cli 1.16.5__tar.gz → 1.16.6__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.
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/PKG-INFO +1 -1
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli/__init__.py +1 -1
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli/daemon.py +13 -5
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/PKG-INFO +1 -1
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/pyproject.toml +1 -1
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/README.md +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli/_build_config.py +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli/main.py +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli/py.typed +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/SOURCES.txt +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/dependency_links.txt +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/entry_points.txt +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/requires.txt +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/forgexa_cli.egg-info/top_level.txt +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/setup.cfg +0 -0
- {forgexa_cli-1.16.5 → forgexa_cli-1.16.6}/tests/test_auth_and_runtime_commands.py +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""forgexa-cli — Forgexa command-line client."""
|
|
2
|
-
__version__ = "1.16.
|
|
2
|
+
__version__ = "1.16.6"
|
|
@@ -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.
|
|
526
|
+
DAEMON_VERSION = "1.16.6"
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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)",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|