From 8897147e7635dd330f7545517f2660b129fe1084 Mon Sep 17 00:00:00 2001
From: Daryl Lim <5508348+daryllimyt@users.noreply.github.com>
Date: Mon, 16 Dec 2024 15:42:04 +0800
Subject: [PATCH] release: Bump 0.18.0
---
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 62a4ec4b0..f32749bc0 100644
--- a/deployments/aws/ecs/variables.tf
+++ b/deployments/aws/ecs/variables.tf
@@ -113,7 +113,7 @@ variable "TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA" {
variable "tracecat_image_tag" {
type = string
- default = "0.17.3"
+ default = "0.18.0"
}
variable "use_git_commit_sha" {
diff --git a/deployments/aws/variables.tf b/deployments/aws/variables.tf
index 7edc7ce61..a711606e1 100644
--- a/deployments/aws/variables.tf
+++ b/deployments/aws/variables.tf
@@ -41,7 +41,7 @@ variable "TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA" {
variable "tracecat_image_tag" {
type = string
- default = "0.17.3"
+ default = "0.18.0"
}
variable "use_git_commit_sha" {
diff --git a/docker-compose.yml b/docker-compose.yml
index 8ffd84f52..7e49016dc 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.17.3}
+ image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.18.0}
container_name: api
restart: unless-stopped
networks:
@@ -61,7 +61,7 @@ services:
OLLAMA__API_URL: ${OLLAMA__API_URL}
worker:
- image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.17.3}
+ image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.18.0}
restart: unless-stopped
networks:
- core
@@ -85,7 +85,7 @@ services:
command: ["python", "tracecat/dsl/worker.py"]
executor:
- image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.17.3}
+ image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.18.0}
restart: unless-stopped
networks:
- core
@@ -117,7 +117,7 @@ services:
]
ui:
- image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.17.3}
+ image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.18.0}
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 ecbc353bf..36857276d 100644
--- a/docs/self-hosting/deployment-options/docker-compose.mdx
+++ b/docs/self-hosting/deployment-options/docker-compose.mdx
@@ -40,8 +40,8 @@ Use the commands listed below to download the required configuration files
(`env.sh`, `.env.example`) and generate your own `.env` file.
```bash
-curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.17.3/env.sh
-curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.17.3/.env.example
+curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/env.sh
+curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/.env.example
chmod +x env.sh && ./env.sh
```
@@ -67,13 +67,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.17.3/Caddyfile
+curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/Caddyfile
```
## Download Docker Compose File
```bash
-curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.17.3/docker-compose.yml
+curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/docker-compose.yml
```
## Start Tracecat
diff --git a/docs/tutorials/updating.mdx b/docs/tutorials/updating.mdx
index 238cc7594..8b011a6bf 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.17.3/env-migration.sh
- curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.17.3/.env.example
+ curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/env-migration.sh
+ curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/.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.17.3/docker-compose.yml
+ curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.18.0/docker-compose.yml
```
diff --git a/tracecat/__init__.py b/tracecat/__init__.py
index 8b9abe3a1..c5fb27826 100644
--- a/tracecat/__init__.py
+++ b/tracecat/__init__.py
@@ -1,3 +1,3 @@
"""Tracecat is the open source Tines / Splunk SOAR alternative."""
-__version__ = "0.17.3"
+__version__ = "0.18.0"