meshagent-anthropic 0.24.5__tar.gz → 0.25.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.
Files changed (25) hide show
  1. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/CHANGELOG.md +9 -0
  2. {meshagent_anthropic-0.24.5/meshagent_anthropic.egg-info → meshagent_anthropic-0.25.0}/PKG-INFO +4 -4
  3. meshagent_anthropic-0.25.0/meshagent/anthropic/version.py +1 -0
  4. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0/meshagent_anthropic.egg-info}/PKG-INFO +4 -4
  5. meshagent_anthropic-0.25.0/meshagent_anthropic.egg-info/requires.txt +6 -0
  6. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/pyproject.toml +3 -3
  7. meshagent_anthropic-0.24.5/meshagent/anthropic/version.py +0 -1
  8. meshagent_anthropic-0.24.5/meshagent_anthropic.egg-info/requires.txt +0 -6
  9. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/LICENSE +0 -0
  10. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/MANIFEST.in +0 -0
  11. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/README.md +0 -0
  12. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/__init__.py +0 -0
  13. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/mcp.py +0 -0
  14. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/messages_adapter.py +0 -0
  15. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/openai_responses_stream_adapter.py +0 -0
  16. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/proxy/__init__.py +0 -0
  17. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/proxy/proxy.py +0 -0
  18. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/tests/anthropic_live_test.py +0 -0
  19. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/tests/mcp_test.py +0 -0
  20. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/tests/messages_adapter_test.py +0 -0
  21. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent/anthropic/tests/openai_responses_stream_adapter_test.py +0 -0
  22. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent_anthropic.egg-info/SOURCES.txt +0 -0
  23. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent_anthropic.egg-info/dependency_links.txt +0 -0
  24. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/meshagent_anthropic.egg-info/top_level.txt +0 -0
  25. {meshagent_anthropic-0.24.5 → meshagent_anthropic-0.25.0}/setup.cfg +0 -0
@@ -1,3 +1,12 @@
1
+ ## [0.25.0]
2
+ - Added SQL column-schema parsing and CLI support for SQL-like `--columns` when creating tables or adding columns.
3
+ - Breaking: SQL query requests now use a single `params` map for typed bindings instead of `parameters`/`param_values`.
4
+ - Added `published`/`public` port fields in service specs for externally routed services.
5
+ - Secrets set now supports `for_identity` to set secrets on behalf of another identity.
6
+ - Added a Slack events HTTP bot package with dependencies including `pyjwt` 2.10.
7
+ - Breaking: the CLI `exec` command was removed.
8
+ - ThreadAdapter message writing now uses `write_text_message` and accepts participant name strings.
9
+
1
10
  ## [0.24.5]
2
11
  - Stability
3
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-anthropic
3
- Version: 0.24.5
3
+ Version: 0.25.0
4
4
  Summary: Anthropic Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -11,9 +11,9 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: meshagent-api~=0.24.5
15
- Requires-Dist: meshagent-agents~=0.24.5
16
- Requires-Dist: meshagent-tools~=0.24.5
14
+ Requires-Dist: meshagent-api~=0.25.0
15
+ Requires-Dist: meshagent-agents~=0.25.0
16
+ Requires-Dist: meshagent-tools~=0.25.0
17
17
  Requires-Dist: anthropic<1.0,>=0.25
18
18
  Dynamic: license-file
19
19
 
@@ -0,0 +1 @@
1
+ __version__ = "0.25.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-anthropic
3
- Version: 0.24.5
3
+ Version: 0.25.0
4
4
  Summary: Anthropic Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -11,9 +11,9 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
- Requires-Dist: meshagent-api~=0.24.5
15
- Requires-Dist: meshagent-agents~=0.24.5
16
- Requires-Dist: meshagent-tools~=0.24.5
14
+ Requires-Dist: meshagent-api~=0.25.0
15
+ Requires-Dist: meshagent-agents~=0.25.0
16
+ Requires-Dist: meshagent-tools~=0.25.0
17
17
  Requires-Dist: anthropic<1.0,>=0.25
18
18
  Dynamic: license-file
19
19
 
@@ -0,0 +1,6 @@
1
+ pytest~=8.4
2
+ pytest-asyncio~=0.26
3
+ meshagent-api~=0.25.0
4
+ meshagent-agents~=0.25.0
5
+ meshagent-tools~=0.25.0
6
+ anthropic<1.0,>=0.25
@@ -12,9 +12,9 @@ keywords = []
12
12
  dependencies = [
13
13
  "pytest~=8.4",
14
14
  "pytest-asyncio~=0.26",
15
- "meshagent-api~=0.24.5",
16
- "meshagent-agents~=0.24.5",
17
- "meshagent-tools~=0.24.5",
15
+ "meshagent-api~=0.25.0",
16
+ "meshagent-agents~=0.25.0",
17
+ "meshagent-tools~=0.25.0",
18
18
  "anthropic>=0.25,<1.0"
19
19
  ]
20
20
 
@@ -1 +0,0 @@
1
- __version__ = "0.24.5"
@@ -1,6 +0,0 @@
1
- pytest~=8.4
2
- pytest-asyncio~=0.26
3
- meshagent-api~=0.24.5
4
- meshagent-agents~=0.24.5
5
- meshagent-tools~=0.24.5
6
- anthropic<1.0,>=0.25