meshagent-computers 0.45.0__tar.gz → 0.45.2__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 (31) hide show
  1. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/CHANGELOG.md +14 -0
  2. {meshagent_computers-0.45.0/meshagent_computers.egg-info → meshagent_computers-0.45.2}/PKG-INFO +4 -4
  3. meshagent_computers-0.45.2/meshagent/computers/version.py +1 -0
  4. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2/meshagent_computers.egg-info}/PKG-INFO +4 -4
  5. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent_computers.egg-info/requires.txt +3 -3
  6. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/pyproject.toml +3 -3
  7. meshagent_computers-0.45.0/meshagent/computers/version.py +0 -1
  8. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/LICENSE +0 -0
  9. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/MANIFEST.in +0 -0
  10. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/README.md +0 -0
  11. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/__init__.py +0 -0
  12. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/agent.py +0 -0
  13. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/agent_test.py +0 -0
  14. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/base_playwright.py +0 -0
  15. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/browserbase.py +0 -0
  16. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/computer.py +0 -0
  17. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/container_playwright.py +0 -0
  18. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/container_playwright_test.py +0 -0
  19. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/docker.py +0 -0
  20. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/docker_test.py +0 -0
  21. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/local_playwright.py +0 -0
  22. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/operator.py +0 -0
  23. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/operator_test.py +0 -0
  24. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/stagehand.py +0 -0
  25. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/stagehand_test.py +0 -0
  26. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/utils.py +0 -0
  27. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent/computers/utils_test.py +0 -0
  28. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent_computers.egg-info/SOURCES.txt +0 -0
  29. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent_computers.egg-info/dependency_links.txt +0 -0
  30. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/meshagent_computers.egg-info/top_level.txt +0 -0
  31. {meshagent_computers-0.45.0 → meshagent_computers-0.45.2}/setup.cfg +0 -0
@@ -1,3 +1,17 @@
1
+ ## [0.45.2]
2
+ - Added `whoami`, typed `ServiceAccount.email`, and service-account `view` filtering, and hardened shared HTTP session creation with certifi-backed TLS, optional host aliases, and an extra CA bundle.
3
+ - Exposed service runtime startup errors and event histories through room service state responses.
4
+ - Added `pull_secret` to service container specs and enforced id-only secret payloads, which is a breaking change for older named-secret service specs.
5
+ - Updated agent chat and thread handling to consume direct payload envelopes, clean outbound metadata, and align completions/thread behavior with the newer message shape.
6
+ - Expanded OpenAI, Anthropic, CLI, and tool parity so web fetch/grep, HTML-to-Markdown, regex handling, data URLs, Docker subprocesses, and MCP/web tool behavior more closely match Python semantics.
7
+ - Removed deprecated compatibility aliases around thread adapters and managed-agent exports, and updated related tests and package wiring accordingly.
8
+
9
+ ## [0.45.1]
10
+ - `meshagent.api` now supports `view` on service-account listing, and the shared HTTP helper uses certifi-backed TLS with optional host aliases and an extra CA bundle.
11
+ - The CLI image and deploy helpers now preserve digest-pinned published refs, canonicalize image mounts, and use personal-room paging for room-connect flows.
12
+ - Web, dataset, script, and computer tooling were tightened to match Python semantics more closely for filename inference, charset decoding, HTML-to-Markdown conversion, regex behavior, environment-variable handling, and Docker subprocess execution.
13
+ - OpenAI, Anthropic, and agent abstractions gained parity updates for threaded channels, completions/response streaming, and raw-output handling.
14
+
1
15
  ## [0.45.0]
2
16
  - Added `whoami` support plus typed `ServiceAccount.email` and `Whoami` responses in the API client.
3
17
  - Exposed service runtime startup errors and lifecycle events through room service state responses.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-computers
3
- Version: 0.45.0
3
+ Version: 0.45.2
4
4
  Summary: Computer Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,9 +12,9 @@ License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
14
  Requires-Dist: openai~=2.25.0
15
- Requires-Dist: meshagent-api==0.45.0
16
- Requires-Dist: meshagent-agents==0.45.0
17
- Requires-Dist: meshagent-tools==0.45.0
15
+ Requires-Dist: meshagent-api==0.45.2
16
+ Requires-Dist: meshagent-agents==0.45.2
17
+ Requires-Dist: meshagent-tools==0.45.2
18
18
  Requires-Dist: playwright~=1.58.0
19
19
  Requires-Dist: stagehand~=3.6.0
20
20
  Requires-Dist: browserbase~=1.2
@@ -0,0 +1 @@
1
+ __version__ = "0.45.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: meshagent-computers
3
- Version: 0.45.0
3
+ Version: 0.45.2
4
4
  Summary: Computer Building Blocks for Meshagent
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Documentation, https://docs.meshagent.com
@@ -12,9 +12,9 @@ License-File: LICENSE
12
12
  Requires-Dist: pytest~=8.4
13
13
  Requires-Dist: pytest-asyncio~=0.26
14
14
  Requires-Dist: openai~=2.25.0
15
- Requires-Dist: meshagent-api==0.45.0
16
- Requires-Dist: meshagent-agents==0.45.0
17
- Requires-Dist: meshagent-tools==0.45.0
15
+ Requires-Dist: meshagent-api==0.45.2
16
+ Requires-Dist: meshagent-agents==0.45.2
17
+ Requires-Dist: meshagent-tools==0.45.2
18
18
  Requires-Dist: playwright~=1.58.0
19
19
  Requires-Dist: stagehand~=3.6.0
20
20
  Requires-Dist: browserbase~=1.2
@@ -1,9 +1,9 @@
1
1
  pytest~=8.4
2
2
  pytest-asyncio~=0.26
3
3
  openai~=2.25.0
4
- meshagent-api==0.45.0
5
- meshagent-agents==0.45.0
6
- meshagent-tools==0.45.0
4
+ meshagent-api==0.45.2
5
+ meshagent-agents==0.45.2
6
+ meshagent-tools==0.45.2
7
7
  playwright~=1.58.0
8
8
  stagehand~=3.6.0
9
9
  browserbase~=1.2
@@ -15,9 +15,9 @@ dependencies = [
15
15
  "pytest~=8.4",
16
16
  "pytest-asyncio~=0.26",
17
17
  "openai~=2.25.0",
18
- "meshagent-api==0.45.0",
19
- "meshagent-agents==0.45.0",
20
- "meshagent-tools==0.45.0",
18
+ "meshagent-api==0.45.2",
19
+ "meshagent-agents==0.45.2",
20
+ "meshagent-tools==0.45.2",
21
21
  "playwright~=1.58.0",
22
22
  "stagehand~=3.6.0",
23
23
  "browserbase~=1.2",
@@ -1 +0,0 @@
1
- __version__ = "0.45.0"