From bbb2517739925fe7622bf4d19436a2111b8269cb Mon Sep 17 00:00:00 2001 From: Daryl Lim <5508348+daryllimyt@users.noreply.github.com> Date: Wed, 15 Jan 2025 02:21:31 +0800 Subject: [PATCH] release: Bump 0.20.4 --- deployments/aws/ecs/variables.tf | 2 +- deployments/aws/variables.tf | 2 +- docker-compose.yml | 8 ++++---- docs/self-hosting/deployment-options/docker-compose.mdx | 8 ++++---- docs/tutorials/updating.mdx | 6 +++--- tracecat/__init__.py | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/deployments/aws/ecs/variables.tf b/deployments/aws/ecs/variables.tf index 8a62a3db7..3ab145761 100644 --- a/deployments/aws/ecs/variables.tf +++ b/deployments/aws/ecs/variables.tf @@ -97,7 +97,7 @@ variable "tracecat_ui_image" { variable "tracecat_image_tag" { type = string - default = "0.20.3" + default = "0.20.4" } variable "temporal_server_image" { diff --git a/deployments/aws/variables.tf b/deployments/aws/variables.tf index b7ee2fe88..42c387d5f 100644 --- a/deployments/aws/variables.tf +++ b/deployments/aws/variables.tf @@ -65,7 +65,7 @@ variable "tracecat_ui_image" { variable "tracecat_image_tag" { type = string - default = "0.20.3" + default = "0.20.4" } variable "temporal_server_image" { diff --git a/docker-compose.yml b/docker-compose.yml index 772339b0b..9359b7b13 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: - ./Caddyfile:/etc/caddy/Caddyfile api: - image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3} + image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4} container_name: api restart: unless-stopped networks: @@ -59,7 +59,7 @@ services: OLLAMA__API_URL: ${OLLAMA__API_URL} worker: - image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3} + image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4} restart: unless-stopped networks: - core @@ -83,7 +83,7 @@ services: command: ["python", "tracecat/dsl/worker.py"] executor: - image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.3} + image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4} restart: unless-stopped networks: - core @@ -118,7 +118,7 @@ services: ] ui: - image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.3} + image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.4} container_name: ui restart: unless-stopped networks: diff --git a/docs/self-hosting/deployment-options/docker-compose.mdx b/docs/self-hosting/deployment-options/docker-compose.mdx index 4d1691f45..3f73e8d25 100644 --- a/docs/self-hosting/deployment-options/docker-compose.mdx +++ b/docs/self-hosting/deployment-options/docker-compose.mdx @@ -45,10 +45,10 @@ Use the commands listed below to download the required configuration files ```bash # 1. Download the env.sh installation script -curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/env.sh +curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/env.sh # 2. Download the .env.example template file (env.sh needs this to generate your .env file) -curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/.env.example +curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/.env.example # 3. Make the env.sh script executable and run it chmod +x env.sh && ./env.sh @@ -84,13 +84,13 @@ Tracecat uses Caddy as a reverse proxy. You'll need to download the following `Caddyfile` to configure this service. ```bash -curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/Caddyfile +curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/Caddyfile ``` ## Download Docker Compose File ```bash -curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/docker-compose.yml +curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/docker-compose.yml ``` ## Start Tracecat diff --git a/docs/tutorials/updating.mdx b/docs/tutorials/updating.mdx index 2f6699d7f..8a8c30ef7 100644 --- a/docs/tutorials/updating.mdx +++ b/docs/tutorials/updating.mdx @@ -23,8 +23,8 @@ description: Learn how to safely update versions and run data migrations. version. ``` - curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/env-migration.sh - curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/.env.example + curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/env-migration.sh + curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/.env.example ``` @@ -39,7 +39,7 @@ description: Learn how to safely update versions and run data migrations. Download the latest Docker Compose file. ``` - curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.3/docker-compose.yml + curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/docker-compose.yml ``` diff --git a/tracecat/__init__.py b/tracecat/__init__.py index d67696ed9..58bf8bc94 100644 --- a/tracecat/__init__.py +++ b/tracecat/__init__.py @@ -1,3 +1,3 @@ """Tracecat is the open source Tines / Splunk SOAR alternative.""" -__version__ = "0.20.3" +__version__ = "0.20.4"