forgexa-cli 1.24.2__tar.gz → 1.24.4__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.
Files changed (24) hide show
  1. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/PKG-INFO +1 -1
  2. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/__init__.py +1 -1
  3. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/daemon.py +11 -11
  4. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/PKG-INFO +1 -1
  5. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/pyproject.toml +1 -1
  6. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/README.md +0 -0
  7. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/_build_config.py +0 -0
  8. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/autoupgrade.py +0 -0
  9. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/main.py +0 -0
  10. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli/py.typed +0 -0
  11. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/SOURCES.txt +0 -0
  12. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/dependency_links.txt +0 -0
  13. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/entry_points.txt +0 -0
  14. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/requires.txt +0 -0
  15. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/forgexa_cli.egg-info/top_level.txt +0 -0
  16. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/setup.cfg +0 -0
  17. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_auth_and_runtime_commands.py +0 -0
  18. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_autoupgrade.py +0 -0
  19. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_check_command.py +0 -0
  20. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_expiry_warnings_and_revoke.py +0 -0
  21. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_runtime_credentials.py +0 -0
  22. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_session_credentials.py +0 -0
  23. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_silent_install.py +0 -0
  24. {forgexa_cli-1.24.2 → forgexa_cli-1.24.4}/tests/test_upgrade_observability.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.24.2
3
+ Version: 1.24.4
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.24.2"
2
+ __version__ = "1.24.4"
@@ -870,7 +870,7 @@ except (ImportError, ModuleNotFoundError):
870
870
  # DAEMON_VERSION is the protocol/logic version of the daemon code.
871
871
  # Kept in sync with pyproject.toml version via bump-version.sh.
872
872
  # CLIENT_TYPE identifies which packaging/distribution this daemon runs in.
873
- DAEMON_VERSION = "1.24.2"
873
+ DAEMON_VERSION = "1.24.4"
874
874
 
875
875
 
876
876
  def _detect_client_type() -> str:
@@ -2865,7 +2865,7 @@ class WorkspaceManager:
2865
2865
  try:
2866
2866
  await self._git(
2867
2867
  "fetch", "origin",
2868
- f"{branch_name}:refs/remotes/origin/{branch_name}",
2868
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
2869
2869
  cwd=ws_path, project_key=project_key,
2870
2870
  )
2871
2871
  except RuntimeError as exc:
@@ -3378,7 +3378,7 @@ class WorkspaceManager:
3378
3378
  try:
3379
3379
  await self._git(
3380
3380
  "fetch", "origin",
3381
- f"{branch_name}:refs/remotes/origin/{branch_name}",
3381
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
3382
3382
  cwd=ws_path, timeout=settings.GIT_FETCH_TIMEOUT,
3383
3383
  project_key=project_key,
3384
3384
  )
@@ -3472,7 +3472,7 @@ class WorkspaceManager:
3472
3472
  try:
3473
3473
  await self._git(
3474
3474
  "fetch", "origin",
3475
- f"{branch_name}:refs/remotes/origin/{branch_name}",
3475
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
3476
3476
  cwd=main_repo, timeout=settings.GIT_FETCH_TIMEOUT,
3477
3477
  project_key=project_key,
3478
3478
  )
@@ -3573,7 +3573,7 @@ class WorkspaceManager:
3573
3573
  try:
3574
3574
  await self._git(
3575
3575
  "fetch", "origin",
3576
- f"{branch_name}:refs/remotes/origin/{branch_name}",
3576
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
3577
3577
  cwd=ws_path, timeout=settings.GIT_FETCH_TIMEOUT, project_key=project_key,
3578
3578
  )
3579
3579
  except RuntimeError as _pre_fe2:
@@ -3797,7 +3797,7 @@ class WorkspaceManager:
3797
3797
  try:
3798
3798
  await self._git(
3799
3799
  "fetch", "origin",
3800
- f"{branch_name}:refs/remotes/origin/{branch_name}",
3800
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
3801
3801
  cwd=ws_path,
3802
3802
  project_key=project_key,
3803
3803
  )
@@ -3828,7 +3828,7 @@ class WorkspaceManager:
3828
3828
  try:
3829
3829
  await self._git(
3830
3830
  "fetch", "origin",
3831
- f"{branch_name}:refs/remotes/origin/{branch_name}",
3831
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
3832
3832
  cwd=ws_path,
3833
3833
  project_key=project_key,
3834
3834
  )
@@ -4003,7 +4003,7 @@ class WorkspaceManager:
4003
4003
  try:
4004
4004
  await self._git(
4005
4005
  "fetch", "origin",
4006
- f"{branch_name}:refs/remotes/origin/{branch_name}",
4006
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
4007
4007
  cwd=main_repo,
4008
4008
  timeout=settings.GIT_FETCH_TIMEOUT,
4009
4009
  project_key=project_key,
@@ -4075,7 +4075,7 @@ class WorkspaceManager:
4075
4075
  try:
4076
4076
  await self._git(
4077
4077
  "fetch", "origin",
4078
- f"{branch_name}:refs/remotes/origin/{branch_name}",
4078
+ f"+{branch_name}:refs/remotes/origin/{branch_name}",
4079
4079
  cwd=main_repo,
4080
4080
  timeout=settings.GIT_FETCH_TIMEOUT,
4081
4081
  project_key=project_key,
@@ -12637,7 +12637,7 @@ class RuntimeDaemon:
12637
12637
  *,
12638
12638
  timeout: int | None = None,
12639
12639
  ) -> None:
12640
- """Refresh origin/<branch> explicitly, even inside single-branch clones.
12640
+ """Force-refresh origin/<branch> explicitly, even inside single-branch clones.
12641
12641
 
12642
12642
  Defaults to GIT_FETCH_TIMEOUT so that large active repos (e.g. HP SI)
12643
12643
  don't hit a hard 120 s ceiling on per-branch incremental fetches.
@@ -12645,7 +12645,7 @@ class RuntimeDaemon:
12645
12645
  _timeout = timeout if timeout is not None else settings.GIT_FETCH_TIMEOUT
12646
12646
  await self.workspace_manager._git(
12647
12647
  "fetch", "origin",
12648
- f"{branch}:refs/remotes/origin/{branch}",
12648
+ f"+{branch}:refs/remotes/origin/{branch}",
12649
12649
  cwd=workspace_path,
12650
12650
  timeout=_timeout,
12651
12651
  project_key=project_key,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forgexa-cli
3
- Version: 1.24.2
3
+ Version: 1.24.4
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.24.2"
3
+ version = "1.24.4"
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