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

Commit fac6e5e

Browse files
committed
chore: release v0.38.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent ed4cf3d commit fac6e5e

File tree

5 files changed

+52
-12
lines changed

5 files changed

+52
-12
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.37.0",
5+
"version": "0.38.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

src/content/docs/installation/installation.mdx

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

4545
```shell
4646
# x86-64
47-
curl -sf -L https://download.daytona.io/daytona/v0.37/daytona-linux-amd64 -o daytona
47+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-linux-amd64 -o daytona
4848
# AArch64
49-
curl -sf -L https://download.daytona.io/daytona/v0.37/daytona-linux-arm64 -o daytona
49+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-linux-arm64 -o daytona
5050
```
5151

5252
</Aside>
@@ -92,9 +92,9 @@ You can install Daytona by manually downloading the binary and placing it in you
9292

9393
```shell
9494
# x86-64/Intel-based
95-
curl -sf -L https://download.daytona.io/daytona/v0.37/daytona-darwin-amd64 -o daytona
95+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-darwin-amd64 -o daytona
9696
# AArch64/Apple Silicon
97-
curl -sf -L https://download.daytona.io/daytona/v0.37/daytona-darwin-arm64 -o daytona
97+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-darwin-arm64 -o daytona
9898
```
9999

100100
</Aside>

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.37/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.38/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.37/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-windows-amd64.exe -o daytona
2525
# AArch64
26-
curl -sf -L https://download.daytona.io/daytona/v0.37/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-windows-arm64.exe -o daytona
2727
```
2828

2929
</Aside>

src/content/docs/reference/api.mdx

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Get URL from Git repository
257257

258258
## GET /gitprovider/for-url/\{url\}
259259

260-
Get Git provider
260+
List Git providers for url
261261

262262
### Parameters
263263

@@ -287,6 +287,22 @@ Get Git provider ID
287287
| :-------- | :---------- |
288288
| `200` | OK |
289289

290+
## GET /gitprovider/\{gitProviderId\}
291+
292+
Get Git provider
293+
294+
### Parameters
295+
296+
| Name | Location | Required | Type | Description |
297+
| :--- | :------- | :------- | :--- | :---------- |
298+
| `gitProviderId` | path | true | string | ID |
299+
300+
### Responses
301+
302+
| Status Code | Description |
303+
| :-------- | :---------- |
304+
| `200` | OK |
305+
290306
## DELETE /gitprovider/\{gitProviderId\}
291307

292308
Remove Git provider
@@ -312,6 +328,8 @@ Get Git namespaces
312328
| Name | Location | Required | Type | Description |
313329
| :--- | :------- | :------- | :--- | :---------- |
314330
| `gitProviderId` | path | true | string | Git provider |
331+
| `page` | query | undefined | integer | Page number |
332+
| `per_page` | query | undefined | integer | Number of items per page |
315333

316334
### Responses
317335

@@ -345,6 +363,8 @@ Get Git repositories
345363
| :--- | :------- | :------- | :--- | :---------- |
346364
| `gitProviderId` | path | true | string | Git provider |
347365
| `namespaceId` | path | true | string | Namespace |
366+
| `page` | query | undefined | integer | Page number |
367+
| `per_page` | query | undefined | integer | Number of items per page |
348368

349369
### Responses
350370

@@ -363,6 +383,8 @@ Get Git repository branches
363383
| `gitProviderId` | path | true | string | Git provider |
364384
| `namespaceId` | path | true | string | Namespace |
365385
| `repositoryId` | path | true | string | Repository |
386+
| `page` | query | undefined | integer | Page number |
387+
| `per_page` | query | undefined | integer | Number of items per page |
366388

367389
### Responses
368390

@@ -381,6 +403,8 @@ Get Git repository PRs
381403
| `gitProviderId` | path | true | string | Git provider |
382404
| `namespaceId` | path | true | string | Namespace |
383405
| `repositoryId` | path | true | string | Repository |
406+
| `page` | query | undefined | integer | Page number |
407+
| `per_page` | query | undefined | integer | Number of items per page |
384408

385409
### Responses
386410

src/content/docs/reference/cli.mdx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,15 +285,16 @@ __Flags__
285285
| `--blank` | | Create a blank project without using existing configurations |
286286
| `--branch` | | Specify the Git branches to use in the projects |
287287
| `--builder` | | Specify the builder (currently auto/devcontainer/none) |
288-
| `--code` | `-c` | Open the workspace in the IDE after workspace creation |
289288
| `--custom-image` | | Create the project with the custom image passed as the flag value; Requires setting --custom-image-user flag as well |
290289
| `--custom-image-user` | | Create the project with the custom image user passed as the flag value; Requires setting --custom-image flag as well |
291290
| `--devcontainer-path` | | Automatically assign the devcontainer builder with the path passed as the flag value |
292291
| `--env` | | Specify environment variables (e.g. --env 'KEY1=VALUE1' --env 'KEY2=VALUE2' ...') |
292+
| `--git-provider-config` | | Specify the Git provider configuration ID or alias |
293293
| `--ide` | `-i` | Specify the IDE (vscode, browser, cursor, ssh, jupyter, fleet, clion, goland, intellij, phpstorm, pycharm, rider, rubymine, webstorm) |
294294
| `--manual` | | Manually enter the Git repository |
295295
| `--multi-project` | | Workspace with multiple projects/repos |
296296
| `--name` | | Specify the workspace name |
297+
| `--no-ide` | `-n` | Do not open the workspace in the IDE after workspace creation |
297298
| `--target` | `-t` | Specify the target (e.g. 'local') |
298299
| `--yes` | `-y` | Automatically confirm any prompts |
299300
| `--help` | | help for daytona |
@@ -396,7 +397,7 @@ __Flags__
396397

397398
## daytona git-providers add
398399

399-
Register a Git providers
400+
Register a Git provider
400401

401402
```shell
402403
daytona git-providers add [flags]
@@ -409,7 +410,7 @@ __Flags__
409410

410411
## daytona git-providers delete
411412

412-
Unregister a Git providers
413+
Unregister a Git provider
413414

414415
```shell
415416
daytona git-providers delete [flags]
@@ -418,6 +419,7 @@ daytona git-providers delete [flags]
418419
__Flags__
419420
| Long | Short | Description |
420421
| :--- | :---- | :---------- |
422+
| `--all` | `-a` | Remove all Git providers |
421423
| `--help` | | help for daytona |
422424

423425
## daytona git-providers list
@@ -434,6 +436,19 @@ __Flags__
434436
| `--format` | `-f` | Output format. Must be one of (yaml, json) |
435437
| `--help` | | help for daytona |
436438

439+
## daytona git-providers update
440+
441+
Update a Git provider
442+
443+
```shell
444+
daytona git-providers update [flags]
445+
```
446+
447+
__Flags__
448+
| Long | Short | Description |
449+
| :--- | :---- | :---------- |
450+
| `--help` | | help for daytona |
451+
437452
## daytona ide
438453

439454
Choose the default IDE
@@ -675,6 +690,7 @@ __Flags__
675690
| `--custom-image-user` | | Create the project with the custom image user passed as the flag value; Requires setting --custom-image flag as well |
676691
| `--devcontainer-path` | | Automatically assign the devcontainer builder with the path passed as the flag value |
677692
| `--env` | | Specify environment variables (e.g. --env 'KEY1=VALUE1' --env 'KEY2=VALUE2' ...') |
693+
| `--git-provider-config` | | Specify the Git provider configuration ID or alias |
678694
| `--manual` | | Manually enter the Git repository |
679695
| `--name` | | Specify the project config name |
680696
| `--help` | | help for daytona |

0 commit comments

Comments
 (0)