Skip to content

Commit 0e6ef44

Browse files
release: 1.0.0-beta.36 (#2463)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 54e8633 commit 0e6ef44

File tree

12 files changed

+29
-29
lines changed

12 files changed

+29
-29
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If applicable, add screenshots to help explain your problem.
3939

4040
**Environment (please complete the following information):**
4141

42-
- Tracecat version (e.g. `1.0.0-beta.35`)
42+
- Tracecat version (e.g. `1.0.0-beta.36`)
4343
- OS (e.g. Ubuntu 20.03 on WSL2)
4444
- Where did you deploy Tracecat? (VM, AWS EC2, etc.)
4545
- CPU architecture

deployments/fargate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export TF_VAR_hosted_zone_id=Z1234567890
6666
export TF_VAR_tracecat_db_encryption_key_arn=arn:aws:secretsmanager:...
6767
export TF_VAR_tracecat_service_key_arn=arn:aws:secretsmanager:...
6868
export TF_VAR_tracecat_signing_secret_arn=arn:aws:secretsmanager:...
69-
export TF_VAR_tracecat_image_tag=1.0.0-beta.35
69+
export TF_VAR_tracecat_image_tag=1.0.0-beta.36
7070

7171
terraform apply
7272
```

deployments/fargate/modules/ecs/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ variable "tracecat_ui_image" {
108108

109109
variable "tracecat_image_tag" {
110110
type = string
111-
default = "1.0.0-beta.35"
111+
default = "1.0.0-beta.36"
112112
}
113113

114114
variable "temporal_server_image" {

deployments/fargate/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ variable "tracecat_ui_image" {
5656

5757
variable "tracecat_image_tag" {
5858
type = string
59-
default = "1.0.0-beta.35"
59+
default = "1.0.0-beta.36"
6060
}
6161

6262
variable "temporal_server_image" {

docker-compose.dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ services:
421421
condition: service_healthy
422422

423423
ui:
424-
# image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
424+
# image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
425425
# container_name: ui
426426
build:
427427
context: ./frontend

docker-compose.yml

Lines changed: 8 additions & 8 deletions
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:-1.0.0-beta.35}
17+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
1818
container_name: api
1919
restart: unless-stopped
2020
networks:
@@ -102,7 +102,7 @@ services:
102102
start_period: 10s
103103

104104
worker:
105-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
105+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
106106
restart: unless-stopped
107107
networks:
108108
- core
@@ -157,7 +157,7 @@ services:
157157
condition: service_healthy
158158

159159
executor:
160-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
160+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
161161
restart: unless-stopped
162162
networks:
163163
- core
@@ -235,7 +235,7 @@ services:
235235
condition: service_healthy
236236

237237
agent-worker:
238-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
238+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
239239
restart: unless-stopped
240240
networks:
241241
- core
@@ -294,7 +294,7 @@ services:
294294
condition: service_healthy
295295

296296
agent-executor:
297-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
297+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
298298
restart: unless-stopped
299299
networks:
300300
- core
@@ -385,7 +385,7 @@ services:
385385
condition: service_healthy
386386

387387
mcp:
388-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
388+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
389389
restart: on-failure:3
390390
networks:
391391
- core
@@ -424,7 +424,7 @@ services:
424424
condition: service_healthy
425425

426426
ui:
427-
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
427+
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
428428
container_name: ui
429429
restart: unless-stopped
430430
networks:
@@ -460,7 +460,7 @@ services:
460460
start_period: 5s
461461

462462
migrations:
463-
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.35}
463+
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-1.0.0-beta.36}
464464
container_name: migrations
465465
restart: "no"
466466
networks:

docs/overview/getting-started.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ Check out the full guide [here](/self-hosting/docker-compose) or follow the quic
2121

2222
```bash
2323
# Setup environment variables and secrets
24-
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/env.sh
25-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/.env.example
24+
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/env.sh
25+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/.env.example
2626
chmod +x env.sh && ./env.sh
2727

2828
# Download Caddyfile
29-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/Caddyfile
29+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/Caddyfile
3030

3131
# Download Docker Compose file
32-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/docker-compose.yml
32+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/docker-compose.yml
3333

3434
# Start Tracecat
3535
docker compose up -d

docs/self-hosting/aws-fargate.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export TF_VAR_tracecat_service_key_arn=<secret-arn>
6161
export TF_VAR_tracecat_signing_secret_arn=<secret-arn>
6262

6363
# Optional but recommended
64-
export TF_VAR_tracecat_image_tag=1.0.0-beta.35
64+
export TF_VAR_tracecat_image_tag=1.0.0-beta.36
6565

6666
terraform apply
6767
```
@@ -88,7 +88,7 @@ cd tracecat/deployments/fargate
8888
git pull origin main
8989

9090
# Set variables as before, then update the image tag
91-
export TF_VAR_tracecat_image_tag=1.0.0-beta.35
91+
export TF_VAR_tracecat_image_tag=1.0.0-beta.36
9292

9393
terraform apply
9494
```

docs/self-hosting/docker-compose.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ description: Deploy Tracecat using Docker Compose.
1818

1919
```bash
2020
# 1. Download the env.sh installation script
21-
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/env.sh
21+
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/env.sh
2222

2323
# 2. Download the .env.example template file (env.sh needs this to generate your .env file)
24-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/.env.example
24+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/.env.example
2525

2626
# 3. Make the env.sh script executable and run it
2727
chmod +x env.sh && ./env.sh
@@ -39,13 +39,13 @@ Tracecat uses Caddy as a reverse proxy.
3939
You'll need to download the following `Caddyfile` to configure this service.
4040

4141
```bash
42-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/Caddyfile
42+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/Caddyfile
4343
```
4444

4545
## Download Docker Compose file
4646

4747
```bash
48-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/docker-compose.yml
48+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/docker-compose.yml
4949
```
5050

5151
## Start Tracecat

docs/self-hosting/updating.mdx

Lines changed: 4 additions & 4 deletions
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/1.0.0-beta.35/env-migration.sh
27-
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/.env.example
26+
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/env-migration.sh
27+
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/.env.example
2828
```
2929

3030
</Step>
@@ -41,14 +41,14 @@ description: Learn how to safely update versions and run data migrations.
4141
Download the latest Docker Compose file.
4242

4343
```
44-
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/docker-compose.yml
44+
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/docker-compose.yml
4545
```
4646
</Step>
4747
<Step title="Update Caddyfile">
4848
Download the latest Caddyfile.
4949

5050
```
51-
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.35/Caddyfile
51+
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/1.0.0-beta.36/Caddyfile
5252
```
5353
</Step>
5454
<Step title="Restart Tracecat">

0 commit comments

Comments
 (0)