2 Commits
0.0.4 ... 0.0.5

Author SHA1 Message Date
202354bbc1 release: version 0.0.5 🚀
All checks were successful
Build Docker image / Create Release (push) Successful in 7s
Build Docker image / deploy (push) Successful in 1m7s
2026-02-28 16:49:10 +01:00
0d876564cc fix: runtime error due to broken import 2026-02-28 16:49:06 +01:00
3 changed files with 12 additions and 3 deletions

View File

@@ -5,11 +5,22 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Runtime error due to broken import. [Simon Diesenreiter]
0.0.4 (2026-02-28)
------------------
Fix Fix
~~~ ~~~
- Even more changes to accommodate older GraphQL schema. [Simon - Even more changes to accommodate older GraphQL schema. [Simon
Diesenreiter] Diesenreiter]
Other
~~~~~
0.0.3 (2026-02-28) 0.0.3 (2026-02-28)
------------------ ------------------

View File

@@ -1 +1 @@
0.0.4 0.0.5

View File

@@ -18,7 +18,6 @@ from .config.settings import (
VERSION, VERSION,
) )
from .subscriptions.resources import register_subscription_resources from .subscriptions.resources import register_subscription_resources
from .tools.array import register_array_tool
from .tools.docker import register_docker_tool from .tools.docker import register_docker_tool
from .tools.health import register_health_tool from .tools.health import register_health_tool
from .tools.info import register_info_tool from .tools.info import register_info_tool
@@ -51,7 +50,6 @@ def register_all_modules() -> None:
# Register all consolidated tools # Register all consolidated tools
registrars = [ registrars = [
register_info_tool, register_info_tool,
register_array_tool,
register_storage_tool, register_storage_tool,
register_docker_tool, register_docker_tool,
register_vm_tool, register_vm_tool,