meshagent-tools 0.22.2__tar.gz → 0.23.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.
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/CHANGELOG.md +6 -0
- {meshagent_tools-0.22.2/meshagent_tools.egg-info → meshagent_tools-0.23.0}/PKG-INFO +2 -2
- meshagent_tools-0.23.0/meshagent/tools/version.py +1 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0/meshagent_tools.egg-info}/PKG-INFO +2 -2
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent_tools.egg-info/requires.txt +1 -1
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/pyproject.toml +1 -1
- meshagent_tools-0.22.2/meshagent/tools/version.py +0 -1
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/LICENSE +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/MANIFEST.in +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/README.md +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/__init__.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/blob.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/config.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/database.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/datetime.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/discovery.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/document_tools.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/hosting.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/multi_tool.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/pydantic.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/storage.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/strict_schema.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/tool.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/toolkit.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/uuid.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent/tools/web_toolkit.py +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent_tools.egg-info/SOURCES.txt +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent_tools.egg-info/dependency_links.txt +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent_tools.egg-info/top_level.txt +0 -0
- {meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/setup.cfg +0 -0
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [0.23.0]
|
|
2
|
+
- Breaking: service template APIs now expect YAML template strings and ServiceTemplateSpec.to_service_spec() no longer accepts values; use ServiceTemplateSpec.from_yaml(..., values) for Jinja rendering
|
|
3
|
+
- Added Jinja/YAML template parsing and ServiceSpec.from_yaml for loading service specs from YAML
|
|
4
|
+
- Added file storage mounts and token role fields in service/container specs
|
|
5
|
+
- Added render_template client method plus new User/UserRoomGrant models and a none project role
|
|
6
|
+
|
|
1
7
|
## [0.22.2]
|
|
2
8
|
- Stability
|
|
3
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-tools
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.0
|
|
4
4
|
Summary: Tools for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pyjwt~=2.10
|
|
13
13
|
Requires-Dist: pytest~=8.4
|
|
14
14
|
Requires-Dist: pytest-asyncio~=0.26
|
|
15
|
-
Requires-Dist: meshagent-api~=0.
|
|
15
|
+
Requires-Dist: meshagent-api~=0.23.0
|
|
16
16
|
Requires-Dist: aiohttp~=3.10
|
|
17
17
|
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
18
18
|
Dynamic: license-file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.23.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-tools
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.0
|
|
4
4
|
Summary: Tools for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pyjwt~=2.10
|
|
13
13
|
Requires-Dist: pytest~=8.4
|
|
14
14
|
Requires-Dist: pytest-asyncio~=0.26
|
|
15
|
-
Requires-Dist: meshagent-api~=0.
|
|
15
|
+
Requires-Dist: meshagent-api~=0.23.0
|
|
16
16
|
Requires-Dist: aiohttp~=3.10
|
|
17
17
|
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
18
18
|
Dynamic: license-file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.22.2"
|
|
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
|
{meshagent_tools-0.22.2 → meshagent_tools-0.23.0}/meshagent_tools.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|