Skip to content

Commit 41bc3a9

Browse files
committed
Release 0.1.36
1 parent 26e70bf commit 41bc3a9

10 files changed

Lines changed: 38 additions & 10 deletions

File tree

apps/chrome-extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Open Browser Use",
44
"description": "Open Browser Use Chrome automation extension.",
5-
"version": "0.1.35",
5+
"version": "0.1.36",
66
"icons": {
77
"16": "icons/icon-16.png",
88
"32": "icons/icon-32.png",

cmd/open-browser-use/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/spf13/cobra"
2828
)
2929

30-
const version = "0.1.35"
30+
const version = "0.1.36"
3131
const defaultChromeExtensionID = "bgjoihaepiejlfjinojjfgokghnodnhd"
3232
const defaultCLISessionID = "obu-cli"
3333
const defaultMCPSessionID = "obu-mcp"

cmd/open-browser-use/main_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,11 +633,11 @@ func TestListInstalledChromeProfilesIncludesSupportedBrowsers(t *testing.T) {
633633
}
634634
home := t.TempDir()
635635
t.Setenv("HOME", home)
636-
writeChromeExtensionManifest(t, home, "Default", "0.1.35")
636+
writeChromeExtensionManifest(t, home, "Default", "0.1.36")
637637
writeChromeLocalState(t, home, `{"profile":{"info_cache":{"Default":{"name":"Stable"}}}}`)
638-
writeChromeBetaExtensionManifest(t, home, "Default", "0.1.35")
638+
writeChromeBetaExtensionManifest(t, home, "Default", "0.1.36")
639639
writeLocalStateAtRoot(t, chromeBetaRootForTest(home), `{"profile":{"info_cache":{"Default":{"name":"Beta"}}}}`)
640-
writeBitBrowserExtensionManifest(t, home, "abc123", "Default", "0.1.35")
640+
writeBitBrowserExtensionManifest(t, home, "abc123", "Default", "0.1.36")
641641
writeLocalStateAtRoot(t, bitBrowserRootForTest(home, "abc123"), `{"profile":{"info_cache":{"Default":{"name":"Bit"}}}}`)
642642

643643
profiles, err := listInstalledChromeProfiles()
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## [2026-05-14 23:59] | Task: release 0.1.36
2+
3+
用户诉求:在多浏览器 browser/profile 选择能力完成并验证后发版。
4+
5+
主要改动:
6+
7+
- 将 Open Browser Use CLI、Chrome extension、JS SDK、Python SDK、protocol package
8+
和 browser client package 版本提升到 `0.1.36`
9+
- 在用户可见发布记录中加入 multi-browser profile selection 和 `active.json`
10+
socket recovery 的 release note。
11+
12+
验证:
13+
14+
- `make ci`
15+
- `make release-package`
16+
17+
影响文件:
18+
19+
- `cmd/open-browser-use/main.go`
20+
- `cmd/open-browser-use/main_test.go`
21+
- `apps/chrome-extension/manifest.json`
22+
- `packages/open-browser-use-cli/package.json`
23+
- `packages/open-browser-use-js/package.json`
24+
- `packages/open-browser-use-python/pyproject.toml`
25+
- `packages/browser-use-protocol/package.json`
26+
- `packages/browser-client-rewrite/package.json`
27+
- `docs/releases/feature-release-notes.md`

docs/releases/feature-release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
| 日期 | 功能域 | 用户价值 | 变更摘要 |
66
| --- | --- | --- | --- |
7+
| 2026-05-14 | Multi-browser Profile Selection | 同一台机器上同时安装 Chrome Stable、Chrome Beta 和 BitBrowser 插件时,agent 会先确认本轮任务使用哪个 browser/profile,并在后续命令里稳定连接同一个目标;`active.json` 被删除后也会自动扫描存活 socket 恢复,不再需要重装插件。 | 发布 `0.1.36` patch 版本,CLI discovery/routing 新增 browser-aware target、`--browser` selector、Chrome Beta/BitBrowser manifest 支持,并更新 bundled skill 的多 profile 使用指导。 |
78
| 2026-05-11 | Chrome Web Store Submission Guard | Chrome Web Store 已有版本在审核中时,tag release 不会因为商店拒绝编辑而整体失败;维护者可以选择跳过,或显式取消旧审核并用最新版本重发。 | `publish-chrome-web-store.mjs` 在上传前调用 `fetchStatus`,默认遇到 active submission 写出 `ACTIVE_SUBMISSION` skip 结果;新增 `--cancel-pending`、workflow 输入和 `CWS_CANCEL_PENDING_SUBMISSION` 变量。 |
89
| 2026-05-11 | Guided Store Setup | `open-browser-use setup` 会直接打开 Open Browser Use 的 Chrome Web Store 页面,用户可以在明确的页面里安装或启用扩展并按需重启。 | 发布 `0.1.35` patch 版本,setup 仍会注册 native host 和写入 External Extensions hint,同时新增 `--no-open` 供 CI、测试或无桌面环境只写配置。 |
910
| 2026-05-11 | Chrome Extension Popup | 高分辨率屏幕上 popup 顶部 LOGO 更清晰,不再因为用 32px 位图放大显示而出现明显锯齿。 | 发布 `0.1.34` patch 版本,popup 头部改用 128px icon 作为源图并保持 32 CSS px 显示尺寸;同步 runtime、SDK、extension 版本号和发布制品。 |

packages/browser-client-rewrite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-browser-use/browser-client-rewrite",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"private": true,
55
"type": "module",
66
"scripts": {

packages/browser-use-protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@open-browser-use/browser-use-protocol",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"private": true,
55
"description": "Browser Use native pipe framing and JSON-RPC helpers.",
66
"type": "module",

packages/open-browser-use-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-browser-use",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"description": "Open Browser Use native host and CLI binary.",
55
"license": "MIT",
66
"type": "module",

packages/open-browser-use-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-browser-use-sdk",
3-
"version": "0.1.35",
3+
"version": "0.1.36",
44
"description": "JavaScript/TypeScript SDK for Open Browser Use.",
55
"license": "MIT",
66
"type": "module",

packages/open-browser-use-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "open-browser-use-sdk"
3-
version = "0.1.35"
3+
version = "0.1.36"
44
description = "Python SDK for Open Browser Use."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)