This commit is contained in:
Chris Tate
2026-03-30 20:29:20 -05:00
committed by GitHub
parent 1f4b6b9d7a
commit e6ba1eb8c9
6 changed files with 20 additions and 4 deletions
+6
View File
@@ -1,5 +1,11 @@
# agent-browser
## 0.23.3
### Bug Fixes
- Fixed **drag and drop** not working because `mouseMoved` events during the drag omitted the `buttons` bitmask, causing the browser to see `event.buttons === 0` and never fire `dragstart`/`dragover`/`drop` (#1087)
## 0.23.2
### Patch Changes
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies = [
[[package]]
name = "agent-browser"
version = "0.23.2"
version = "0.23.3"
dependencies = [
"aes-gcm",
"async-trait",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "agent-browser"
version = "0.23.2"
version = "0.23.3"
edition = "2021"
description = "Fast browser automation CLI for AI agents"
license = "Apache-2.0"
+10
View File
@@ -1,5 +1,15 @@
# Changelog
## v0.23.3
<p className="text-[#888] text-sm">March 30, 2026</p>
### Bug Fixes
- Fixed **drag and drop** not working because `mouseMoved` events during the drag omitted the `buttons` bitmask, causing the browser to see `event.buttons === 0` and never fire `dragstart`/`dragover`/`drop` (#1087)
---
## v0.23.2
<p className="text-[#888] text-sm">March 30, 2026</p>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "agent-browser",
"version": "0.23.2",
"version": "0.23.3",
"description": "Browser automation CLI for AI agents",
"type": "module",
"files": [
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.23.2",
"version": "0.23.3",
"private": true,
"scripts": {
"dev": "next dev",