Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Bump 0.20.5 #756

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployments/aws/ecs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ variable "tracecat_ui_image" {

variable "tracecat_image_tag" {
type = string
default = "0.20.4"
default = "0.20.5"
}

variable "temporal_server_image" {
Expand Down
2 changes: 1 addition & 1 deletion deployments/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ variable "tracecat_ui_image" {

variable "tracecat_image_tag" {
type = string
default = "0.20.4"
default = "0.20.5"
}

variable "temporal_server_image" {
Expand Down
8 changes: 4 additions & 4 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.20.4}
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.5}
container_name: api
restart: unless-stopped
networks:
Expand Down Expand Up @@ -59,7 +59,7 @@ services:
OLLAMA__API_URL: ${OLLAMA__API_URL}

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

executor:
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.4}
image: ghcr.io/tracecathq/tracecat:${TRACECAT__IMAGE_TAG:-0.20.5}
restart: unless-stopped
networks:
- core
Expand Down Expand Up @@ -118,7 +118,7 @@ services:
]

ui:
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.4}
image: ghcr.io/tracecathq/tracecat-ui:${TRACECAT__IMAGE_TAG:-0.20.5}
container_name: ui
restart: unless-stopped
networks:
Expand Down
8 changes: 4 additions & 4 deletions docs/self-hosting/deployment-options/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Use the commands listed below to download the required configuration files

```bash
# 1. Download the env.sh installation script
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/env.sh
curl -o env.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/env.sh

# 2. Download the .env.example template file (env.sh needs this to generate your .env file)
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/.env.example
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/.env.example

# 3. Make the env.sh script executable and run it
chmod +x env.sh && ./env.sh
Expand Down Expand Up @@ -84,13 +84,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.20.4/Caddyfile
curl -o Caddyfile https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/Caddyfile
```

## Download Docker Compose File

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

## Start Tracecat
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/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.20.4/env-migration.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.4/.env.example
curl -o env-migration.sh https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/env-migration.sh
curl -o .env.example https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/.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.20.4/docker-compose.yml
curl -o docker-compose.yml https://raw.githubusercontent.com/TracecatHQ/tracecat/0.20.5/docker-compose.yml
```
</Step>
<Step title="Restart Tracecat">
Expand Down
6 changes: 5 additions & 1 deletion frontend/src/components/editor/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import { useEffect } from "react"
import { EditorFunctionRead, editorListFunctions } from "@/client"
import {
EditorProps,
loader,
Editor as ReactMonacoEditor,
type EditorProps,
type Monaco,
} from "@monaco-editor/react"
import * as monaco from "monaco-editor"
import { editor, IDisposable, IRange, languages } from "monaco-editor"

import { cn } from "@/lib/utils"
Expand All @@ -33,6 +35,8 @@ import {
} from "@/components/editor/yaml-lang"
import { CenteredSpinner } from "@/components/loading/spinner"

loader.config({ monaco })

const constructDslLang = (): {
conf: languages.LanguageConfiguration
lang: languages.IMonarchLanguage
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.20.4"
__version__ = "0.20.5"
Loading