Skip to content

Commit

Permalink
release: 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
topher-lo committed Nov 4, 2024
1 parent 6935c7c commit 9ddd259
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion deployments/aws/fargate/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variable "TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA" {

variable "tracecat_image_tag" {
type = string
default = "0.12.6"
default = "0.13.0"
}

variable "use_git_commit_sha" {
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
- ./Caddyfile:/etc/caddy/Caddyfile

api:
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.12.6}
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.13.0}
container_name: api
restart: unless-stopped
networks:
Expand Down Expand Up @@ -60,7 +60,7 @@ services:
OLLAMA__API_URL: ${OLLAMA__API_URL}

worker:
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.12.6}
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.13.0}
restart: unless-stopped
networks:
- core
Expand All @@ -84,7 +84,7 @@ services:
command: ["python", "tracecat/dsl/worker.py"]

ui:
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.12.6}
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.13.0}
container_name: ui
restart: unless-stopped
networks:
Expand Down
10 changes: 5 additions & 5 deletions docs/self-hosting/deployment-options/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.6/env.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.12.6/.env.example
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/env.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/.env.example
chmod +x env.sh && ./env.sh
```

Expand All @@ -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.12.6/Caddyfile
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/Caddyfile
```

## Download Docker Compose File

```bash
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.12.6/docker-compose.yml
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/docker-compose.yml
```

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

- Log into Tracecat and build your first playbook. [View quickstart](/quickstart).
- Tracecat comes with basic (email + password) authentication. Find out how to configure other authentication methods. [View docs](/self-hosting/authentication/introduction).
- 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.12.6/.env.example)
- 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.0/.env.example)
- (Optional) Configure external-facing webhooks. [View docs](/self-hosting/webhooks).
6 changes: 3 additions & 3 deletions docs/self-hosting/updating.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.6/env-migration.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.12.6/.env.example
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/env-migration.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/.env.example
```
</Step>
<Step title="Execute environment variables migration">
Expand All @@ -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.12.6/docker-compose.yml
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.13.0/docker-compose.yml
```
</Step>
<Step title="Restart Tracecat">
Expand Down
2 changes: 1 addition & 1 deletion tracecat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Tracecat is the open source Tines / Splunk SOAR alternative."""

__version__ = "0.12.6"
__version__ = "0.13.0"

0 comments on commit 9ddd259

Please sign in to comment.