Skip to content

Commit

Permalink
chore: release v0.48.0
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Puljak <[email protected]>
  • Loading branch information
Tpuljak committed Dec 6, 2024
1 parent 379fd2a commit aea1e19
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 23 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "docs",
"license": "Apache-2.0",
"type": "module",
"version": "0.47.0",
"version": "0.48.0",
"scripts": {
"postinstall": "is-ci || husky",
"dev": "astro dev --host",
Expand Down
25 changes: 16 additions & 9 deletions public/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ Will default to username if left empty
Upon successful authentication, Daytona will display the following message:

```text
Gitee provider has been registered
Git provider has been registered
```

[gh-token]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic
Expand Down Expand Up @@ -2463,9 +2463,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.47/daytona-linux-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-amd64 -o daytona
# ARM64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-arm64 -o daytona
```

:::
Expand All @@ -2488,9 +2488,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.47/daytona-darwin-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-amd64 -o daytona
# ARM64/Apple Silicon
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-arm64 -o daytona
```

:::
Expand All @@ -2506,7 +2506,7 @@ Install Daytona on Windows using the following PowerShell script:
```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.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/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;
```
Expand All @@ -2516,9 +2516,9 @@ You can install Daytona by manually downloading the binary and placing it in you

```sh
# x86-64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
```

:::
Expand Down Expand Up @@ -3056,12 +3056,18 @@ __Flags__
Register a Git provider

```shell
daytona git-providers add [flags]
daytona git-providers add [GIT_PROVIDER_ID] [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--alias` | `-a` | Alias |
| `--base-api-url` | `-b` | Base API Url |
| `--signing-key` | `-k` | Signing Key |
| `--signing-method` | `-s` | Signing Method (ssh, gpg) |
| `--token` | `-t` | Personal Access Token |
| `--username` | `-u` | Username |
| `--help` | | help for daytona |

## daytona git-providers delete
Expand Down Expand Up @@ -3660,6 +3666,7 @@ daytona ssh [WORKSPACE] [PROJECT] [CMD...] [flags]
__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--edit` | `-e` | Edit the project's SSH config |
| `--option` | `-o` | Specify SSH options in KEY=VALUE format. |
| `--yes` | `-y` | Automatically confirm any prompts |
| `--help` | | help for daytona |
Expand Down
14 changes: 7 additions & 7 deletions src/content/docs/installation/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,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.47/daytona-linux-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-amd64 -o daytona
# ARM64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-arm64 -o daytona
```

:::
Expand All @@ -57,9 +57,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.47/daytona-darwin-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-amd64 -o daytona
# ARM64/Apple Silicon
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-arm64 -o daytona
```

:::
Expand All @@ -75,7 +75,7 @@ Install Daytona on Windows using the following PowerShell script:
```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.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/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;
```
Expand All @@ -85,9 +85,9 @@ You can install Daytona by manually downloading the binary and placing it in you

```sh
# x86-64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
```

:::
Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/installation/method/script-powershell.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/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;
```
Expand All @@ -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.47/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
```

</Aside>
9 changes: 8 additions & 1 deletion src/content/docs/tools/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -411,12 +411,18 @@ __Flags__
Register a Git provider

```shell
daytona git-providers add [flags]
daytona git-providers add [GIT_PROVIDER_ID] [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--alias` | `-a` | Alias |
| `--base-api-url` | `-b` | Base API Url |
| `--signing-key` | `-k` | Signing Key |
| `--signing-method` | `-s` | Signing Method (ssh, gpg) |
| `--token` | `-t` | Personal Access Token |
| `--username` | `-u` | Username |
| `--help` | | help for daytona |

## daytona git-providers delete
Expand Down Expand Up @@ -1015,6 +1021,7 @@ daytona ssh [WORKSPACE] [PROJECT] [CMD...] [flags]
__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--edit` | `-e` | Edit the project's SSH config |
| `--option` | `-o` | Specify SSH options in KEY=VALUE format. |
| `--yes` | `-y` | Automatically confirm any prompts |
| `--help` | | help for daytona |
Expand Down
5 changes: 4 additions & 1 deletion tools/update-cli-reference.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ function flagToRow(flag) {
name = `\`--${name}\``
shorthand = shorthand ? `\`-${shorthand}\`` : ''
usage = usage ? usage : ''
if (usage.endsWith('\n')) {
usage = usage.slice(0, -1)
}

return `| ${name} | ${shorthand} | ${usage} |\n`
}
Expand Down Expand Up @@ -140,7 +143,7 @@ async function process(args) {
const commandOpts = {
ref: {
type: 'string',
default: `v0.47.0`,
default: `v0.48.0`,
},
output: {
type: 'string',
Expand Down
2 changes: 1 addition & 1 deletion tools/update-server-reference.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async function process(args) {
const commandOpts = {
ref: {
type: 'string',
default: `v0.47.0`,
default: `v0.48.0`,
},
output: {
type: 'string',
Expand Down

0 comments on commit aea1e19

Please sign in to comment.