Skip to content

Commit 81ff6f5

Browse files
committed
release: Bump to version 0.8.5
1 parent 35d9292 commit 81ff6f5

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

deployments/aws/ec2/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ variable "instance_type" {
4949
variable "tracecat_version" {
5050
description = "The version of Tracecat to use"
5151
type = string
52-
default = "0.8.4"
52+
default = "0.8.5"
5353
}
5454

5555
variable "core_db_volume_size" {

deployments/aws/fargate/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ variable "tracecat_ui_image" {
2929
}
3030

3131
variable "tracecat_image_tag" {
32-
default = "0.8.4"
32+
default = "0.8.5"
3333
}
3434

3535
variable "force_new_deployment" {

docker-compose.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- ./Caddyfile:/etc/caddy/Caddyfile
1515

1616
api:
17-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.8.4}
17+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.8.5}
1818
container_name: api
1919
restart: unless-stopped
2020
networks:
@@ -43,7 +43,7 @@ services:
4343
TEMPORAL__CLUSTER_QUEUE: ${TEMPORAL__CLUSTER_QUEUE}
4444

4545
worker:
46-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.8.4}
46+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.8.5}
4747
restart: unless-stopped
4848
networks:
4949
- core
@@ -80,7 +80,7 @@ services:
8080
command: ["python", "tracecat/dsl/worker.py"]
8181

8282
ui:
83-
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.8.4}
83+
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.8.5}
8484
container_name: ui
8585
restart: unless-stopped
8686
networks:

docs/self-hosting/deployment-options/docker-compose.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Use the commands listed below to download the required configuration files
2828
(`env.sh`, `.env.example`) and generate your own `.env` file.
2929

3030
```bash
31-
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/env.sh
32-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/.env.example
31+
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/env.sh
32+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/.env.example
3333
chmod +x env.sh && ./env.sh
3434
```
3535

@@ -44,13 +44,13 @@ Tracecat uses Caddy as a reverse proxy.
4444
You'll need to download the following `Caddyfile` to configure this service.
4545

4646
```bash
47-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/Caddyfile
47+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/Caddyfile
4848
```
4949

5050
## Download Docker Compose File
5151

5252
```bash
53-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/docker-compose.yml
53+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/docker-compose.yml
5454
```
5555

5656
## Start Tracecat
@@ -76,5 +76,5 @@ To access the Tracecat GUI, visit `http://localhost`.
7676

7777
- Log into Tracecat and build your first playbook. [View quickstart](/quickstart).
7878
- Tracecat comes with basic (email + password) authentication. Find out how to configure other authentication methods. [View docs](/self-hosting/authentication/introduction).
79-
- Read inline comments in the generated `.env` file to better understand Tracecat's configurations. [View `.env.example` file](https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/.env.example)
79+
- Read inline comments in the generated `.env` file to better understand Tracecat's configurations. [View `.env.example` file](https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/.env.example)
8080
- (Optional) Configure external-facing webhooks. [View docs](/self-hosting/webhooks).

docs/self-hosting/updating.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ description: Learn how to safely update versions and run data migrations.
2323
version.
2424

2525
```
26-
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/env-migration.sh
27-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/.env.example
26+
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/env-migration.sh
27+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/.env.example
2828
```
2929
</Step>
3030
<Step title="Execute environment variables migration">
@@ -39,7 +39,7 @@ description: Learn how to safely update versions and run data migrations.
3939
Download the latest Docker Compose file.
4040

4141
```
42-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.4/docker-compose.yml
42+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.8.5/docker-compose.yml
4343
```
4444
</Step>
4545
<Step title="Restart Tracecat">

tracecat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Tracecat is the open source Tines / Splunk SOAR alternative."""
22

3-
__version__ = "0.8.4"
3+
__version__ = "0.8.5"

0 commit comments

Comments
 (0)