Skip to content

Commit 9df3bad

Browse files
committed
release: Bump 0.13.3
1 parent d4877ea commit 9df3bad

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

deployments/aws/fargate/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ variable "TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA" {
5555

5656
variable "tracecat_image_tag" {
5757
type = string
58-
default = "0.13.2"
58+
default = "0.13.3"
5959
}
6060

6161
variable "use_git_commit_sha" {

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.13.2}
17+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.13.3}
1818
container_name: api
1919
restart: unless-stopped
2020
networks:
@@ -60,7 +60,7 @@ services:
6060
OLLAMA__API_URL: ${OLLAMA__API_URL}
6161

6262
worker:
63-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.13.2}
63+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.13.3}
6464
restart: unless-stopped
6565
networks:
6666
- core
@@ -84,7 +84,7 @@ services:
8484
command: ["python", "tracecat/dsl/worker.py"]
8585

8686
ui:
87-
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.13.2}
87+
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.13.3}
8888
container_name: ui
8989
restart: unless-stopped
9090
networks:

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

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

4242
```bash
43-
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.2/env.sh
44-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.2/.env.example
43+
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/env.sh
44+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/.env.example
4545
chmod +x env.sh && ./env.sh
4646
```
4747

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

6969
```bash
70-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.2/Caddyfile
70+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/Caddyfile
7171
```
7272

7373
## Download Docker Compose File
7474

7575
```bash
76-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.2/docker-compose.yml
76+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/docker-compose.yml
7777
```
7878

7979
## Start Tracecat
@@ -114,5 +114,5 @@ The login the first time: default email is `[email protected]` and the default pa
114114

115115
- Log into Tracecat and build your first playbook. [View quickstart](/quickstart).
116116
- Tracecat comes with basic (email + password) authentication. Find out how to configure other authentication methods. [View docs](/self-hosting/authentication/introduction).
117-
- 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.13.2/.env.example)
117+
- 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.13.3/.env.example)
118118
- (Optional) Configure external-facing webhooks. [View docs](/self-hosting/webhooks).

docs/tutorials/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.13.2/env-migration.sh
27-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.2/.env.example
26+
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/env-migration.sh
27+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/.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.13.2/docker-compose.yml
42+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.3/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.13.2"
3+
__version__ = "0.13.3"

0 commit comments

Comments
 (0)