Skip to content

Commit 3e78518

Browse files
committed
chore(version): bump version to 1.3.0
1 parent dffcb53 commit 3e78518

File tree

13 files changed

+58
-41
lines changed

13 files changed

+58
-41
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.0] - 2026-02-13
9+
10+
### Breaking Changes
11+
12+
- **Lifecycle: `stop()` vs `dispose()`** - New `stop()` method to cancel the current task while keeping the agent reusable. `dispose()` is now terminal — a disposed agent cannot be reused. This affects both `PageAgentCore` and `PanelAgentAdapter`.
13+
14+
### Features
15+
16+
- **Panel action button** - The panel button now morphs between Stop (■) and Close (X) based on agent status
17+
- **Error history** - Errors and max-step failures are now recorded in `history` as `AgentErrorEvent`, making post-task analysis more complete
18+
19+
### Bug Fixes
20+
21+
- **AbortError handling** - `AbortError` is no longer retried by the LLM client, and shows a clean "Task stopped" message instead of a raw error stack
22+
23+
---
24+
825
## [1.2.0] - 2026-02-11
926

1027
### Features

README-zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242

4343
| Mirrors | URL |
4444
| ------- | ---------------------------------------------------------------------------------- |
45-
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.2.0/dist/iife/page-agent.demo.js |
46-
| China | https://registry.npmmirror.com/page-agent/1.2.0/files/dist/iife/page-agent.demo.js |
45+
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.3.0/dist/iife/page-agent.demo.js |
46+
| China | https://registry.npmmirror.com/page-agent/1.3.0/files/dist/iife/page-agent.demo.js |
4747

4848
> **⚠️ 仅用于技术评估。** Demo LLM 有速率和使用限制,速度较慢,可能随时变更。
4949

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Fastest way to try PageAgent with our free Demo LLM:
4242

4343
| Mirrors | URL |
4444
| ------- | ---------------------------------------------------------------------------------- |
45-
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.2.0/dist/iife/page-agent.demo.js |
46-
| China | https://registry.npmmirror.com/page-agent/1.2.0/files/dist/iife/page-agent.demo.js |
45+
| Global | https://cdn.jsdelivr.net/npm/page-agent@1.3.0/dist/iife/page-agent.demo.js |
46+
| China | https://registry.npmmirror.com/page-agent/1.3.0/files/dist/iife/page-agent.demo.js |
4747

4848
> **⚠️ For technical evaluation only.** Demo LLM has rate limits and usage restrictions. Slow. May change without notice.
4949

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "root",
33
"private": true,
4-
"version": "1.2.0",
4+
"version": "1.3.0",
55
"type": "module",
66
"workspaces": [
77
"packages/page-controller",

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@page-agent/core",
33
"private": false,
4-
"version": "1.2.0",
4+
"version": "1.3.0",
55
"type": "module",
66
"main": "./dist/esm/page-agent-core.js",
77
"module": "./dist/esm/page-agent-core.js",
@@ -45,7 +45,7 @@
4545
"dependencies": {
4646
"chalk": "^5.6.2",
4747
"zod": "^4.3.5",
48-
"@page-agent/llms": "1.2.0",
49-
"@page-agent/page-controller": "1.2.0"
48+
"@page-agent/llms": "1.3.0",
49+
"@page-agent/page-controller": "1.3.0"
5050
}
5151
}

packages/extension/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
"wxt": "^0.20.14"
3939
},
4040
"dependencies": {
41-
"@page-agent/core": "1.2.0",
42-
"@page-agent/llms": "1.2.0",
43-
"@page-agent/page-controller": "1.2.0",
44-
"@page-agent/ui": "1.2.0",
41+
"@page-agent/core": "1.3.0",
42+
"@page-agent/llms": "1.3.0",
43+
"@page-agent/page-controller": "1.3.0",
44+
"@page-agent/ui": "1.3.0",
4545
"chalk": "^5.6.2",
4646
"zod": "^4.3.5"
4747
}

packages/llms/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@page-agent/llms",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"type": "module",
55
"main": "./dist/lib/page-agent-llms.js",
66
"module": "./dist/lib/page-agent-llms.js",

packages/page-agent/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "page-agent",
33
"private": false,
4-
"version": "1.2.0",
4+
"version": "1.3.0",
55
"type": "module",
66
"main": "./dist/esm/page-agent.js",
77
"module": "./dist/esm/page-agent.js",
@@ -44,10 +44,10 @@
4444
"postpublish": "node -e \"['README.md','LICENSE'].forEach(f=>{try{require('fs').unlinkSync(f)}catch{}})\""
4545
},
4646
"dependencies": {
47-
"@page-agent/core": "1.2.0",
48-
"@page-agent/llms": "1.2.0",
49-
"@page-agent/page-controller": "1.2.0",
50-
"@page-agent/ui": "1.2.0",
47+
"@page-agent/core": "1.3.0",
48+
"@page-agent/llms": "1.3.0",
49+
"@page-agent/page-controller": "1.3.0",
50+
"@page-agent/ui": "1.3.0",
5151
"chalk": "^5.6.2",
5252
"zod": "^4.3.5"
5353
}

packages/page-controller/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@page-agent/page-controller",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"type": "module",
55
"main": "./dist/lib/page-controller.js",
66
"module": "./dist/lib/page-controller.js",

0 commit comments

Comments
 (0)