forgexa-cli 1.29.2__tar.gz → 1.29.3__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.
Potentially problematic release.
This version of forgexa-cli might be problematic. Click here for more details.
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/PKG-INFO +1 -1
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/__init__.py +1 -1
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/daemon.py +5 -3
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/PKG-INFO +1 -1
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/pyproject.toml +1 -1
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/README.md +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/_build_config.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/_local_bind.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/agent_core.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/autoupgrade.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/main.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli/py.typed +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/SOURCES.txt +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/dependency_links.txt +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/entry_points.txt +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/requires.txt +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/forgexa_cli.egg-info/top_level.txt +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/setup.cfg +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_auth_and_runtime_commands.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_autoupgrade.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_check_command.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_expiry_warnings_and_revoke.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_local_bind_commands.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_runtime_credentials.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_session_credentials.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_silent_install.py +0 -0
- {forgexa_cli-1.29.2 → forgexa_cli-1.29.3}/tests/test_upgrade_observability.py +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""forgexa-cli — Forgexa command-line client."""
|
|
2
|
-
__version__ = "1.29.
|
|
2
|
+
__version__ = "1.29.3"
|
|
@@ -910,7 +910,7 @@ except (ImportError, ModuleNotFoundError):
|
|
|
910
910
|
# DAEMON_VERSION is the protocol/logic version of the daemon code.
|
|
911
911
|
# Kept in sync with pyproject.toml version via bump-version.sh.
|
|
912
912
|
# CLIENT_TYPE identifies which packaging/distribution this daemon runs in.
|
|
913
|
-
DAEMON_VERSION = "1.29.
|
|
913
|
+
DAEMON_VERSION = "1.29.3"
|
|
914
914
|
|
|
915
915
|
|
|
916
916
|
def _detect_client_type() -> str:
|
|
@@ -3467,11 +3467,13 @@ class WorkspaceManager:
|
|
|
3467
3467
|
|
|
3468
3468
|
if ws_path.exists():
|
|
3469
3469
|
# Validate that this worktree is healthy (its .git file points to a
|
|
3470
|
-
# valid main repo
|
|
3470
|
+
# valid main repo and has no stale Git index lock. Worktrees break
|
|
3471
|
+
# when directories are moved or an interrupted Git process leaves
|
|
3472
|
+
# its index locked.
|
|
3471
3473
|
if not await self._is_healthy_worktree(
|
|
3472
3474
|
ws_path,
|
|
3473
3475
|
main_repo=main_repo,
|
|
3474
|
-
require_unlocked=
|
|
3476
|
+
require_unlocked=True,
|
|
3475
3477
|
):
|
|
3476
3478
|
logger.warning("Broken worktree detected at %s — removing and recreating", ws_path)
|
|
3477
3479
|
await self._remove_broken_worktree(main_repo, ws_path, workspace_key)
|
|
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
|
|
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
|