code-analysis-client 1.6.122__tar.gz → 1.6.128__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 (25) hide show
  1. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/PKG-INFO +2 -2
  2. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/client.py +6 -1
  3. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/server_api.py +0 -3
  4. code_analysis_client-1.6.128/code_analysis_client/version.txt +1 -0
  5. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client.egg-info/PKG-INFO +2 -2
  6. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client.egg-info/requires.txt +1 -1
  7. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/pyproject.toml +1 -1
  8. code_analysis_client-1.6.122/code_analysis_client/version.txt +0 -1
  9. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/README.md +0 -0
  10. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/__init__.py +0 -0
  11. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/commands_proxy.py +0 -0
  12. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/config.py +0 -0
  13. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/exceptions.py +0 -0
  14. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/file_session.py +0 -0
  15. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/py.typed +0 -0
  16. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/queue_wait.py +0 -0
  17. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/responses.py +0 -0
  18. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/schema_disk_cache.py +0 -0
  19. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/server_schema.py +0 -0
  20. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/universal_file.py +0 -0
  21. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client/validation.py +0 -0
  22. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client.egg-info/SOURCES.txt +0 -0
  23. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client.egg-info/dependency_links.txt +0 -0
  24. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/code_analysis_client.egg-info/top_level.txt +0 -0
  25. {code_analysis_client-1.6.122 → code_analysis_client-1.6.128}/setup.cfg +0 -0
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-analysis-client
3
- Version: 1.6.122
3
+ Version: 1.6.128
4
4
  Summary: Async JSON-RPC client for the code-analysis MCP server (mcp-proxy-adapter JsonRpcClient)
5
5
  Author-email: Vasiliy Zdanovskiy <vasilyvz@gmail.com>
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
- Requires-Dist: mcp-proxy-adapter>=8.10.29
8
+ Requires-Dist: mcp-proxy-adapter>=8.10.39
9
9
  Provides-Extra: dev
10
10
  Requires-Dist: pytest>=8.0; extra == "dev"
11
11
  Requires-Dist: pytest-asyncio>=0.25.0; extra == "dev"
@@ -206,12 +206,17 @@ class CodeAnalysisAsyncClient:
206
206
  immediately instead of polling; call ``await handle.wait(...)`` to
207
207
  get the same result the default path would have returned.
208
208
 
209
+ ``use_cmd_endpoint`` remains accepted-and-ignored (documented no-op,
210
+ kept only for signature compatibility). mcp-proxy-adapter removed the
211
+ legacy ``/cmd`` REST route and the matching parameter from
212
+ ``execute_command()`` in 8.10.32 (the route returned 404 on any real
213
+ server even before removal); this client's transport is JSON-RPC only.
214
+
209
215
  A non-queued response is returned unchanged regardless of ``auto_poll``.
210
216
  """
211
217
  resp = await self._rpc.execute_command(
212
218
  command,
213
219
  params or {},
214
- use_cmd_endpoint=use_cmd_endpoint,
215
220
  )
216
221
  if not is_queued_envelope(resp):
217
222
  return resp
@@ -96,9 +96,6 @@ EDITING_REMOVED_COMMANDS: FrozenSet[str] = frozenset(
96
96
  "restore_backup_file",
97
97
  "delete_backup",
98
98
  "clear_all_backups",
99
- "split_class",
100
- "extract_superclass",
101
- "split_file_to_package",
102
99
  "format_code",
103
100
  }
104
101
  )
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-analysis-client
3
- Version: 1.6.122
3
+ Version: 1.6.128
4
4
  Summary: Async JSON-RPC client for the code-analysis MCP server (mcp-proxy-adapter JsonRpcClient)
5
5
  Author-email: Vasiliy Zdanovskiy <vasilyvz@gmail.com>
6
6
  Requires-Python: >=3.10
7
7
  Description-Content-Type: text/markdown
8
- Requires-Dist: mcp-proxy-adapter>=8.10.29
8
+ Requires-Dist: mcp-proxy-adapter>=8.10.39
9
9
  Provides-Extra: dev
10
10
  Requires-Dist: pytest>=8.0; extra == "dev"
11
11
  Requires-Dist: pytest-asyncio>=0.25.0; extra == "dev"
@@ -1,4 +1,4 @@
1
- mcp-proxy-adapter>=8.10.29
1
+ mcp-proxy-adapter>=8.10.39
2
2
 
3
3
  [dev]
4
4
  pytest>=8.0
@@ -12,7 +12,7 @@ authors = [
12
12
  { name = "Vasiliy Zdanovskiy", email = "vasilyvz@gmail.com" },
13
13
  ]
14
14
  dependencies = [
15
- "mcp-proxy-adapter>=8.10.29",
15
+ "mcp-proxy-adapter>=8.10.39",
16
16
  ]
17
17
 
18
18
  [project.optional-dependencies]