From 60c8fea38a2c4bd5937bd6af81c641f329a65b71 Mon Sep 17 00:00:00 2001 From: Toma Puljak Date: Fri, 4 Oct 2024 15:46:04 +0000 Subject: [PATCH] chore: release v0.36.0 Signed-off-by: Toma Puljak --- package.json | 2 +- src/content/docs/installation/installation.mdx | 8 ++++---- .../installation/method/script-powershell.mdx | 6 +++--- src/content/docs/reference/api.mdx | 10 ++++++++++ src/content/docs/reference/cli.mdx | 16 +++++++++++++++- 5 files changed, 33 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 51875a5b..0cc1a892 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "docs", "license": "Apache-2.0", "type": "module", - "version": "0.35.0", + "version": "0.36.0", "scripts": { "postinstall": "is-ci || husky", "dev": "astro dev --host", diff --git a/src/content/docs/installation/installation.mdx b/src/content/docs/installation/installation.mdx index a2956288..e9fb4da8 100644 --- a/src/content/docs/installation/installation.mdx +++ b/src/content/docs/installation/installation.mdx @@ -44,9 +44,9 @@ You can install Daytona by manually downloading the binary and placing it in you ```shell # x86-64 -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-amd64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-linux-amd64 -o daytona # AArch64 -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-arm64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-linux-arm64 -o daytona ``` @@ -92,9 +92,9 @@ You can install Daytona by manually downloading the binary and placing it in you ```shell # x86-64/Intel-based -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-amd64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-darwin-amd64 -o daytona # AArch64/Apple Silicon -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-arm64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-darwin-arm64 -o daytona ``` diff --git a/src/content/docs/installation/method/script-powershell.mdx b/src/content/docs/installation/method/script-powershell.mdx index 78c8f22a..b5815e15 100644 --- a/src/content/docs/installation/method/script-powershell.mdx +++ b/src/content/docs/installation/method/script-powershell.mdx @@ -11,7 +11,7 @@ export const partial = true ```powershell $architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" } md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12'; -Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.35/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe"; +Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.36/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe"; $env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User); daytona serve; ``` @@ -21,9 +21,9 @@ You can install Daytona by manually downloading the binary and placing it in you ```powershell # x86-64 -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-windows-amd64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-windows-amd64.exe -o daytona # AArch64 -curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-windows-arm64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.36/daytona-windows-arm64.exe -o daytona ``` diff --git a/src/content/docs/reference/api.mdx b/src/content/docs/reference/api.mdx index cb09198a..6415fcc3 100644 --- a/src/content/docs/reference/api.mdx +++ b/src/content/docs/reference/api.mdx @@ -388,6 +388,16 @@ Get Git repository PRs | :-------- | :---------- | | `200` | OK | +## GET /health + +Health check + +### Responses + +| Status Code | Description | +| :-------- | :---------- | +| `200` | OK | + ## GET /profile Get profile data diff --git a/src/content/docs/reference/cli.mdx b/src/content/docs/reference/cli.mdx index a826e1b7..5f06a0da 100644 --- a/src/content/docs/reference/cli.mdx +++ b/src/content/docs/reference/cli.mdx @@ -169,7 +169,6 @@ daytona build logs [flags] __Flags__ | Long | Short | Description | | :--- | :---- | :---------- | -| `--continue-on-completed` | | Continue streaming logs after the build is completed | | `--follow` | `-f` | Follow logs | | `--help` | | help for daytona | @@ -477,6 +476,21 @@ __Flags__ | `--verbose` | `-v` | Show verbose output | | `--help` | | help for daytona | +## daytona logs + +View logs for a workspace/project + +```shell +daytona logs [WORKSPACE] [PROJECT_NAME] [flags] +``` + +__Flags__ +| Long | Short | Description | +| :--- | :---- | :---------- | +| `--follow` | `-f` | Follow logs | +| `--workspace` | `-w` | View workspace logs | +| `--help` | | help for daytona | + ## daytona prebuild Manage prebuilds