From 02005ef131bd5c332018c58ee3eb72aad00e266f Mon Sep 17 00:00:00 2001 From: facumartin Date: Fri, 15 May 2026 12:51:40 -0300 Subject: [PATCH 1/4] upgrade version to be buit with new runner version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a98fa24..6306c11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splight-agent" -version = "0.9.0" +version = "0.9.1" description = "" authors = ["Splight "] readme = "README.md" From eba3e373ffc34f16808b0ac98ce8398c7b140b3d Mon Sep 17 00:00:00 2001 From: facumartin Date: Fri, 15 May 2026 12:56:59 -0300 Subject: [PATCH 2/4] format --- pyproject.toml | 2 +- src/splight_agent/engine.py | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6306c11..af505c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splight-agent" -version = "0.9.1" +venvversion = "0.9.1" description = "" authors = ["Splight "] readme = "README.md" diff --git a/src/splight_agent/engine.py b/src/splight_agent/engine.py index 15e926b..bd9f193 100644 --- a/src/splight_agent/engine.py +++ b/src/splight_agent/engine.py @@ -35,13 +35,16 @@ class ComponentEnvironment(TypedDict): SPLIGHT_PLATFORM_API_HOST: str -class InvalidActionError(Exception): ... +class InvalidActionError(Exception): + ... -class ImageError(Exception): ... +class ImageError(Exception): + ... -class ContainerExecutionError(Exception): ... +class ContainerExecutionError(Exception): + ... class Engine: @@ -182,9 +185,9 @@ def _get_ports(self, instance: DeployableInstance) -> dict | None: if instance.instance_type == "server": ports = {} for port in instance.ports: - ports[f"{port.internal_port}/{port.protocol}"] = ( - port.exposed_port - ) + ports[ + f"{port.internal_port}/{port.protocol}" + ] = port.exposed_port return ports return None From 448ae91f6c13fd1320d9d35d0b9619fe775eccfc Mon Sep 17 00:00:00 2001 From: facumartin Date: Fri, 15 May 2026 12:58:11 -0300 Subject: [PATCH 3/4] revert --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index af505c1..0410a1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splight-agent" -venvversion = "0.9.1" +venvversion = "0.9.0" description = "" authors = ["Splight "] readme = "README.md" From 8d24aae999d420b01db094052eb50ce866cfb8f6 Mon Sep 17 00:00:00 2001 From: facumartin Date: Fri, 15 May 2026 13:02:08 -0300 Subject: [PATCH 4/4] bump version --- install_scripts/install.sh | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install_scripts/install.sh b/install_scripts/install.sh index e90aa7a..73fa988 100755 --- a/install_scripts/install.sh +++ b/install_scripts/install.sh @@ -60,7 +60,7 @@ print_message "$ART_LOGO" SPLIGHT_HOME=$HOME/.splight CONFIG_FILE=$SPLIGHT_HOME/agent_config CONTAINER="splight-agent" -AGENT_VERSION="0.9.0" +AGENT_VERSION="0.9.1" RESTART_POLICY="unless-stopped" LOG_LEVEL=10 diff --git a/pyproject.toml b/pyproject.toml index 0410a1d..af505c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "splight-agent" -venvversion = "0.9.0" +venvversion = "0.9.1" description = "" authors = ["Splight "] readme = "README.md"