Skip to content

Commit f69bf1f

Browse files
committed
Release 0.27.0
1 parent 9e0fee1 commit f69bf1f

File tree

19 files changed

+34
-36
lines changed

19 files changed

+34
-36
lines changed

Development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ poetry run pytest ./tests/unit/test_*.py
100100
To reduce build time (e.g., if no changes were made to the client-runtime component), you can use an existing Docker container image by
101101
setting the SANDBOX_RUNTIME_CONTAINER_IMAGE environment variable to the desired Docker image.
102102
103-
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.26-nikolaik`
103+
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.27-nikolaik`
104104
105105
## Develop inside Docker container
106106

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,17 @@ See the [Running OpenHands](https://docs.all-hands.dev/modules/usage/installatio
4343
system requirements and more information.
4444

4545
```bash
46-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik
46+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik
4747

4848
docker run -it --rm --pull=always \
49-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
49+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
5050
-e LOG_ALL_EVENTS=true \
5151
-v /var/run/docker.sock:/var/run/docker.sock \
5252
-v ~/.openhands-state:/.openhands-state \
5353
-p 3000:3000 \
5454
--add-host host.docker.internal:host-gateway \
5555
--name openhands-app \
56-
docker.all-hands.dev/all-hands-ai/openhands:0.26
56+
docker.all-hands.dev/all-hands-ai/openhands:0.27
5757
```
5858

5959
You'll find OpenHands running at [http://localhost:3000](http://localhost:3000)!

containers/dev/compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- BACKEND_HOST=${BACKEND_HOST:-"0.0.0.0"}
1212
- SANDBOX_API_HOSTNAME=host.docker.internal
1313
#
14-
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-ghcr.io/all-hands-ai/runtime:0.26-nikolaik}
14+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-ghcr.io/all-hands-ai/runtime:0.27-nikolaik}
1515
- SANDBOX_USER_ID=${SANDBOX_USER_ID:-1234}
1616
- WORKSPACE_MOUNT_PATH=${WORKSPACE_BASE:-$PWD/workspace}
1717
ports:

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
image: openhands:latest
88
container_name: openhands-app-${DATE:-}
99
environment:
10-
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik}
10+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik}
1111
#- SANDBOX_USER_ID=${SANDBOX_USER_ID:-1234} # enable this only if you want a specific non-root sandbox user but you will have to manually adjust permissions of openhands-state for this user
1212
- WORKSPACE_MOUNT_PATH=${WORKSPACE_BASE:-$PWD/workspace}
1313
ports:

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/how-to/cli-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ LLM_API_KEY="sk_test_12345"
5252
```bash
5353
docker run -it \
5454
--pull=always \
55-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
55+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
5656
-e SANDBOX_USER_ID=$(id -u) \
5757
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
5858
-e LLM_API_KEY=$LLM_API_KEY \
@@ -61,7 +61,7 @@ docker run -it \
6161
-v /var/run/docker.sock:/var/run/docker.sock \
6262
--add-host host.docker.internal:host-gateway \
6363
--name openhands-app-$(date +%Y%m%d%H%M%S) \
64-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
64+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
6565
python -m openhands.core.cli
6666
```
6767

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/how-to/headless-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ LLM_API_KEY="sk_test_12345"
4646
```bash
4747
docker run -it \
4848
--pull=always \
49-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
49+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
5050
-e SANDBOX_USER_ID=$(id -u) \
5151
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
5252
-e LLM_API_KEY=$LLM_API_KEY \
@@ -56,6 +56,6 @@ docker run -it \
5656
-v /var/run/docker.sock:/var/run/docker.sock \
5757
--add-host host.docker.internal:host-gateway \
5858
--name openhands-app-$(date +%Y%m%d%H%M%S) \
59-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
59+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
6060
python -m openhands.core.main -t "write a bash script that prints hi" --no-auto-continue
6161
```

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/installation.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
La façon la plus simple d'exécuter OpenHands est avec Docker.
1414

1515
```bash
16-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik
16+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik
1717

1818
docker run -it --rm --pull=always \
19-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
19+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
2020
-e LOG_ALL_EVENTS=true \
2121
-v /var/run/docker.sock:/var/run/docker.sock \
2222
-p 3000:3000 \
2323
--add-host host.docker.internal:host-gateway \
2424
--name openhands-app \
25-
docker.all-hands.dev/all-hands-ai/openhands:0.26
25+
docker.all-hands.dev/all-hands-ai/openhands:0.27
2626
```
2727

2828
Vous pouvez également exécuter OpenHands en mode [headless scriptable](https://docs.all-hands.dev/modules/usage/how-to/headless-mode), en tant que [CLI interactive](https://docs.all-hands.dev/modules/usage/how-to/cli-mode), ou en utilisant l'[Action GitHub OpenHands](https://docs.all-hands.dev/modules/usage/how-to/github-action).

docs/i18n/fr/docusaurus-plugin-content-docs/current/usage/runtimes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ C'est le Runtime par défaut qui est utilisé lorsque vous démarrez OpenHands.
1313

1414
```
1515
docker run # ...
16-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
16+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
1717
-v /var/run/docker.sock:/var/run/docker.sock \
1818
# ...
1919
```

docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage/how-to/cli-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ LLM_API_KEY="sk_test_12345"
5050
```bash
5151
docker run -it \
5252
--pull=always \
53-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
53+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
5454
-e SANDBOX_USER_ID=$(id -u) \
5555
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
5656
-e LLM_API_KEY=$LLM_API_KEY \
@@ -59,7 +59,7 @@ docker run -it \
5959
-v /var/run/docker.sock:/var/run/docker.sock \
6060
--add-host host.docker.internal:host-gateway \
6161
--name openhands-app-$(date +%Y%m%d%H%M%S) \
62-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
62+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
6363
python -m openhands.core.cli
6464
```
6565

docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage/how-to/headless-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ LLM_API_KEY="sk_test_12345"
4747
```bash
4848
docker run -it \
4949
--pull=always \
50-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
50+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
5151
-e SANDBOX_USER_ID=$(id -u) \
5252
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
5353
-e LLM_API_KEY=$LLM_API_KEY \
@@ -57,6 +57,6 @@ docker run -it \
5757
-v /var/run/docker.sock:/var/run/docker.sock \
5858
--add-host host.docker.internal:host-gateway \
5959
--name openhands-app-$(date +%Y%m%d%H%M%S) \
60-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
60+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
6161
python -m openhands.core.main -t "write a bash script that prints hi" --no-auto-continue
6262
```

docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage/installation.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
在 Docker 中运行 OpenHands 是最简单的方式。
1212

1313
```bash
14-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik
14+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik
1515

1616
docker run -it --rm --pull=always \
17-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
17+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
1818
-e LOG_ALL_EVENTS=true \
1919
-v /var/run/docker.sock:/var/run/docker.sock \
2020
-p 3000:3000 \
2121
--add-host host.docker.internal:host-gateway \
2222
--name openhands-app \
23-
docker.all-hands.dev/all-hands-ai/openhands:0.26
23+
docker.all-hands.dev/all-hands-ai/openhands:0.27
2424
```
2525

2626
你也可以在可脚本化的[无头模式](https://docs.all-hands.dev/modules/usage/how-to/headless-mode)下运行 OpenHands,作为[交互式 CLI](https://docs.all-hands.dev/modules/usage/how-to/cli-mode),或使用 [OpenHands GitHub Action](https://docs.all-hands.dev/modules/usage/how-to/github-action)

docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage/runtimes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
```
1313
docker run # ...
14-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
14+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
1515
-v /var/run/docker.sock:/var/run/docker.sock \
1616
# ...
1717
```

docs/modules/usage/how-to/cli-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To run OpenHands in CLI mode with Docker:
3535
```bash
3636
docker run -it \
3737
--pull=always \
38-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
38+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
3939
-e SANDBOX_USER_ID=$(id -u) \
4040
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
4141
-e LLM_API_KEY=$LLM_API_KEY \
@@ -45,7 +45,7 @@ docker run -it \
4545
-v ~/.openhands-state:/.openhands-state \
4646
--add-host host.docker.internal:host-gateway \
4747
--name openhands-app-$(date +%Y%m%d%H%M%S) \
48-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
48+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
4949
python -m openhands.core.cli
5050
```
5151

docs/modules/usage/how-to/headless-mode.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To run OpenHands in Headless mode with Docker:
3232
```bash
3333
docker run -it \
3434
--pull=always \
35-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
35+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
3636
-e SANDBOX_USER_ID=$(id -u) \
3737
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
3838
-e LLM_API_KEY=$LLM_API_KEY \
@@ -43,7 +43,7 @@ docker run -it \
4343
-v ~/.openhands-state:/.openhands-state \
4444
--add-host host.docker.internal:host-gateway \
4545
--name openhands-app-$(date +%Y%m%d%H%M%S) \
46-
docker.all-hands.dev/all-hands-ai/openhands:0.26 \
46+
docker.all-hands.dev/all-hands-ai/openhands:0.27 \
4747
python -m openhands.core.main -t "write a bash script that prints hi"
4848
```
4949

docs/modules/usage/installation.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ A system with a modern processor and a minimum of **4GB RAM** is recommended to
5858
The easiest way to run OpenHands is in Docker.
5959

6060
```bash
61-
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik
61+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik
6262

6363
docker run -it --rm --pull=always \
64-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
64+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
6565
-e LOG_ALL_EVENTS=true \
6666
-v /var/run/docker.sock:/var/run/docker.sock \
6767
-v ~/.openhands-state:/.openhands-state \
6868
-p 3000:3000 \
6969
--add-host host.docker.internal:host-gateway \
7070
--name openhands-app \
71-
docker.all-hands.dev/all-hands-ai/openhands:0.26
71+
docker.all-hands.dev/all-hands-ai/openhands:0.27
7272
```
7373

7474
You'll find OpenHands running at http://localhost:3000!

docs/modules/usage/runtimes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ some flags being passed to `docker run` that make this possible:
1616

1717
```
1818
docker run # ...
19-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.26-nikolaik \
19+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.27-nikolaik \
2020
-v /var/run/docker.sock:/var/run/docker.sock \
2121
# ...
2222
```

frontend/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openhands-frontend",
3-
"version": "0.26.0",
3+
"version": "0.27.0",
44
"private": true,
55
"type": "module",
66
"engines": {

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openhands-ai"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
description = "OpenHands: Code Less, Make More"
55
authors = ["OpenHands"]
66
license = "MIT"
@@ -109,7 +109,6 @@ reportlab = "*"
109109
[tool.coverage.run]
110110
concurrency = ["gevent"]
111111

112-
113112
[tool.poetry.group.runtime.dependencies]
114113
jupyterlab = "*"
115114
notebook = "*"
@@ -138,7 +137,6 @@ ignore = ["D1"]
138137
[tool.ruff.lint.pydocstyle]
139138
convention = "google"
140139

141-
142140
[tool.poetry.group.evaluation.dependencies]
143141
streamlit = "*"
144142
whatthepatch = "*"

0 commit comments

Comments
 (0)