Skip to content

Commit 6b2ece3

Browse files
mamoodirbrenopenhands-agentenyst
authored
Release version 0.31.0 (#7629)
Co-authored-by: Robert Brennan <[email protected]> Co-authored-by: openhands <[email protected]> Co-authored-by: Engel Nyst <[email protected]>
1 parent 75b3270 commit 6b2ece3

File tree

26 files changed

+48
-50
lines changed

26 files changed

+48
-50
lines changed

Development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ poetry run pytest ./tests/unit/test_*.py
118118
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
119119
setting the SANDBOX_RUNTIME_CONTAINER_IMAGE environment variable to the desired Docker image.
120120

121-
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.30-nikolaik`
121+
Example: `export SANDBOX_RUNTIME_CONTAINER_IMAGE=ghcr.io/all-hands-ai/runtime:0.31-nikolaik`
122122

123123
## Develop inside Docker container
124124

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.30-nikolaik
46+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik
4747

4848
docker run -it --rm --pull=always \
49-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
49+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30
56+
docker.all-hands.dev/all-hands-ai/openhands:0.31
5757
```
5858

5959
> [!WARNING]

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.30-nikolaik}
14+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-ghcr.io/all-hands-ai/runtime:0.31-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.30-nikolaik}
10+
- SANDBOX_RUNTIME_CONTAINER_IMAGE=${SANDBOX_RUNTIME_CONTAINER_IMAGE:-docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30-nikolaik \
55+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
64+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik \
49+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
59+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik
16+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik
1717

1818
docker run -it --rm --pull=always \
19-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
19+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30
25+
docker.all-hands.dev/all-hands-ai/openhands:0.31
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.30-nikolaik \
16+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik \
1717
-v /var/run/docker.sock:/var/run/docker.sock \
1818
# ...
1919
```

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Docker で OpenHands を CLI モードで実行するには:
3434
```bash
3535
docker run -it \
3636
--pull=always \
37-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
37+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik \
3838
-e SANDBOX_USER_ID=$(id -u) \
3939
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
4040
-e LLM_API_KEY=$LLM_API_KEY \
@@ -44,7 +44,7 @@ docker run -it \
4444
-v ~/.openhands-state:/.openhands-state \
4545
--add-host host.docker.internal:host-gateway \
4646
--name openhands-app-$(date +%Y%m%d%H%M%S) \
47-
docker.all-hands.dev/all-hands-ai/openhands:0.30 \
47+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
4848
python -m openhands.core.cli
4949
```
5050

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ DockerでOpenHandsをヘッドレスモードで実行するには:
3131
```bash
3232
docker run -it \
3333
--pull=always \
34-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
34+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik \
3535
-e SANDBOX_USER_ID=$(id -u) \
3636
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
3737
-e LLM_API_KEY=$LLM_API_KEY \
@@ -42,7 +42,7 @@ docker run -it \
4242
-v ~/.openhands-state:/.openhands-state \
4343
--add-host host.docker.internal:host-gateway \
4444
--name openhands-app-$(date +%Y%m%d%H%M%S) \
45-
docker.all-hands.dev/all-hands-ai/openhands:0.30 \
45+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
4646
python -m openhands.core.main -t "write a bash script that prints hi"
4747
```
4848

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ nikolaik の `SANDBOX_RUNTIME_CONTAINER_IMAGE` は、ランタイムサーバー
2525

2626
```bash
2727
docker run # ...
28-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
28+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik \
2929
-e SANDBOX_USER_ID=$(id -u) \
3030
-e WORKSPACE_MOUNT_PATH=$WORKSPACE_BASE \
3131
-v $WORKSPACE_BASE:/opt/workspace_base \
@@ -82,5 +82,5 @@ docker network create openhands-network
8282
# 分離されたネットワークで OpenHands を実行
8383
docker run # ... \
8484
--network openhands-network \
85-
docker.all-hands.dev/all-hands-ai/openhands:0.30
85+
docker.all-hands.dev/all-hands-ai/openhands:0.31
8686
```

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Para executar o OpenHands no modo CLI com 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.30-nikolaik \
38+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
48+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
4949
python -m openhands.core.cli
5050
```
5151

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Para executar o OpenHands no modo Headless com 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.30-nikolaik \
35+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
46+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
4747
python -m openhands.core.main -t "escreva um script bash que imprima oi"
4848
```
4949

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@
5858
A maneira mais fácil de executar o OpenHands é no Docker.
5959

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

6363
docker run -it --rm --pull=always \
64-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
64+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30
71+
docker.all-hands.dev/all-hands-ai/openhands:0.31
7272
```
7373

7474
Você encontrará o OpenHands em execução em http://localhost:3000!

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Este é o Runtime padrão que é usado quando você inicia o OpenHands. Você po
1313

1414
```
1515
docker run # ...
16-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
16+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30-nikolaik \
53+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
62+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik \
50+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
60+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik
14+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik
1515

1616
docker run -it --rm --pull=always \
17-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
17+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30
23+
docker.all-hands.dev/all-hands-ai/openhands:0.31
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.30-nikolaik \
14+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30-nikolaik \
38+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
48+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik \
35+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30 \
46+
docker.all-hands.dev/all-hands-ai/openhands:0.31 \
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.30-nikolaik
61+
docker pull docker.all-hands.dev/all-hands-ai/runtime:0.31-nikolaik
6262

6363
docker run -it --rm --pull=always \
64-
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.30-nikolaik \
64+
-e SANDBOX_RUNTIME_CONTAINER_IMAGE=docker.all-hands.dev/all-hands-ai/runtime:0.31-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.30
71+
docker.all-hands.dev/all-hands-ai/openhands:0.31
7272
```
7373

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

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.30.1",
3+
"version": "0.31.0",
44
"private": true,
55
"type": "module",
66
"engines": {

openhands/resolver/resolve_all_issues.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def main() -> None:
328328

329329
runtime_container_image = my_args.runtime_container_image
330330
if runtime_container_image is None:
331-
runtime_container_image = 'ghcr.io/all-hands-ai/runtime:0.30.0-nikolaik'
331+
runtime_container_image = 'ghcr.io/all-hands-ai/runtime:0.31.0-nikolaik'
332332

333333
owner, repo = my_args.selected_repo.split('/')
334334
token = my_args.token or os.getenv('GITHUB_TOKEN') or os.getenv('GITLAB_TOKEN')

0 commit comments

Comments
 (0)