mirror of
https://github.com/actionbook/actionbook.git
synced 2026-09-19 03:28:06 +08:00
chore: version packages
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
---
|
||||
"@actionbookdev/cli": minor
|
||||
---
|
||||
|
||||
Add multi-session support for parallel tab operations
|
||||
|
||||
- New `-S` / `--session` global flag to name sessions (e.g. `-S work`, `-S mail`)
|
||||
- Each named session binds to its own tab within a single browser process
|
||||
- Session commands: `browser session list|active|destroy <name>`
|
||||
- Session file naming: `{profile}@{session}.json` with auto-migration from legacy format
|
||||
- Daemon routes commands to correct tab per session via lazy attach
|
||||
- Fix: deterministic page persistence using known page ID after `browser open`
|
||||
- Fix: forked sessions inherit parent's active tab instead of falling back to arbitrary first page
|
||||
- Fix: `Target.createTarget` correctly routed through browser-level WebSocket (no sessionId)
|
||||
Generated
+1
-1
@@ -4,7 +4,7 @@ version = 4
|
||||
|
||||
[[package]]
|
||||
name = "actionbook"
|
||||
version = "0.10.1"
|
||||
version = "0.11.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "actionbook"
|
||||
version = "0.10.1"
|
||||
version = "0.11.0"
|
||||
edition = "2021"
|
||||
description = "Actionbook CLI - Browser automation with zero installation"
|
||||
license = "MIT"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-darwin-arm64",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for macOS ARM64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-darwin-x64",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for macOS x64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-linux-arm64-gnu",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for Linux ARM64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-linux-x64-gnu",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for Linux x64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-win32-arm64",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for Windows ARM64",
|
||||
"os": [
|
||||
"win32"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli-win32-x64",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "Actionbook CLI native binary for Windows x64",
|
||||
"os": [
|
||||
"win32"
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
# @actionbookdev/cli
|
||||
|
||||
## 0.11.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#230](https://github.com/actionbook/actionbook/pull/230) [`f5eea78`](https://github.com/actionbook/actionbook/commit/f5eea781b7243085b8747a37ad8cbf536684dbef) Thanks [@ZhangHanDong](https://github.com/ZhangHanDong)! - Add multi-session support for parallel tab operations
|
||||
|
||||
- New `-S` / `--session` global flag to name sessions (e.g. `-S work`, `-S mail`)
|
||||
- Each named session binds to its own tab within a single browser process
|
||||
- Session commands: `browser session list|active|destroy <name>`
|
||||
- Session file naming: `{profile}@{session}.json` with auto-migration from legacy format
|
||||
- Daemon routes commands to correct tab per session via lazy attach
|
||||
- Fix: deterministic page persistence using known page ID after `browser open`
|
||||
- Fix: forked sessions inherit parent's active tab instead of falling back to arbitrary first page
|
||||
- Fix: `Target.createTarget` correctly routed through browser-level WebSocket (no sessionId)
|
||||
|
||||
## 0.10.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@actionbookdev/cli",
|
||||
"version": "0.10.1",
|
||||
"version": "0.11.0",
|
||||
"description": "CLI for Actionbook - Browser automation and action manuals for AI agents",
|
||||
"private": false,
|
||||
"bin": {
|
||||
|
||||
Reference in New Issue
Block a user