Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit aea1e19

Browse files
committed
chore: release v0.48.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 379fd2a commit aea1e19

File tree

7 files changed

+40
-23
lines changed

7 files changed

+40
-23
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "docs",
33
"license": "Apache-2.0",
44
"type": "module",
5-
"version": "0.47.0",
5+
"version": "0.48.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

public/llms-full.txt

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ Will default to username if left empty
12141214
Upon successful authentication, Daytona will display the following message:
12151215

12161216
```text
1217-
Gitee provider has been registered
1217+
Git provider has been registered
12181218
```
12191219

12201220
[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
@@ -2463,9 +2463,9 @@ You can install Daytona by manually downloading the binary and placing it in you
24632463

24642464
```shell
24652465
# x86-64
2466-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-amd64 -o daytona
2466+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-amd64 -o daytona
24672467
# ARM64
2468-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-arm64 -o daytona
2468+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-arm64 -o daytona
24692469
```
24702470

24712471
:::
@@ -2488,9 +2488,9 @@ You can install Daytona by manually downloading the binary and placing it in you
24882488

24892489
```shell
24902490
# x86-64/Intel-based
2491-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-amd64 -o daytona
2491+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-amd64 -o daytona
24922492
# ARM64/Apple Silicon
2493-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-arm64 -o daytona
2493+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-arm64 -o daytona
24942494
```
24952495

24962496
:::
@@ -2506,7 +2506,7 @@ Install Daytona on Windows using the following PowerShell script:
25062506
```powershell
25072507
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
25082508
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
2509-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
2509+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
25102510
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
25112511
daytona serve;
25122512
```
@@ -2516,9 +2516,9 @@ You can install Daytona by manually downloading the binary and placing it in you
25162516

25172517
```sh
25182518
# x86-64
2519-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-amd64.exe -o daytona
2519+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
25202520
# AArch64
2521-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
2521+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
25222522
```
25232523

25242524
:::
@@ -3056,12 +3056,18 @@ __Flags__
30563056
Register a Git provider
30573057

30583058
```shell
3059-
daytona git-providers add [flags]
3059+
daytona git-providers add [GIT_PROVIDER_ID] [flags]
30603060
```
30613061

30623062
__Flags__
30633063
| Long | Short | Description |
30643064
| :--- | :---- | :---------- |
3065+
| `--alias` | `-a` | Alias |
3066+
| `--base-api-url` | `-b` | Base API Url |
3067+
| `--signing-key` | `-k` | Signing Key |
3068+
| `--signing-method` | `-s` | Signing Method (ssh, gpg) |
3069+
| `--token` | `-t` | Personal Access Token |
3070+
| `--username` | `-u` | Username |
30653071
| `--help` | | help for daytona |
30663072

30673073
## daytona git-providers delete
@@ -3660,6 +3666,7 @@ daytona ssh [WORKSPACE] [PROJECT] [CMD...] [flags]
36603666
__Flags__
36613667
| Long | Short | Description |
36623668
| :--- | :---- | :---------- |
3669+
| `--edit` | `-e` | Edit the project's SSH config |
36633670
| `--option` | `-o` | Specify SSH options in KEY=VALUE format. |
36643671
| `--yes` | `-y` | Automatically confirm any prompts |
36653672
| `--help` | | help for daytona |

src/content/docs/installation/installation.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ You can install Daytona by manually downloading the binary and placing it in you
3232

3333
```shell
3434
# x86-64
35-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-amd64 -o daytona
35+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-amd64 -o daytona
3636
# ARM64
37-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-linux-arm64 -o daytona
37+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-linux-arm64 -o daytona
3838
```
3939

4040
:::
@@ -57,9 +57,9 @@ You can install Daytona by manually downloading the binary and placing it in you
5757

5858
```shell
5959
# x86-64/Intel-based
60-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-amd64 -o daytona
60+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-amd64 -o daytona
6161
# ARM64/Apple Silicon
62-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-darwin-arm64 -o daytona
62+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-darwin-arm64 -o daytona
6363
```
6464

6565
:::
@@ -75,7 +75,7 @@ Install Daytona on Windows using the following PowerShell script:
7575
```powershell
7676
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
7777
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
78-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
78+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
7979
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
8080
daytona serve;
8181
```
@@ -85,9 +85,9 @@ You can install Daytona by manually downloading the binary and placing it in you
8585

8686
```sh
8787
# x86-64
88-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-amd64.exe -o daytona
88+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
8989
# AArch64
90-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
90+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
9191
```
9292

9393
:::

src/content/docs/installation/method/script-powershell.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const partial = true
1111
```powershell
1212
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
1313
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
14-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.47/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.48/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
1515
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
1616
daytona serve;
1717
```
@@ -21,9 +21,9 @@ You can install Daytona by manually downloading the binary and placing it in you
2121

2222
```powershell
2323
# x86-64
24-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-amd64.exe -o daytona
2525
# AArch64
26-
curl -sf -L https://download.daytona.io/daytona/v0.47/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.48/daytona-windows-arm64.exe -o daytona
2727
```
2828

2929
</Aside>

src/content/docs/tools/cli.mdx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,12 +411,18 @@ __Flags__
411411
Register a Git provider
412412

413413
```shell
414-
daytona git-providers add [flags]
414+
daytona git-providers add [GIT_PROVIDER_ID] [flags]
415415
```
416416

417417
__Flags__
418418
| Long | Short | Description |
419419
| :--- | :---- | :---------- |
420+
| `--alias` | `-a` | Alias |
421+
| `--base-api-url` | `-b` | Base API Url |
422+
| `--signing-key` | `-k` | Signing Key |
423+
| `--signing-method` | `-s` | Signing Method (ssh, gpg) |
424+
| `--token` | `-t` | Personal Access Token |
425+
| `--username` | `-u` | Username |
420426
| `--help` | | help for daytona |
421427

422428
## daytona git-providers delete
@@ -1015,6 +1021,7 @@ daytona ssh [WORKSPACE] [PROJECT] [CMD...] [flags]
10151021
__Flags__
10161022
| Long | Short | Description |
10171023
| :--- | :---- | :---------- |
1024+
| `--edit` | `-e` | Edit the project's SSH config |
10181025
| `--option` | `-o` | Specify SSH options in KEY=VALUE format. |
10191026
| `--yes` | `-y` | Automatically confirm any prompts |
10201027
| `--help` | | help for daytona |

tools/update-cli-reference.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ function flagToRow(flag) {
7777
name = `\`--${name}\``
7878
shorthand = shorthand ? `\`-${shorthand}\`` : ''
7979
usage = usage ? usage : ''
80+
if (usage.endsWith('\n')) {
81+
usage = usage.slice(0, -1)
82+
}
8083

8184
return `| ${name} | ${shorthand} | ${usage} |\n`
8285
}
@@ -140,7 +143,7 @@ async function process(args) {
140143
const commandOpts = {
141144
ref: {
142145
type: 'string',
143-
default: `v0.47.0`,
146+
default: `v0.48.0`,
144147
},
145148
output: {
146149
type: 'string',

tools/update-server-reference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function process(args) {
109109
const commandOpts = {
110110
ref: {
111111
type: 'string',
112-
default: `v0.47.0`,
112+
default: `v0.48.0`,
113113
},
114114
output: {
115115
type: 'string',

0 commit comments

Comments
 (0)