repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
vercel-labs/agent-browser | 1,434 | issue_to_patch | Detect click interception by overlays | - Hit-test the click point during element resolution and fail with a description of the covering element (e.g. "covered by <p inside div#consent-banner>") instead of dispatching input that silently lands on a cookie banner, modal, or sticky header
- Applies to CSS-selector, snapshot-ref, and iframe resolve paths; the ... | 4aa33682638c84b410ccaf82dd0fd5caac94759b | 207190bddf6389047ade05e10a811c6b582bf890 | diff --git a/README.md b/README.md
index ceeddb266..0922c5989 100644
--- a/README.md
+++ b/README.md
@@ -90,6 +90,10 @@ agent-browser screenshot page.png
agent-browser close
```
+Clicks fail early when another element covers the target's click point,
+for example a consent banner or modal. Dismiss or interact with ... | [
"README.md",
"cli/src/native/e2e_tests.rs",
"cli/src/native/element.rs",
"cli/src/output.rs",
"docs/src/app/commands/page.mdx",
"skill-data/core/SKILL.md",
"skill-data/core/references/commands.md"
] | [] | true | ||
vercel-labs/agent-browser | 1,432 | issue_to_patch | Fix agent-facing reliability bugs and cut warm command latency to ~1ms | - Scroll elements into view before clicking; off-viewport clicks silently no-oped while reporting success
- Return promptly with a `dialogOpened` flag when a click opens a JavaScript dialog, instead of hanging until the client read timeout (`os error 35`)
- Fail fast with resolution instructions when page commands run ... | 328ce8a98560ac7bac8fa81f53a718822550b94e | 4526722c008bc963e8ecea651af1bfb7e7fdb928 | diff --git a/cli/src/commands.rs b/cli/src/commands.rs
index f6075dbce..b7e3828ea 100644
--- a/cli/src/commands.rs
+++ b/cli/src/commands.rs
@@ -350,9 +350,45 @@ fn parse_command_inner(args: &[String], flags: &Flags) -> Result<Value, ParseErr
"type" => {
let sel = rest.first().ok_or_else(|| ParseE... | [
"cli/src/commands.rs",
"cli/src/connection.rs",
"cli/src/main.rs",
"cli/src/native/actions.rs",
"cli/src/native/element.rs",
"cli/src/native/interaction.rs"
] | [] | true | ||
vercel-labs/agent-browser | 1,417 | issue_to_patch | agent-browser-linux-x64 requires GLIBC_2.29/2.30, unrunnable on RHEL 8 / glibc 2.28
### Summary
The published `agent-browser-linux-x64` binary (v0.26.0) links against `GLIBC_2.29` and `GLIBC_2.30`, which makes it unrunnable on widely-deployed enterprise distributions whose glibc tops out at 2.28 — notably **RHEL 8 / ... | Pin Linux release glibc floor | - Build GNU Linux release artifacts against glibc 2.28 with zigbuild.
- Add a release guard for newer GLIBC symbols.
- Align Docker release helpers with the pinned build target.
Closes #1415 | 90050f2913159875e2c3719e424746396ccb3cbf | 15a94601f0ae695ee83d2f598402aeb132ef20f5 | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index f1d397f87..a385718a8 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -74,37 +74,44 @@ jobs:
include:
- name: Linux x64
os: ubuntu-latest
- target: x86_64-unknown... | [
".github/workflows/release.yml",
"docker/Dockerfile.build",
"docker/docker-compose.yml",
"package.json",
"scripts/build-all-platforms.sh"
] | [] | true | |
vercel-labs/agent-browser | 1,405 | issue_to_patch | Prepare 0.27.1 release | Version bump to 0.27.1 across all manifests and changelog update.
### Changes
- Bumped `version` to `0.27.1` in `package.json`, `cli/Cargo.toml`, `cli/Cargo.lock`, `packages/dashboard/package.json`
- Added `0.27.1` changelog entry covering:
- Improved `vitals` command output formatting (#1404)
- Documentation: su... | f35d578daf1fd4a07ff89148d19026f5ebd8bc4e | b3af5210875ffc78588ecab7056d05ba17d0a660 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index e521b8e28..a09ddbd07 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,19 @@
# agent-browser
-## 0.27.0
+## 0.27.1
<!-- release:start -->
+### Improvements
+
+- Improved **`vitals` command** output formatting for better readability (#1404)
+
+### Documentation
... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"package.json",
"packages/dashboard/package.json"
] | [] | true | ||
vercel-labs/agent-browser | 1,404 | issue_to_patch | Improve vitals output | - Return structured vitals data from the daemon for both text and JSON modes
- Render the default CLI output as a concise Web Vitals and hydration summary
- Update docs, help text, and tests for the new vitals response shape | 2a7120e5000e4be2677274b9e6f85382d260524e | 39ba6e2461667f413727d27980f9f5a8bfc31e39 | diff --git a/README.md b/README.md
index 9acba2a6e..ceeddb266 100644
--- a/README.md
+++ b/README.md
@@ -428,7 +428,7 @@ agent-browser react renders start # Begin fiber render recordin
agent-browser react renders stop [--json] # Stop and print profile (--json for raw data)
agent-browser reac... | [
"README.md",
"cli/src/native/actions.rs",
"cli/src/native/e2e_tests.rs",
"cli/src/native/react/mod.rs",
"cli/src/native/react/vitals.rs",
"cli/src/output.rs",
"docs/src/app/react/page.mdx",
"skill-data/core/SKILL.md",
"skill-data/core/references/commands.md"
] | [] | true | ||
vercel-labs/agent-browser | 1,403 | issue_to_patch | docs: surface agent-browser feature coverage | - Add docs pages for recording, debugging, network, React, files, init scripts, and proxy.
- Expand navigation, command reference, and configuration coverage for feature discoverability.
- Correct stale trace, Kernel, tab ID, and core skill references. | b4f2f37d7b4f954022bc77f8d6dce70e07072b00 | 3d03cdffb3c18bbd00f34acc789863796417377b | diff --git a/README.md b/README.md
index 90935c355..9acba2a6e 100644
--- a/README.md
+++ b/README.md
@@ -365,7 +365,7 @@ agent-browser diff url https://v1.com https://v2.com --selector "#main" # Scope
### Debug
```bash
-agent-browser trace start [path] # Start recording trace
+agent-browser trace start ... | [
"README.md",
"cli/src/commands.rs",
"cli/src/native/actions.rs",
"cli/src/output.rs",
"docs/src/app/commands/page.mdx",
"docs/src/app/configuration/page.mdx",
"docs/src/app/debugging/layout.tsx",
"docs/src/app/debugging/page.mdx",
"docs/src/app/files/layout.tsx",
"docs/src/app/files/page.mdx",
"... | [] | true | ||
vercel-labs/agent-browser | 1,396 | issue_to_patch | Hide scrollbars in headless screenshots | - Add Chrome's --hide-scrollbars flag for headless launches while preserving --show-scrollbars overrides.
- Document consistent scrollbar-free screenshot behavior in CLI help, README, docs, and core skill references.
- Cover headless, headed, extension, and override launch argument behavior with unit tests. | 4ad284890cb59564af603e6de403dd75dd19e832 | e4a401157148dcd3a6bd860a67e2331cac7f7090 | diff --git a/README.md b/README.md
index 646dd9753..90935c355 100644
--- a/README.md
+++ b/README.md
@@ -90,6 +90,9 @@ agent-browser screenshot page.png
agent-browser close
```
+Headless Chromium screenshots hide native scrollbars for consistent image output.
+Pass `--hide-scrollbars false` when launching to keep n... | [
"README.md",
"agent-browser.schema.json",
"cli/src/commands.rs",
"cli/src/connection.rs",
"cli/src/doctor/launch.rs",
"cli/src/flags.rs",
"cli/src/main.rs",
"cli/src/native/actions.rs",
"cli/src/native/cdp/chrome.rs",
"cli/src/output.rs",
"docs/public/schema.json",
"docs/src/app/commands/page.... | [
{
"comment": "The `--show-scrollbars` \\\"override\\\" mechanism doesn\\'t work because `--show-scrollbars` is not a real Chromium command\\-line flag — Chrome silently ignores it\\, leaving `--hide-scrollbars` in effect\\.\n\n<!-- VADE-CATEGORY: logic -->\n<!-- VADE-GITHUB-SUGGESTION-ID:31ce4470af748a841aae705... | true | ||
vercel-labs/agent-browser | 1,396 | comment_to_fix | Hide scrollbars in headless screenshots | The `--show-scrollbars` \"override\" mechanism doesn\'t work because `--show-scrollbars` is not a real Chromium command\-line flag — Chrome silently ignores it\, leaving `--hide-scrollbars` in effect\.
<!-- VADE-CATEGORY: logic -->
<!-- VADE-GITHUB-SUGGESTION-ID:31ce4470af748a841aae705b0d02c316b3b5d4232ee9926b65f8fe8b... | 4ad284890cb59564af603e6de403dd75dd19e832 | e4a401157148dcd3a6bd860a67e2331cac7f7090 | diff --git a/cli/src/native/cdp/chrome.rs b/cli/src/native/cdp/chrome.rs
index facdf6145..ad8646a7a 100644
--- a/cli/src/native/cdp/chrome.rs
+++ b/cli/src/native/cdp/chrome.rs
@@ -103,6 +103,9 @@ pub struct LaunchOptions {
pub ignore_https_errors: bool,
pub color_scheme: Option<String>,
pub download_pat... | [
"cli/src/native/cdp/chrome.rs"
] | [
{
"comment": "The `--show-scrollbars` \\\"override\\\" mechanism doesn\\'t work because `--show-scrollbars` is not a real Chromium command\\-line flag — Chrome silently ignores it\\, leaving `--hide-scrollbars` in effect\\.\n\n<!-- VADE-CATEGORY: logic -->\n<!-- VADE-GITHUB-SUGGESTION-ID:31ce4470af748a841aae705... | true | ||
vercel-labs/agent-browser | 1,377 | issue_to_patch | chore: enforce pnpm minimum release age | - Adds `minimumReleaseAge: 2880` to the pnpm workspace config to enforce the two-day package age policy.
- Requires Node.js 24+ and pnpm 11 for source builds, including `.node-version` and package engine metadata.
- Updates CI and release workflows to use the repo-declared Node and pnpm versions. | 55f38f4d81981f0191c730005c419958c7d20605 | 6643281ac038c962b378f9b0dd37c36b2f32a454 | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 095850df1..1198d51cf 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,6 +15,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
+ - name: Setup Node.js
+ uses: actions/setup-node... | [
".github/workflows/ci.yml",
".github/workflows/release.yml",
".node-version",
"README.md",
"docs/src/app/installation/page.mdx",
"package.json",
"pnpm-workspace.yaml"
] | [] | true | ||
vercel-labs/agent-browser | 1,355 | issue_to_patch | Per-session /api/command should require same-origin or token auth
## Summary
The per-session stream HTTP server exposes `POST /api/command`, returns wildcard CORS headers, and relays the request body to the daemon socket. If a malicious website can learn or discover an active session stream port, it can send daemon c... | Require same-origin stream commands | ## Summary
- Require same-origin `Origin` or `Referer` metadata before the per-session stream server relays `POST /api/command` to the daemon.
- Require the matched command relay authority to be loopback/local to block DNS rebinding hostnames.
- Restrict command security header lookups to real HTTP headers so request ... | 82eadcee41240b1c8477870f846bc8528e77a8a6 | a664b47a8bbb678bb25845ad4d461ee6111ea284 | diff --git a/cli/src/native/e2e_tests.rs b/cli/src/native/e2e_tests.rs
index 4ea728692..76a36e4d1 100644
--- a/cli/src/native/e2e_tests.rs
+++ b/cli/src/native/e2e_tests.rs
@@ -94,6 +94,61 @@ async fn create_storage_state_with_cookie(path: &str, cookie_name: &str, cookie_
assert_success(&resp);
}
+async fn send... | [
"cli/src/native/e2e_tests.rs",
"cli/src/native/stream/http.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,333 | issue_to_patch | Fix trusted publishing: add Release environment | Add `environment: Release` to the publish job so the OIDC token includes the environment claim npm trusted publishing expects. Also moves permissions to per-job for least-privilege. | c830d1b67dc18b754e305859f0ae587f858a1447 | 1e81c36b1b9febc43e9e444af5892d5db4114fbe | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4a2998004..b41bef1ad 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -9,13 +9,15 @@ on:
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
- contents: write
- id-token: write
+ conte... | [
".github/workflows/release.yml"
] | [] | true | ||
vercel-labs/agent-browser | 1,273 | issue_to_patch | adds trusted publishing | Switch npm publishing to trusted publishing via GitHub Actions OIDC, removing the need for manually managed npm tokens. Also upgrades Node from 22 to 24 across CI and release workflows. | 717d1b09e1c841a4c0206033886a1a861e3ca5d9 | e418e2e249e319829858c964115d36f63de81891 | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9aa747762..095850df1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -54,7 +54,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
- node-version: 22
+ node-version: 2... | [
".github/workflows/ci.yml",
".github/workflows/release.yml"
] | [] | true | ||
vercel-labs/agent-browser | 1,332 | issue_to_patch | Prepare v0.27.0 release | ## Summary
- Bump version to 0.27.0 across `package.json`, `cli/Cargo.toml`, `cli/Cargo.lock`, and `packages/dashboard/package.json`
- Add changelog entry for v0.27.0 with release markers
- Add matching docs changelog entry
## Changes in this release
- **React introspection** (`react tree`, `react inspect`, `react r... | d33bdb36f3f7793c977e8c503e5962721b275db8 | 9153c917134ea42521569ecf2d9d97da156039c7 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 16a80e859..e521b8e28 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,38 @@
# agent-browser
-## 0.26.0
+## 0.27.0
<!-- release:start -->
### New Features
+- **React introspection** - First-class React DevTools integration with new `react tree`, `react insp... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | ||
vercel-labs/agent-browser | 1,111 | issue_to_patch | Make dashboard work from proxied origins via same-origin proxy | ## Summary
- make the dashboard work from forwarded and proxied origins without exposing per-session localhost ports
- add validated same-origin HTTP and WebSocket proxy routes for per-session tabs, status, and stream traffic
- harden the proxy by removing CORS from proxy responses, enforcing WebSocket Origin-vs-Host ... | 3bb1d43f8bb16444596365496f78395da8f1e6b7 | c4de7d75c671b87bb448501f7ac6a38526a47c3f | diff --git a/README.md b/README.md
index 17051661c..75fa8d290 100644
--- a/README.md
+++ b/README.md
@@ -752,7 +752,7 @@ agent-browser open example.com
agent-browser dashboard stop
```
-The dashboard runs as a standalone background process on port 4848, independent of browser sessions. It stays available even when ... | [
"README.md",
"cli/src/native/stream/dashboard.rs",
"cli/src/output.rs",
"docs/src/app/commands/page.mdx",
"docs/src/app/dashboard/page.mdx",
"packages/dashboard/src/components/viewport.tsx",
"packages/dashboard/src/lib/dashboard-routes.ts",
"packages/dashboard/src/store/sessions.ts",
"packages/dashb... | [] | true | ||
vercel-labs/agent-browser | 1,330 | issue_to_patch | fix(doctor): make generated ids unique per call | ## Summary
- Fixes flaky doctor command ID generation by appending a process-local atomic sequence.
- Prevents adjacent `new_id()` calls from colliding when the system clock returns the same microsecond. | 918d40741151410f6461b13bcb1f8ba4baf1b7f9 | bc890235205a35c68b859fc19a31b727c78369ff | diff --git a/cli/src/doctor/helpers.rs b/cli/src/doctor/helpers.rs
index 7fc472aba..30c168f66 100644
--- a/cli/src/doctor/helpers.rs
+++ b/cli/src/doctor/helpers.rs
@@ -2,6 +2,7 @@
use std::fs;
use std::path::Path;
+use std::sync::atomic::{AtomicU64, Ordering};
use std::time::SystemTime;
use serde_json::Value;
... | [
"cli/src/doctor/helpers.rs"
] | [] | true | ||
vercel-labs/agent-browser | 1,328 | issue_to_patch | Update README.md with skill badge | 7ada3384e2afb5f3c43d9106389da86d8f807dca | ae0e529cd238ba4b0185c10cd951b0191f28f4a2 | diff --git a/README.md b/README.md
index 90ca02109..17051661c 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,8 @@
Browser automation CLI for AI agents. Fast native Rust CLI.
+[](https://skills.sh/vercel-labs/agent-browser)
+
## Installation
### Glob... | [
"README.md"
] | [] | true | |||
vercel-labs/agent-browser | 1,305 | issue_to_patch | feat(docs): add AI Gateway app attribution headers | ## Summary
- Adds `http-referer` and `x-title` headers to the docs chat `streamText` call for [AI Gateway app attribution](https://vercel.com/docs/ai-gateway/ecosystem/app-attribution)
- This is the only AI SDK inference call site in the codebase (evals use the Claude CLI subprocess, not the SDK)
## Test plan
- [ ] Ve... | 57405f93614fae46e5c955ce662b4785283e1301 | a220786d2b44d0d27abf386f9f95b0e8186b8b8e | diff --git a/docs/src/app/api/docs-chat/route.ts b/docs/src/app/api/docs-chat/route.ts
index c95b53343..2cacf8243 100644
--- a/docs/src/app/api/docs-chat/route.ts
+++ b/docs/src/app/api/docs-chat/route.ts
@@ -105,6 +105,10 @@ export async function POST(req: Request) {
} = await createBashTool({ files: docsFiles });
... | [
"docs/src/app/api/docs-chat/route.ts"
] | [] | true | ||
vercel-labs/agent-browser | 1,257 | issue_to_patch | feat(react): React introspection, Web Vitals, and SPA primitives | ## Summary
Add React-general and web-universal dev features as first-class agent-browser verbs, plus a small set of launch-lifecycle primitives (URL-optional `open`, `--enable react-devtools`, `--init-script`, `cookies set --curl`, resource-type filter on `network route`) that benefit any React or SPA stack. No new ru... | 717d1b09e1c841a4c0206033886a1a861e3ca5d9 | 5b1be7e1746ccaf35e66c0059757e8e9c366e771 | diff --git a/README.md b/README.md
index e5b2983a9..90ca02109 100644
--- a/README.md
+++ b/README.md
@@ -98,7 +98,8 @@ agent-browser find role button click --name "Submit"
### Core Commands
```bash
-agent-browser open <url> # Navigate to URL (aliases: goto, navigate)
+agent-browser open ... | [
"README.md",
"cli/src/commands.rs",
"cli/src/connection.rs",
"cli/src/doctor/launch.rs",
"cli/src/flags.rs",
"cli/src/main.rs",
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"cli/src/native/e2e_tests.rs",
"cli/src/native/mod.rs",
"cli/src/native/react/installHook.js",
"cli/src/nati... | [] | true | ||
vercel-labs/agent-browser | 1,208 | issue_to_patch | [Feature Request] Allow videos to be recorded at different resolutions besides 1280x578
I noticed `agent-browser record start` has a fixed resolution of 1280x578 which is really short, and haven't found a way to change that. This seems to have fixed a past bug with custom video resolutions, but it doesn't seem to work... | fix: inherit viewport dimensions in recording context | ## Summary
- When `record start` creates a new browser context, it now re-applies the current viewport settings so the recording resolution matches what the user configured instead of falling back to the default 1280×720
- Both `set viewport` and `set device` paths now store viewport state on `DaemonState` for re-appli... | fa043a496f7579680c78b22d0a5015f48dc99a4d | 4c366d7228ae599ca02fbba08a240b8500aa3552 | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index d62341a77..2858bf043 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -248,6 +248,9 @@ pub struct DaemonState {
pub engine: String,
/// Default timeout for wait operations, from AGENT_BROWSER_DEFAULT_TIMEOUT env ... | [
"cli/src/native/actions.rs",
"cli/src/native/e2e_tests.rs"
] | [] | true | |
vercel-labs/agent-browser | 892 | issue_to_patch | Consistent Tab IDs & Global Tag Targeting | - replace positional tab indices with tab IDs across tab commands and response payloads
- add global `--tab <id>` so page-scoped commands can target a tab directly
- scope `--tab` routing so commands restore the previous active tab when they temporarily target a different tab
- Fix the tab_list fallback which can be... | b02e485a37e60a9a564d8cf57a4f82ec06bddd4f | d5044780fbfa480f6f8cd5f428a73ecebddae4b3 | diff --git a/cli/src/commands.rs b/cli/src/commands.rs
index 274f99767..8345c7375 100644
--- a/cli/src/commands.rs
+++ b/cli/src/commands.rs
@@ -1010,28 +1010,35 @@ fn parse_command_inner(args: &[String], flags: &Flags) -> Result<Value, ParseErr
}
// === Tabs ===
- "tab" => match rest.first()... | [
"cli/src/commands.rs",
"cli/src/flags.rs",
"cli/src/main.rs",
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"cli/src/native/e2e_tests.rs",
"cli/src/output.rs"
] | [
{
"comment": "The `tab_switch` action incorrectly prints \\\"Browser closed\\\" because the overly broad condition `data.get(\"closed\").is_some() || data.get(\"tabId\").is_some()` matches any response containing `tabId`\\, including `tab_switch` responses\\.\n\n<!-- VADE-CATEGORY: logic -->\n<!-- VADE-GITHUB-S... | true | ||
vercel-labs/agent-browser | 892 | comment_to_fix | Consistent Tab IDs & Global Tag Targeting | The `tab_switch` action incorrectly prints \"Browser closed\" because the overly broad condition `data.get("closed").is_some() || data.get("tabId").is_some()` matches any response containing `tabId`\, including `tab_switch` responses\.
<!-- VADE-CATEGORY: logic -->
<!-- VADE-GITHUB-SUGGESTION-ID:03e43726100f64e8eeaed0... | b02e485a37e60a9a564d8cf57a4f82ec06bddd4f | d5044780fbfa480f6f8cd5f428a73ecebddae4b3 | diff --git a/cli/src/output.rs b/cli/src/output.rs
index f23301d83..bac0c9f94 100644
--- a/cli/src/output.rs
+++ b/cli/src/output.rs
@@ -406,7 +406,11 @@ pub fn print_response_with_opts(resp: &Response, action: Option<&str>, opts: &Ou
}
// Tabs
if let Some(tabs) = data.get("tabs").and_then(|v... | [
"cli/src/output.rs"
] | [
{
"comment": "The `tab_switch` action incorrectly prints \\\"Browser closed\\\" because the overly broad condition `data.get(\"closed\").is_some() || data.get(\"tabId\").is_some()` matches any response containing `tabId`\\, including `tab_switch` responses\\.\n\n<!-- VADE-CATEGORY: logic -->\n<!-- VADE-GITHUB-S... | true | ||
vercel-labs/agent-browser | 1,255 | issue_to_patch | v0.26.0 | ## Summary
Release v0.26.0.
### New Features
- **`doctor` command** (#1254) — one-shot diagnostic: environment, Chrome, daemons, config, security, providers, network, live launch test. Auto-cleans stale daemon sidecar files; opt-in repairs via `--fix`.
- **Stable tab ids and labels** (#892, #1249, #1250) — tabs now ... | 14ece9b3ad5dad597adc756bfe27c5c67e799468 | 7da6d29b410daed2cd55b57d1788e18cf9869bea | diff --git a/CHANGELOG.md b/CHANGELOG.md
index a2986ef0b..16a80e859 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,33 @@
# agent-browser
-## 0.25.5
+## 0.26.0
<!-- release:start -->
+### New Features
+
+- **`doctor` command** - Added `agent-browser doctor` for one-shot diagnosis of an install. Checks env... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | ||
vercel-labs/agent-browser | 1,254 | issue_to_patch | feat: add `doctor` command for diagnosing installs and cleaning stale daemon state | ## Summary
Adds `agent-browser doctor`, a one-shot diagnostic command that checks everything an install can get wrong, auto-cleans stale daemon sidecar files, and optionally repairs common issues.
### Check catalog
1. **Environment** — CLI version, platform, home/state/socket dirs writable, free disk
2. **Chrome** —... | 4cc6ca40b76a590bb06d1ec5abc16d27bb7d43c0 | 36779a0bea1af83044a98f0fd79ba7faf7e41fa7 | diff --git a/README.md b/README.md
index eb725d32e..e5b2983a9 100644
--- a/README.md
+++ b/README.md
@@ -388,8 +388,16 @@ agent-browser reload # Reload page
agent-browser install # Download Chrome from Chrome for Testing (Google's official automation channel)
agent-browser install --w... | [
"README.md",
"cli/src/connection.rs",
"cli/src/doctor/chrome.rs",
"cli/src/doctor/config.rs",
"cli/src/doctor/daemon.rs",
"cli/src/doctor/environment.rs",
"cli/src/doctor/fix.rs",
"cli/src/doctor/helpers.rs",
"cli/src/doctor/launch.rs",
"cli/src/doctor/mod.rs",
"cli/src/doctor/network.rs",
"cl... | [
{
"comment": "```suggestion\n if c.status != Status::Fail && c.status != Status::Warn && c.status != Status::Info {\n```\n\nThe `--fix` flag never generates a missing encryption key because `Status::Info` checks are filtered out by an early `continue` in `run_fixes`\\, making the `\"security.encryption_k... | diff --git a/cli/tests/doctor_cli.rs b/cli/tests/doctor_cli.rs
new file mode 100644
index 000000000..c14b5dc56
--- /dev/null
+++ b/cli/tests/doctor_cli.rs
@@ -0,0 +1,141 @@
+//! Integration tests for `agent-browser doctor`.
+//!
+//! These tests spawn the real CLI binary via `env!("CARGO_BIN_EXE_*")` and
+//! verify th... | true | |
vercel-labs/agent-browser | 1,250 | issue_to_patch | feat(tabs): t<N> prefix for tab ids; --label for named tabs; drop --tab peek flag | ## Summary
Reshape the unreleased tab handle surface before it ships. Three threads:
1. **Replace bare-integer tab ids with `t<N>`** so stable handles can't be mistaken for positional indices.
2. **Add user-assigned labels** for readable multi-tab agent workflows.
3. **Drop the `--tab <id>` scoped peek flag** — after... | c201623710af417a6b8d3fd5479a145452b66362 | fc62de4977764b3044c88148cf6204dafbbc7bfa | diff --git a/README.md b/README.md
index 658eec287..069c54489 100644
--- a/README.md
+++ b/README.md
@@ -290,22 +290,30 @@ agent-browser network har stop [output.har] # Stop and save HAR (temp path if
### Tabs & Windows
```bash
-agent-browser tab # List tabs (shows stable `tabId` for each)
-a... | [
"README.md",
"agent-browser.schema.json",
"cli/src/commands.rs",
"cli/src/flags.rs",
"cli/src/main.rs",
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"cli/src/native/e2e_tests.rs",
"cli/src/output.rs",
"docs/src/app/commands/page.mdx",
"docs/src/app/configuration/page.mdx",
"packag... | [
{
"comment": "Labels matching the `t<N>`\\/`T<N>` tab ID pattern \\(e\\.g\\.\\, `t2`\\, `T99`\\) can be created via `tab_new` but can never be addressed by `TabRef::parse`\\, making them permanently unreachable\\.\n\n<!-- VADE-CATEGORY: data-validation -->\n<!-- VADE-GITHUB-SUGGESTION-ID:37adad71750fdd83c342a2b... | true | ||
vercel-labs/agent-browser | 1,250 | comment_to_fix | feat(tabs): t<N> prefix for tab ids; --label for named tabs; drop --tab peek flag | Labels matching the `t<N>`\/`T<N>` tab ID pattern \(e\.g\.\, `t2`\, `T99`\) can be created via `tab_new` but can never be addressed by `TabRef::parse`\, making them permanently unreachable\.
<!-- VADE-CATEGORY: data-validation -->
<!-- VADE-GITHUB-SUGGESTION-ID:37adad71750fdd83c342a2b87147bca2049850eccb6a98c9fe0a6f5a0... | c201623710af417a6b8d3fd5479a145452b66362 | fc62de4977764b3044c88148cf6204dafbbc7bfa | diff --git a/cli/src/native/browser.rs b/cli/src/native/browser.rs
index 87eb3dee7..abaa5db6b 100644
--- a/cli/src/native/browser.rs
+++ b/cli/src/native/browser.rs
@@ -159,6 +159,12 @@ pub fn to_ai_friendly_error(error: &str) -> String {
#[derive(Debug, Clone)]
pub struct PageInfo {
pub tab_id: u32,
+ /// Op... | [
"cli/src/native/browser.rs"
] | [
{
"comment": "Labels matching the `t<N>`\\/`T<N>` tab ID pattern \\(e\\.g\\.\\, `t2`\\, `T99`\\) can be created via `tab_new` but can never be addressed by `TabRef::parse`\\, making them permanently unreachable\\.\n\n<!-- VADE-CATEGORY: data-validation -->\n<!-- VADE-GITHUB-SUGGESTION-ID:37adad71750fdd83c342a2b... | true | ||
vercel-labs/agent-browser | 1,253 | issue_to_patch | feat(skills): rename "agent-browser" skill to "core"; make CLI-served main skill actually useful | ## Summary
Before this change, running `agent-browser skills get agent-browser` (even with `--full`) returned a ~40-line discovery stub whose content was essentially "you must run `agent-browser skills get <name>` before doing anything." For an agent already inside the CLI trying to learn how to use it, that's a dead-... | 1afcaa0e848f7dfa19b9494692e57af38f55ceac | 366479be6378bbcf3c982db1fdaa546b28425688 | diff --git a/AGENTS.md b/AGENTS.md
index 59f9885c3..763c6c6ea 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -19,7 +19,7 @@ When adding or changing user-facing features (new flags, commands, behaviors, en
1. `cli/src/output.rs` — `--help` output (flags list, examples, environment variables)
2. `README.md` — Options tabl... | [
"AGENTS.md",
"README.md",
"cli/src/output.rs",
"cli/src/skills.rs",
"docs/src/app/skills/page.mdx",
"evals/cases/command-usage.ts",
"evals/cases/skill-selection.ts",
"skill-data/core/SKILL.md",
"skill-data/core/references/authentication.md",
"skill-data/core/references/commands.md",
"skill-data/... | [] | true | ||
vercel-labs/agent-browser | 1,251 | issue_to_patch | docs(help): promote skills to the top of --help so agents discover them first | ## Summary
The `Skills:` section was buried deep in the top-level `--help` output (between `Setup:` and `Snapshot Options:`). Agents skimming `--help` pass right over it on the way to flag docs, then waste turns guessing commands when a hand-written workflow guide is one command away.
Move it to a prominent "Start he... | c201623710af417a6b8d3fd5479a145452b66362 | 19c9583fc3c368ea3ced95a7f0636fc925f26b66 | diff --git a/cli/src/output.rs b/cli/src/output.rs
index bac0c9f94..44f63acf3 100644
--- a/cli/src/output.rs
+++ b/cli/src/output.rs
@@ -2882,6 +2882,20 @@ agent-browser - fast browser automation CLI for AI agents
Usage: agent-browser <command> [args] [options]
+Start here (for AI agents):
+ agent-browser skills ... | [
"cli/src/output.rs"
] | [] | true | ||
vercel-labs/agent-browser | 1,249 | issue_to_patch | fix(tabs): correct --tab scoped commands and un-break provider direct-page path | ## Summary
Follow-up to #892 (just merged) covering three issues found while reviewing it:
1. **Compile fix.** #892 added a required `tab_id: u32` field to `PageInfo` but missed two initializer sites — the `direct_page` branch of `connect_cdp_inner` (used by Browserbase, Browserless, Browser Use, Kernel, AgentCore) a... | 67dc63197742deea65372d68ef54d80ff6dae078 | c59f2246e68679790d3498fdd81bf35bae02ab9a | diff --git a/README.md b/README.md
index de8c85a84..658eec287 100644
--- a/README.md
+++ b/README.md
@@ -290,13 +290,24 @@ agent-browser network har stop [output.har] # Stop and save HAR (temp path if
### Tabs & Windows
```bash
-agent-browser tab # List tabs
+agent-browser tab ... | [
"README.md",
"agent-browser.schema.json",
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"cli/src/native/e2e_tests.rs",
"docs/src/app/commands/page.mdx",
"docs/src/app/configuration/page.mdx",
"skills/agent-browser/references/commands.md"
] | [
{
"comment": "Test `e2e_tab_scoped_command_handles_outer_tab_closed` uses `tab_close` which is in the scoped\\-tab exclusion list\\, so the test never exercises the restore\\-skip code path it claims to test\\.\n\n<!-- VADE-CATEGORY: logic -->\n<!-- VADE-GITHUB-SUGGESTION-ID:5598fd531451d35f89e61487fe746fecb8c9... | true | ||
vercel-labs/agent-browser | 1,248 | issue_to_patch | fix: improve config schema and serve from docs site | - **Fixed `idleTimeout` description** to document human-friendly formats (`30s`, `5m`, `1h`) alongside raw milliseconds
- **Added trailing newline** to `agent-browser.schema.json`
- **Serve schema from docs site** at `https://agent-browser.dev/schema.json` via a `prebuild` copy step in the docs app
- **Updated `$schema... | 4f9edf9337696ebbe756b427c7481fe25fbd5666 | c25c7e4b56bd48b0d9299551b93842715c5de13b | diff --git a/README.md b/README.md
index d2c3852e6..de8c85a84 100644
--- a/README.md
+++ b/README.md
@@ -734,7 +734,7 @@ A [JSON Schema](agent-browser.schema.json) is available for IDE autocomplete and
```json
{
- "$schema": "https://raw.githubusercontent.com/vercel-labs/agent-browser/main/agent-browser.schema.jso... | [
"README.md",
"agent-browser.schema.json",
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"docs/public/schema.json",
"docs/src/app/configuration/page.mdx"
] | [] | true | ||
vercel-labs/agent-browser | 1,242 | issue_to_patch | feat: add JSON Schema for agent-browser config files | Adds agent-browser.schema.json describing all config options with types and descriptions. Enables IDE autocomplete and validation when referenced via $schema in agent-browser.json or
~/.agent-browser/config.json.
README and docs site updated to document the schema reference. | db29d5feade82595635e833093faa68d6d140015 | e4c7306c741fe768a087078df9ab82f420acbbd6 | diff --git a/README.md b/README.md
index d589514bb..d2c3852e6 100644
--- a/README.md
+++ b/README.md
@@ -730,6 +730,15 @@ AGENT_BROWSER_CONFIG=./ci-config.json agent-browser open example.com
All options from the table above can be set in the config file using camelCase keys (e.g., `--executable-path` becomes `"execu... | [
"README.md",
"agent-browser.schema.json",
"docs/src/app/configuration/page.mdx"
] | [
{
"comment": "```suggestion\n \"type\": \"integer\",\n \"minimum\": 0,\n```\n\nThe `maxOutput` JSON Schema property uses `\"type\": \"number\"` which allows floating\\-point values\\, but the Rust backend deserializes it as `usize` \\(unsigned integer\\)\\, causing a schema\\-to\\-code type mismatch\\... | true | ||
vercel-labs/agent-browser | 1,242 | comment_to_fix | feat: add JSON Schema for agent-browser config files | ```suggestion
"type": "integer",
"minimum": 0,
```
The `maxOutput` JSON Schema property uses `"type": "number"` which allows floating\-point values\, but the Rust backend deserializes it as `usize` \(unsigned integer\)\, causing a schema\-to\-code type mismatch\.
<!-- VADE-CATEGORY: data-validation -->
<!... | db29d5feade82595635e833093faa68d6d140015 | e4c7306c741fe768a087078df9ab82f420acbbd6 | diff --git a/agent-browser.schema.json b/agent-browser.schema.json
new file mode 100644
index 000000000..b61faebb6
--- /dev/null
+++ b/agent-browser.schema.json
@@ -0,0 +1,166 @@
+{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "title": "Agent Browser Configuration",
+ "description": "Configuration file ... | [
"agent-browser.schema.json"
] | [
{
"comment": "```suggestion\n \"type\": \"integer\",\n \"minimum\": 0,\n```\n\nThe `maxOutput` JSON Schema property uses `\"type\": \"number\"` which allows floating\\-point values\\, but the Rust backend deserializes it as `usize` \\(unsigned integer\\)\\, causing a schema\\-to\\-code type mismatch\\... | true | ||
vercel-labs/agent-browser | 1,241 | issue_to_patch | Linux v0.24.1: state save/--state and --session-name write state but do not restore cookies or localStorage
## Summary
On Linux with `agent-browser 0.24.1`, both of these persistence flows fail to restore state across restarts in my testing:
1. `--session-name <name>` auto-save/restore
2. `state save <file>` followe... | fix: load storage state at launch when --state / AGENT_BROWSER_STATE is set | Fixes #1164
The `--state <path>` flag and `AGENT_BROWSER_STATE` env var are documented as loading saved browser state (cookies + localStorage) at launch, but `load_state()` was never called after the browser started. The flag was fully plumbed through parsing, env propagation, and validation but the actual loading ... | db29d5feade82595635e833093faa68d6d140015 | ee128cf3a0fe5352d7cedac301a7cfcc9b220a8f | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index 2858bf043..09f713a97 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -169,8 +169,12 @@ struct DrainedEvents {
/// Compute a hash of the [`LaunchOptions`] fields that require a browser
/// relaunch when changed (baked in... | [
"cli/src/native/actions.rs",
"cli/src/native/e2e_tests.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,246 | issue_to_patch | Prepare v0.25.5 | ## Summary
- Bumps version to 0.25.5 across `package.json`, `cli/Cargo.toml`, `cli/Cargo.lock`, and `packages/dashboard/package.json`
- Adds changelog entry for 4 bug fixes: `--auto-connect` CDP discovery, recording context viewport inheritance, `get box`/`get styles` text output, and active page preservation on tab r... | dba382350bb2ff337478745020d1027c2652f986 | 4f7c6f5b0edb2747f5eefdb59bba106383b99ed2 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index dc61f8b26..a2986ef0b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,24 @@
# agent-browser
-## 0.25.4
+## 0.25.5
<!-- release:start -->
+### Bug Fixes
+
+- Fixed **`--auto-connect` CDP discovery** preferring HTTP endpoint discovery over the DevToolsActivePort... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"cli/src/native/e2e_tests.rs",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | ||
vercel-labs/agent-browser | 1,218 | issue_to_patch | Is it normal to always have to allow twice when connecting to an existing Chrome instance via --auto-connect?
0.25.3
Prefer DevToolsActivePort websocket path first in --auto-connect to avoid duplicate remote-debugging prompts
`--auto-connect` looks like it does extra legacy discovery probes before using the exact we... | fix: prefer DevToolsActivePort websocket path over HTTP discovery in --auto-connect | Fixes #1210
Fixes #1206
## Summary
- Reverses the discovery order in `auto_connect_cdp()`: tries the exact WebSocket path from `DevToolsActivePort` first, falls back to legacy HTTP endpoints (`/json/version`, `/json/list`) only on failure
- Adds `verify_ws_endpoint()` to validate the WebSocket URL is a live CDP serve... | fa043a496f7579680c78b22d0a5015f48dc99a4d | 73cb0a5af2a68d831f3399e7dc6cdb0482caeefc | diff --git a/cli/src/native/cdp/chrome.rs b/cli/src/native/cdp/chrome.rs
index 6f5e40d63..facdf6145 100644
--- a/cli/src/native/cdp/chrome.rs
+++ b/cli/src/native/cdp/chrome.rs
@@ -654,16 +654,7 @@ pub async fn auto_connect_cdp() -> Result<String, String> {
for dir in &user_data_dirs {
if let Some((port... | [
"cli/src/native/cdp/chrome.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,245 | issue_to_patch | fix(test): tolerate stale screencast frames in viewport e2e test | ## Summary
- Fix flaky `e2e_stream_frame_metadata_respects_custom_viewport` test that intermittently fails on CI with wrong JPEG dimensions (e.g. 361 instead of 600 height). Chrome's `Page.startScreencast` `maxWidth`/`maxHeight` are upper bounds, and early frames can arrive before the viewport resize fully takes effec... | 2e99293e80ceb1cc18f1013f0d50d8bc985fe63f | cc489d63839cdb011d08d99686940ddb07acf242 | diff --git a/cli/src/native/e2e_tests.rs b/cli/src/native/e2e_tests.rs
index 0b5d19a4a..068efefbc 100644
--- a/cli/src/native/e2e_tests.rs
+++ b/cli/src/native/e2e_tests.rs
@@ -3950,7 +3950,9 @@ async fn e2e_stream_frame_metadata_respects_custom_viewport() {
.await;
assert_success(&resp);
- // Wait for a... | [
"cli/src/native/e2e_tests.rs"
] | [] | true | ||
vercel-labs/agent-browser | 1,244 | issue_to_patch | fix(ci): install ffmpeg for e2e recording test | ## Summary
- Install ffmpeg in the Native E2E Tests CI job so `e2e_recording_inherits_viewport` (added in #1208) can run successfully. Without it, `recording_start` fails with "ffmpeg not found". | b02e485a37e60a9a564d8cf57a4f82ec06bddd4f | ca30b9d9f2652e6d8a3939b1e00a7905e99f0309 | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b45a61744..9aa747762 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -121,6 +121,9 @@ jobs:
run: |
cargo run --manifest-path cli/Cargo.toml -- install --with-deps
+ - name: Install ffmpeg
+ r... | [
".github/workflows/ci.yml"
] | [] | true | ||
vercel-labs/agent-browser | 1,233 | issue_to_patch | `get box` and `get styles` print only "Done" in text mode
## Bug
In the default (non-JSON) text output mode, `agent-browser get box <selector>` and `agent-browser get styles <selector>` print only `✓ Done` instead of the element's bounding box or computed styles. No data is shown.
Other `get` subcommands in the same... | fix: print data for `get box` and `get styles` in text mode | ## Summary
- **`get box`** and **`get styles`** printed only "Done" in default text mode because the output formatter had no branches for their response shapes
- Added text-mode handlers for both: `get box` now prints `x`, `y`, `width`, `height` on labeled lines; `get styles` prints each computed CSS property as `key:... | 50323499c805d2847ed09a46eccec1bf2f0f92b7 | feb2f46a847c59cab7093b2f569ec4e8a001d2e8 | diff --git a/cli/src/output.rs b/cli/src/output.rs
index 338959b9c..f23301d83 100644
--- a/cli/src/output.rs
+++ b/cli/src/output.rs
@@ -296,6 +296,31 @@ pub fn print_response_with_opts(resp: &Response, action: Option<&str>, opts: &Ou
println!("{}", count);
return;
}
+ // Bound... | [
"cli/src/output.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,220 | issue_to_patch | `tab close` of an earlier tab can silently retarget the active page
## Summary
Closing or removing a tab that sits **before** the current active tab can silently move the session to the wrong page.
The current tab-removal bookkeeping only clamps `active_page_index` when it falls off the end of the list. It does **no... | fix: preserve the active page when removing earlier tabs | ## Summary
- preserve the same logical active page when a tab before it is removed
- apply the same adjustment to both `tab close` and destroyed-target cleanup
- add regression tests for earlier-tab removal, later-tab removal, last-tab clamping, and the empty-page case
Closes #1219.
## Validation
- `cargo fmt --man... | fa043a496f7579680c78b22d0a5015f48dc99a4d | e636ff918a3251d5433a0615225856e3389bc4c5 | diff --git a/cli/src/native/browser.rs b/cli/src/native/browser.rs
index 45b5a258a..ee2b92dbf 100644
--- a/cli/src/native/browser.rs
+++ b/cli/src/native/browser.rs
@@ -111,6 +111,26 @@ fn update_page_target_info_in_pages(pages: &mut [PageInfo], target: &TargetInfo)
false
}
+fn active_page_index_after_removal(
... | [
"cli/src/native/browser.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,228 | issue_to_patch | Prepare v0.25.4 | ## Summary
- Bump version to 0.25.4 across `package.json`, `cli/Cargo.toml`, `cli/Cargo.lock`, and `packages/dashboard/package.json`
- Add changelog entry for `skills` command, bug fixes (viewport streaming, recording context HTTPS errors, skill docs), and docs improvements
- Update docs changelog at `docs/src/app/cha... | 7c2ff0a2a624e86cec0bcc9cc0835aeff6a2edf0 | c13a64271dc91071a5feab70ce00df13f926f7cd | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 60f4bfddc..dc61f8b26 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,32 @@
# agent-browser
-## 0.25.3
+## 0.25.4
<!-- release:start -->
+### New Features
+
+- **`skills` command** - Added `agent-browser skills` command for discovering and installing agent ski... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | ||
vercel-labs/agent-browser | 1,227 | issue_to_patch | Move specialized skills to skill-data/ for single-skill discovery | ## Summary
- Moves the 5 specialized skills (dogfood, electron, slack, vercel-sandbox, agentcore) from `skills/` to `skill-data/` so `npx skills add vercel-labs/agent-browser` only discovers the bootstrap skill.
- The `metadata.internal: true` approach from the previous PR did not work because the feature was never me... | 71343069d2f0f7dd8cc37d8da89b7611858c1893 | 91baa49fd9990303601e3c667e2c8e70ebbce22e | diff --git a/cli/src/skills.rs b/cli/src/skills.rs
index 01aa6c269..1d07513d9 100644
--- a/cli/src/skills.rs
+++ b/cli/src/skills.rs
@@ -12,36 +12,35 @@ struct SkillInfo {
dir: PathBuf,
}
-/// Locate the `skills/` directory bundled with the installation.
+/// Skill content is split across two directories:
+/// ... | [
"cli/src/skills.rs",
"package.json",
"skill-data/agentcore/SKILL.md",
"skill-data/dogfood/SKILL.md",
"skill-data/dogfood/references/issue-taxonomy.md",
"skill-data/dogfood/templates/dogfood-report-template.md",
"skill-data/electron/SKILL.md",
"skill-data/slack/SKILL.md",
"skill-data/slack/references... | [] | true | ||
vercel-labs/agent-browser | 1,225 | issue_to_patch | Add `agent-browser skills` command with evals | ## Summary
- **`skills` CLI command** — Serves bundled skill content at runtime, always matching the installed CLI version. Solves the problem of agents relying on stale cached SKILL.md files after upgrades.
- **Thin discovery SKILL.md** — Rewrites the `agent-browser` SKILL.md as a thin bootstrap skill with trigger wo... | fa043a496f7579680c78b22d0a5015f48dc99a4d | 6779ba87497937f127ba60ba3d0e84d0f05bbdc9 | diff --git a/README.md b/README.md
index f1836fcb2..d589514bb 100644
--- a/README.md
+++ b/README.md
@@ -371,6 +371,19 @@ agent-browser install --with-deps # Also install system deps (Linux)
agent-browser upgrade # Upgrade agent-browser to the latest version
```
+### Skills
+
+```bash
+agent-bro... | [
"README.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"cli/src/main.rs",
"cli/src/output.rs",
"cli/src/skills.rs",
"docs/src/app/skills/page.mdx",
"evals/.env.example",
"evals/.gitignore",
"evals/README.md",
"evals/bun.lock",
"evals/cases/command-usage.ts",
"evals/cases/skill-loading.ts",
"eval... | [
{
"comment": "`ensureConfig` destructively overwrites the user\\'s global `~/.codex/config.toml` on every eval run\\, silently replacing their Codex CLI configuration\\.\n\n<!-- VADE-CATEGORY: configuration -->\n<!-- VADE-GITHUB-SUGGESTION-ID:65f778f4f354c289ad07ec54579c8d1e55fb2eb177728b12ed084571a1fdee2d -->\... | true | ||
vercel-labs/agent-browser | 1,225 | comment_to_fix | Add `agent-browser skills` command with evals | `ensureConfig` destructively overwrites the user\'s global `~/.codex/config.toml` on every eval run\, silently replacing their Codex CLI configuration\.
<!-- VADE-CATEGORY: configuration -->
<!-- VADE-GITHUB-SUGGESTION-ID:65f778f4f354c289ad07ec54579c8d1e55fb2eb177728b12ed084571a1fdee2d -->
<!-- VADE-RECOMMENDATION: F... | fa043a496f7579680c78b22d0a5015f48dc99a4d | 6779ba87497937f127ba60ba3d0e84d0f05bbdc9 | diff --git a/evals/lib/codex.ts b/evals/lib/codex.ts
new file mode 100644
index 000000000..379021969
--- /dev/null
+++ b/evals/lib/codex.ts
@@ -0,0 +1,205 @@
+import { readFileSync, writeFileSync, mkdirSync, existsSync } from "fs";
+import { resolve, dirname, join } from "path";
+import { fileURLToPath } from "url";
+i... | [
"evals/lib/codex.ts"
] | [
{
"comment": "`ensureConfig` destructively overwrites the user\\'s global `~/.codex/config.toml` on every eval run\\, silently replacing their Codex CLI configuration\\.\n\n<!-- VADE-CATEGORY: configuration -->\n<!-- VADE-GITHUB-SUGGESTION-ID:65f778f4f354c289ad07ec54579c8d1e55fb2eb177728b12ed084571a1fdee2d -->\... | true | ||
vercel-labs/agent-browser | 1,202 | issue_to_patch | fetch GitHub star count dynamically in docs header | ## Summary
- Replace the hardcoded "27k" star count in the docs header with a live fetch from the GitHub API (`stargazers_count`), revalidated every 24 hours via Next.js fetch caching
- Convert the Header component from a client component to an async server component
- Gracefully hide the count if the API is unreachab... | e4e2fe8633be35e2e4567a464604e6a314e74279 | 0e51006f1b6f8616e501bc63503be2a12abd20b6 | diff --git a/docs/src/components/header.tsx b/docs/src/components/header.tsx
index 7c9240e4d..5a5d94936 100644
--- a/docs/src/components/header.tsx
+++ b/docs/src/components/header.tsx
@@ -1,10 +1,10 @@
-"use client";
-
import Link from "next/link";
import { ThemeToggle } from "./theme-toggle";
import { Search } fro... | [
"docs/src/components/header.tsx",
"docs/src/lib/github.ts"
] | [] | true | ||
vercel-labs/agent-browser | 1,145 | issue_to_patch | find role link generates wrong CSS selector — matches <link> instead of <a>
## Bug
`find role link click --name "X" --exact` fails to find `<a>` anchor elements because the generated CSS selector queries `<link>` (stylesheet) elements instead of `<a>` tags.
## Root cause
In `handle_getbyrole` ([cli/src/native/actio... | fix: rewrite getByRole to use CDP accessibility tree with ref-based element resolution | ## Summary
Fixes #1123
`find role link` generated `querySelectorAll('[role="link"], link')` which matched `<link>` stylesheet elements instead of `<a>` anchor tags. This happened because ARIA role names were used directly as CSS tag selectors — `link` is the ARIA role, but the HTML element is `<a>`.
This PR replaces... | 1205e2ca9cb0c5c867551e6e06eb2a9ac11169a9 | 8c58be25de20971776e1c709ba8864e7cb0e72c9 | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index d16a8710f..e571db0c5 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -5212,78 +5212,90 @@ async fn handle_getbyrole(cmd: &Value, state: &mut DaemonState) -> Result<Value,
let name = cmd.get("name").and_then(|v| v.as_... | [
"cli/src/native/actions.rs",
"cli/src/native/element.rs"
] | [
{
"comment": "In `handle_getbyrole`\\, when the user has navigated into an iframe\\, the `data-agent-browser-located` marker attribute is set on the iframe\\'s CDP session but `execute_subaction` searches for it on the main page session\\, causing \\\"Element not found\\\" errors\\.\n\n<!-- VADE-CATEGORY: logic... | true | |
vercel-labs/agent-browser | 1,145 | comment_to_fix | fix: rewrite getByRole to use CDP accessibility tree with ref-based element resolution | In `handle_getbyrole`\, when the user has navigated into an iframe\, the `data-agent-browser-located` marker attribute is set on the iframe\'s CDP session but `execute_subaction` searches for it on the main page session\, causing \"Element not found\" errors\.
<!-- VADE-CATEGORY: logic -->
<!-- VADE-GITHUB-SUGGESTION-... | 1205e2ca9cb0c5c867551e6e06eb2a9ac11169a9 | 8c58be25de20971776e1c709ba8864e7cb0e72c9 | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index d16a8710f..e571db0c5 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -5212,78 +5212,90 @@ async fn handle_getbyrole(cmd: &Value, state: &mut DaemonState) -> Result<Value,
let name = cmd.get("name").and_then(|v| v.as_... | [
"cli/src/native/actions.rs"
] | [
{
"comment": "In `handle_getbyrole`\\, when the user has navigated into an iframe\\, the `data-agent-browser-located` marker attribute is set on the iframe\\'s CDP session but `execute_subaction` searches for it on the main page session\\, causing \\\"Element not found\\\" errors\\.\n\n<!-- VADE-CATEGORY: logic... | true | ||
vercel-labs/agent-browser | 1,033 | issue_to_patch | Custom viewport is ignored in streaming frames
## Summary
If I set a custom viewport, I expect it to be taken into account. It was partially fixed in https://github.com/vercel-labs/agent-browser/pull/952, but not fully, `frame` messages still contain wrong metadata and image.
## Steps to reproduce
```js
import { exec... | fix: use custom viewport dimensions in streaming frame metadata and image resolution | ## Summary
- Use the viewport dimensions captured at screencast start for `deviceWidth`/`deviceHeight` in frame metadata, instead of CDP's `Page.screencastFrame` metadata which returns the physical device resolution regardless of viewport emulation
- Resize the browser content area via `Browser.setContentsSize` when v... | b75fba130be2806a85345b108eeb7dfea60943c4 | d68a46fb9de4cdfbf0068d8a42911382d988bd41 | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index 338d3f58a..f9002eef1 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -1491,7 +1491,13 @@ async fn connect_auto_with_fresh_tab() -> Result<BrowserManager, String> {
}
async fn auto_launch(state: &mut DaemonState) -> Re... | [
"cli/src/native/actions.rs",
"cli/src/native/browser.rs",
"cli/src/native/cdp/chrome.rs",
"cli/src/native/e2e_tests.rs",
"cli/src/native/stream/cdp_loop.rs",
"cli/src/native/stream/mod.rs"
] | [
{
"comment": "Duplicate viewport change detection block is dead code that can never execute\\, left behind from a merge conflict resolution\\.\n\n<!-- VADE-CATEGORY: maintainability -->\n<!-- VADE-GITHUB-SUGGESTION-ID:f15f79572859b6628e80b4402f1a119dfa145d3be5cac335ec62ef6c214bfd66 -->\n\n<!-- VADE-RECOMMENDATI... | true | |
vercel-labs/agent-browser | 1,161 | issue_to_patch | fix(skill): correct duplicate Option numbering in auth section | ## What
Fix duplicate Option numbering in the authentication section of `skills/agent-browser/SKILL.md`.
The current file has two headings both labeled **"Option 4"**:
- Line 85: "Option 4: Session name"
- Line 96: "Option 4: Auth vault"
This causes "Option 5: State file" to also be off-by-one.
## Fix
... | fcb6615f5a1f89b7bb012921a8e489d7d1c8f7e8 | e9ea3e18a913a139aee3d5c78b29de8fe6eb0ccc | diff --git a/skills/agent-browser/SKILL.md b/skills/agent-browser/SKILL.md
index ba93b3d8f..c08a5a68d 100644
--- a/skills/agent-browser/SKILL.md
+++ b/skills/agent-browser/SKILL.md
@@ -93,7 +93,7 @@ agent-browser close # State auto-saved
agent-browser --session-name myapp open https://app.example.com/dashboard
```
... | [
"skills/agent-browser/SKILL.md"
] | [] | true | ||
vercel-labs/agent-browser | 1,178 | issue_to_patch | Recording context does not inherit --ignore-https-errors / AGENT_BROWSER_IGNORE_HTTPS_ERRORS
## Problem
When `AGENT_BROWSER_IGNORE_HTTPS_ERRORS=true` is set, the main browser context correctly ignores certificate errors. However, the recording context created by `agent-browser record start` does **not** inherit this ... | fix: re-apply ignore_https_errors to recording context | `record start` calls `Target.createBrowserContext` to create an isolated BrowserContext for the recording session.
`Security.setIgnoreCertificateErrors` is session-scoped — it only applies to the session it was sent on and does
not propagate to new contexts. As a result, the recording context always starts with... | 6d05a9485d0517d3e34e08f95d1e06b958b3aa69 | 110dca50f63438f5040ebbc0aaf6bfebfedba8b0 | diff --git a/cli/src/native/actions.rs b/cli/src/native/actions.rs
index 338d3f58a..a0e388b35 100644
--- a/cli/src/native/actions.rs
+++ b/cli/src/native/actions.rs
@@ -3939,6 +3939,19 @@ async fn handle_recording_start(cmd: &Value, state: &mut DaemonState) -> Result<
.await;
}
+ // R... | [
"cli/src/native/actions.rs",
"cli/src/native/browser.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,176 | issue_to_patch | v0.25.3 | 1a6ea17ed0834e882c0b87d2fc0f24c1821148ba | e25eee6c7d1b98c1db451f9305bcdce03042c81f | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fa61d091..60f4bfddc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,17 +1,33 @@
# agent-browser
-## 0.25.2
+## 0.25.3
<!-- release:start -->
### Bug Fixes
-- Fixed **Chrome being killed after ~10s idle on Linux** caused by `PR_SET_PDEATHSIG` tracking the block... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | |||
vercel-labs/agent-browser | 1,085 | issue_to_patch | Bug: `snapshot -i` output format changed in v0.22.1 (Rust daemon) — breaks structured `data.refs` parsing
**agent-browser version:** v0.22.1 (Rust daemon)
**Last working version:** v0.19.0 (Node.js daemon)
**Platform:** macOS 14.6 (darwin arm64)
**Node.js:** v22.x
**Remote browser:** Browserless v2.x (headless Chrome,... | fix: promote hidden radio/checkbox inputs in snapshot refs | ## Summary
Fixes #1024
When a `<label>` wraps a `display:none` `<input type="radio">` (a common pattern in React/Vue/Tailwind UI), Chrome excludes the input from the accessibility tree entirely. The `<label>` appears as `role="LabelText"` with an empty name in `snapshot -i` output, making it impossible for AI agents ... | 312db04e5e2e68a9c1725548b12352d0a55e84db | bf89292b23a848819972829c3c6fde7d07b33c25 | diff --git a/cli/src/native/snapshot.rs b/cli/src/native/snapshot.rs
index 02db7902e..ec1ae054d 100644
--- a/cli/src/native/snapshot.rs
+++ b/cli/src/native/snapshot.rs
@@ -145,12 +145,38 @@ impl TreeNode {
}
}
+/// The type of a hidden form input found inside a cursor-interactive element.
+#[derive(Clone, Copy... | [
"cli/src/native/snapshot.rs"
] | [] | true | |
vercel-labs/agent-browser | 1,175 | issue_to_patch | anchors | b75fba130be2806a85345b108eeb7dfea60943c4 | d30b561d70f12b907358f1397d54632a7f5ac21f | diff --git a/docs/mdx-components.tsx b/docs/mdx-components.tsx
index 0c1120f36..d43f4bcde 100644
--- a/docs/mdx-components.tsx
+++ b/docs/mdx-components.tsx
@@ -27,13 +27,32 @@ function extractText(children: React.ReactNode): string {
export function useMDXComponents(components: MDXComponents): MDXComponents {
retu... | [
"docs/mdx-components.tsx",
"docs/src/app/globals.css"
] | [] | true | |||
vercel-labs/agent-browser | 1,174 | issue_to_patch | v0.25.2 | eb15cc089418d1870d157257398c963818c81bc9 | e545987b7a595f15af23b8a580519d6a6adccf4d | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 89f42249b..1fa61d091 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,19 @@
# agent-browser
-## 0.25.1
+## 0.25.2
<!-- release:start -->
+### Bug Fixes
+
+- Fixed **Chrome being killed after ~10s idle on Linux** caused by `PR_SET_PDEATHSIG` tracking the blocki... | [
"CHANGELOG.md",
"cli/Cargo.lock",
"cli/Cargo.toml",
"docs/src/app/changelog/page.mdx",
"package.json",
"packages/dashboard/package.json"
] | [] | true | |||
vercel-labs/agent-browser | 1,173 | issue_to_patch | CDP target lost after form submission / SPA navigation — tab becomes about:blank
## Bug Description
After submitting a login form (email/password → Enter or button click), the active CDP target switches to `about:blank` and all subsequent commands (snapshot, screenshot, eval, fill) operate on a dead page. The actual ... | fix: remove PR_SET_PDEATHSIG that kills Chrome after ~10s idle (#1157) | v0.24.1 introduced `prctl(PR_SET_PDEATHSIG, SIGKILL)` in #1137 to kill Chrome when the daemon dies. However, `PR_SET_PDEATHSIG` tracks the **thread** that called `fork()`, not the process (`prctl(2)` documents this). Chrome is spawned via `tokio::task::spawn_blocking`, whose threads are reaped after ~10 seconds of idle... | 7b3f826cbb61f7ed19ccb034bd785b8c5383e568 | a98d9a2d48c05762e7f1818eccda386552e42602 | diff --git a/cli/src/native/cdp/chrome.rs b/cli/src/native/cdp/chrome.rs
index 9236e0fe9..d39d80a3f 100644
--- a/cli/src/native/cdp/chrome.rs
+++ b/cli/src/native/cdp/chrome.rs
@@ -351,23 +351,18 @@ fn try_launch_chrome(chrome_path: &Path, options: &LaunchOptions) -> Result<Chro
// Place Chrome in its own process ... | [
"cli/src/native/cdp/chrome.rs"
] | [] | true | |
vercel/hyper | 8,184 | issue_to_patch | chore: switch package management to pnpm | <!-- CURSOR_AGENT_PR_BODY_BEGIN -->
<!-- Hi there! Thanks for submitting a PR! We're excited to see what you've got for us.
- To help whoever reviews your PR, it'd be extremely helpful for you to list whether your PR is ready to be merged,
If there's anything left to do and if there are any related PRs
- It'd also be ... | 2a7bb18259d975f27b30b502af1be7576f6f5656 | c8021785cc3b10f533633e90b87b8e14bbf7887f | diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index d42e2995aba9..88367c4f746d 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -10,6 +10,7 @@ defaults:
shell: bash
env:
NODE_VERSION: 18.x
+ PNPM_VERSION: 10.33.0
jobs:
build:
runs-on: ${{matri... | [
".github/workflows/nodejs.yml",
".gitignore",
".husky/pre-push",
".npmrc",
".yarnrc",
"PLUGINS.md",
"README.md",
"app/.npmrc",
"app/.yarnrc",
"app/package.json",
"app/pnpm-lock.yaml",
"app/pnpm-workspace.yaml",
"app/yarn.lock",
"bin/download-mksnapshot.js",
"bin/mk-snapshot.js",
"packa... | [] | true | ||
vercel/hyper | 3,490 | issue_to_patch | Minor fix on string #51 | <!-- Hi there! Thanks for submitting a PR! We're excited to see what you've got for us.
- To help whoever reviews your PR, it'd be extremely helpful for you to list whether your PR is ready to be merged,
If there's anything left to do and if there are any related PRs
- It'd also be extremely helpful to enable us t... | fadc2f058e07da2f33e236437c3b0876807003fa | a66453b09e25ae9af87b41332825c5303ce2f524 | diff --git a/README.md b/README.md
index 0c520097b913..7b0c3fe80c3f 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ Regardless of the platform you are working on, you will need to have Yarn instal
- Be sure to run `yarn global add windows-build-tools` to install `windows-build-tools`.
* macOS
- O... | [
"README.md"
] | [] | true | ||
vercel/hyper | 3,578 | issue_to_patch | Syntax issue on paragraph #44 | <!-- Hi there! Thanks for submitting a PR! We're excited to see what you've got for us.
- To help whoever reviews your PR, it'd be extremely helpful for you to list whether your PR is ready to be merged,
If there's anything left to do and if there are any related PRs
- It'd also be extremely helpful to enable us t... | bfbd61eb433eef21aa2ac055ae146e1e7b3117fa | 15687a24caffe335ed0d174b7ddbf68845388255 | diff --git a/PLUGINS.md b/PLUGINS.md
index 3516119fc9ea..a7ba20ce3d44 100644
--- a/PLUGINS.md
+++ b/PLUGINS.md
@@ -41,7 +41,7 @@ Almost all available API methods can be found on https://hyper.is.
If there's any missing, let us know or submit a PR to document it!
### Components
-You can decorate almost all Hyper com... | [
"PLUGINS.md"
] | [] | true | ||
vercel/hyper | 7,902 | issue_to_patch | Bump @types/node from 18.19.30 to 18.19.31 | [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-comp... | 617bea17d8f37d79e82d57e321880277f73bfb89 | 3711b5fc4f8e06b71ad88cb393537ac2ecd3e27a | diff --git a/package.json b/package.json
index 5ba9c07ebc4f..8f12096e812f 100644
--- a/package.json
+++ b/package.json
@@ -91,7 +91,7 @@
"@types/lodash": "^4.17.0",
"@types/mousetrap": "1.6.15",
"@types/ms": "0.7.34",
- "@types/node": "18.19.30",
+ "@types/node": "18.19.31",
"@types/plist": "3... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,908 | issue_to_patch | Bump @types/react from 18.2.75 to 18.2.79 | Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.75 to 18.2.79.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li>
</ul>
</details>
<br />
[![... | 57c95b493d38734feb5cd372d76e47ca6be83903 | d68766a294966bab8453f735badbefe5488f6b61 | diff --git a/package.json b/package.json
index 09e5be5edf8f..43c9d519fccb 100644
--- a/package.json
+++ b/package.json
@@ -93,7 +93,7 @@
"@types/ms": "0.7.34",
"@types/node": "18.19.30",
"@types/plist": "3.0.5",
- "@types/react": "18.2.75",
+ "@types/react": "18.2.79",
"@types/react-dom": "18.... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,904 | issue_to_patch | Bump inquirer from 9.2.17 to 9.2.18 | Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 9.2.17 to 9.2.18.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/SBoudrias/Inquirer.js/releases">inquirer's releases</a>.</em></p>
<blockquote>
<h2>inquirer@9.2.18</h2>
<ul>
<li>On windows, we will now use unicod... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 0c824810ee3166d5950ecb452307c2e7abe3540f | diff --git a/package.json b/package.json
index a238f3b37cbc..1515a54e9021 100644
--- a/package.json
+++ b/package.json
@@ -122,7 +122,7 @@
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.1",
"husky": "9.0.11",
- "inquirer": "9.2.17",
+ "inquirer": "9.2.18",
"node-addon-api": "... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,899 | issue_to_patch | Bump playwright from 1.43.0 to 1.43.1 | Bumps [playwright](https://github.com/microsoft/playwright) from 1.43.0 to 1.43.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases">playwright's releases</a>.</em></p>
<blockquote>
<h2>v1.43.1</h2>
<h3>Highlights</h3>
<p><a href="https://redirect.... | 5fdea9ee9c83611746807440a22aaa2cb624208c | b5f5176a12ebf946492f40243f1498049804855e | diff --git a/package.json b/package.json
index a238f3b37cbc..2aff21ed5fbe 100644
--- a/package.json
+++ b/package.json
@@ -126,7 +126,7 @@
"node-addon-api": "8.0.0",
"null-loader": "4.0.1",
"parse-url": "8.1.0",
- "playwright": "1.43.0",
+ "playwright": "1.43.1",
"plist": "3.1.0",
"pretti... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,896 | issue_to_patch | Bump electron-mksnapshot from 29.2.0 to 29.3.0 | Bumps [electron-mksnapshot](https://github.com/electron/mksnapshot) from 29.2.0 to 29.3.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/electron/mksnapshot/compare/v29.2.0...v29.3.0">compare view</a></li>
</ul>
</details>
<br />
[ from 7.0.0 to 7.1.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack-contrib/css-loader/releases">css-loader's releases</a>.</em></p>
<blockquote>
<h2>v7.1.1</h2>
<h3><a href="https://github.com/webpack-... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 783255791859d2362f5e27947882eb44fc6070da | diff --git a/package.json b/package.json
index a238f3b37cbc..64e247ca2906 100644
--- a/package.json
+++ b/package.json
@@ -36,7 +36,7 @@
"clsx": "2.1.0",
"color": "4.2.3",
"columnify": "1.6.0",
- "css-loader": "7.0.0",
+ "css-loader": "7.1.1",
"got": "12.4.1",
"json-loader": "0.5.7",
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,900 | issue_to_patch | Bump typescript from 5.4.4 to 5.4.5 | [//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [typescript](https://github.com/Micro... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 93ef83ef50c49f8d3442c73eeda0f87f744729e8 | diff --git a/package.json b/package.json
index a238f3b37cbc..4f255e8ac1e2 100644
--- a/package.json
+++ b/package.json
@@ -134,7 +134,7 @@
"terser": "5.30.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "10.9.2",
- "typescript": "5.4.4",
+ "typescript": "5.4.5",
"webpack": "5.91.0"
},
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,903 | issue_to_patch | Bump eslint-plugin-jsonc from 2.15.0 to 2.15.1 | Bumps [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) from 2.15.0 to 2.15.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/ota-meshi/eslint-plugin-jsonc/releases">eslint-plugin-jsonc's releases</a>.</em></p>
<blockquote>
<h2>v2.15.1</h2>
<h3>Patch Cha... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 59ef285806df34cf6e4d7c8dd2ae844742a807b5 | diff --git a/package.json b/package.json
index a238f3b37cbc..32fe5b4981ef 100644
--- a/package.json
+++ b/package.json
@@ -117,7 +117,7 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-schema-validator": "^4.8.3",
- "eslint-plugin-jsonc": "^2.15.0",
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,897 | issue_to_patch | Bump @types/react-dom from 18.2.24 to 18.2.25 | Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.24 to 18.2.25.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare view</a></li>
</ul>
</details>
... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 2c8fc570269934394774022f4d9b9001d4eafef8 | diff --git a/package.json b/package.json
index a238f3b37cbc..c5ecd59d95ab 100644
--- a/package.json
+++ b/package.json
@@ -94,7 +94,7 @@
"@types/node": "18.19.30",
"@types/plist": "3.0.5",
"@types/react": "18.2.75",
- "@types/react-dom": "18.2.24",
+ "@types/react-dom": "18.2.25",
"@types/seam... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,859 | issue_to_patch | Bump @babel/preset-typescript from 7.23.3 to 7.24.1 | Bumps [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) from 7.23.3 to 7.24.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/preset-typescript</code>'s releases</a>.</em></p>
<blockquote>... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 0483352fbde1303d2608b344097f43536d02f47d | diff --git a/package.json b/package.json
index a238f3b37cbc..52226519a2a1 100644
--- a/package.json
+++ b/package.json
@@ -81,7 +81,7 @@
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/preset-react": "7.24.1",
- "@babel/preset-types... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,906 | issue_to_patch | Bump style-loader from 3.3.4 to 4.0.0 | Bumps [style-loader](https://github.com/webpack-contrib/style-loader) from 3.3.4 to 4.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack-contrib/style-loader/releases">style-loader's releases</a>.</em></p>
<blockquote>
<h2>v4.0.0</h2>
<h2><a href="https://github.com/... | 5fdea9ee9c83611746807440a22aaa2cb624208c | 43a36e5777d0d8884f0a6b61c56d4880bef57bc5 | diff --git a/package.json b/package.json
index a238f3b37cbc..13930942497f 100644
--- a/package.json
+++ b/package.json
@@ -130,7 +130,7 @@
"plist": "3.1.0",
"prettier": "3.2.5",
"proxyquire": "2.1.3",
- "style-loader": "3.3.4",
+ "style-loader": "4.0.0",
"terser": "5.30.3",
"terser-webpac... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,860 | issue_to_patch | Bump webpack from 5.90.3 to 5.91.0 | [//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [webpack](https://github.com/webpack/... | 5b379c8d01df0deb0b88e4f1dc74ad424511065f | cd7131202769c7d66c200a46fb1f0a822a78fc89 | diff --git a/package.json b/package.json
index 99034cae15e0..a238f3b37cbc 100644
--- a/package.json
+++ b/package.json
@@ -135,7 +135,7 @@
"terser-webpack-plugin": "^5.3.10",
"ts-node": "10.9.2",
"typescript": "5.4.4",
- "webpack": "5.90.3"
+ "webpack": "5.91.0"
},
"electronmon": {
"patt... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,893 | issue_to_patch | Bump @types/react from 18.2.66 to 18.2.75 | Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.66 to 18.2.75.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li>
</ul>
</details>
<br />
[![... | 272abbc145fe6bc921561b1e04f1b9363f2e57a1 | 69a3f0b4a144e45bfa622e8cf1f82a29e7ab508f | diff --git a/package.json b/package.json
index 7607b74516d0..9c3c2ed69ee1 100644
--- a/package.json
+++ b/package.json
@@ -93,7 +93,7 @@
"@types/ms": "0.7.34",
"@types/node": "18.19.30",
"@types/plist": "3.0.5",
- "@types/react": "18.2.74",
+ "@types/react": "18.2.75",
"@types/react-dom": "18.... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,891 | issue_to_patch | Bump @babel/parser from 7.23.9 to 7.24.4 in /app | Bumps [@babel/parser](https://github.com/babel/babel/tree/HEAD/packages/babel-parser) from 7.23.9 to 7.24.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/parser</code>'s releases</a>.</em></p>
<blockquote>
<h2>v7.24.4 (2024-04-03)</h2>
<p... | 3b910c7853a705725af9c145c32261327b3da4f9 | cf2e2c17ba29822b7da355727ae1aaea4d36a57e | diff --git a/app/package.json b/app/package.json
index 981e4718d0ff..cb070e67dde5 100644
--- a/app/package.json
+++ b/app/package.json
@@ -13,7 +13,7 @@
"postinstall": "npx patch-package"
},
"dependencies": {
- "@babel/parser": "7.23.9",
+ "@babel/parser": "7.24.4",
"@electron/remote": "2.1.2",
... | [
"app/package.json",
"app/yarn.lock"
] | [] | true | ||
vercel/hyper | 7,883 | issue_to_patch | Bump @types/react-dom from 18.2.22 to 18.2.24 | Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.22 to 18.2.24.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare view</a></li>
</ul>
</details>
... | 3b910c7853a705725af9c145c32261327b3da4f9 | e5c10e042569cf1929df6f083f9b8c7a7ffb64ab | diff --git a/package.json b/package.json
index d00816338dfc..7607b74516d0 100644
--- a/package.json
+++ b/package.json
@@ -94,7 +94,7 @@
"@types/node": "18.19.30",
"@types/plist": "3.0.5",
"@types/react": "18.2.74",
- "@types/react-dom": "18.2.22",
+ "@types/react-dom": "18.2.24",
"@types/seam... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,861 | issue_to_patch | Bump @babel/cli from 7.23.9 to 7.24.1 | Bumps [@babel/cli](https://github.com/babel/babel/tree/HEAD/packages/babel-cli) from 7.23.9 to 7.24.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/cli</code>'s releases</a>.</em></p>
<blockquote>
<h2>v7.24.1 (2024-03-19)</h2>
<h4>:bug: B... | 40c81f9b8e5a1bf0cc0f100ae566c3c4b26eb8ac | 69e27ec3dc92d95d8ed3af99f598e338efeda27f | diff --git a/package.json b/package.json
index b37fd096c4b5..8b96901be6ab 100644
--- a/package.json
+++ b/package.json
@@ -74,7 +74,7 @@
"devDependencies": {
"@ava/babel": "2.0.0",
"@ava/typescript": "^4.1.0",
- "@babel/cli": "7.23.9",
+ "@babel/cli": "7.24.1",
"@babel/core": "7.24.4",
"@ba... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,885 | issue_to_patch | Bump typescript from 5.4.2 to 5.4.4 | Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.2 to 5.4.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Microsoft/TypeScript/releases">typescript's releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.4.4</h2>
<p>For release notes, check out the <a hre... | b50f126b0fa2be7ba24afb14c19f51a290eaa458 | 76376665da7da7178eaadd6084200fc88de2ae3f | diff --git a/package.json b/package.json
index bce2fcd52b67..f5c50791fa2e 100644
--- a/package.json
+++ b/package.json
@@ -134,7 +134,7 @@
"terser": "5.30.3",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "10.9.2",
- "typescript": "5.4.2",
+ "typescript": "5.4.4",
"webpack": "5.90.3"
},
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,892 | issue_to_patch | Bump tar from 6.1.15 to 6.2.1 | Bumps [tar](https://github.com/isaacs/node-tar) from 6.1.15 to 6.2.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md">tar's changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>6.2</h2>
<ul>
<li>Add support for brotli compression</li>... | 2b66044c1afce76c88bb7606ae45ca328cea1b6d | 955133d0058d4a9c572acf49bf8439b4ef3bda92 | diff --git a/yarn.lock b/yarn.lock
index 4d96cd4df628..b2d4ea746eb3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -8147,9 +8147,9 @@ tapable@^2.1.1, tapable@^2.2.0:
integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw==
tar@^6.0.5, tar@^6.1.11, tar@^6.1.12, tar@^6.1.... | [
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,833 | issue_to_patch | Bump recast from 0.23.4 to 0.23.6 in /app | Bumps [recast](https://github.com/benjamn/recast) from 0.23.4 to 0.23.6.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/benjamn/recast/commit/88a2baef95d9b63275a774a383d4493e20704ff0"><code>88a2bae</code></a> 0.23.6</li>
<li><a href="https://github.com/benjamn/recast/commit/bc87a950bb01eab7ba... | 56617230191b24e63744753d0e2427fb4f724a9c | e75eb03ebddfda6c4b25d8146a096918c6797cfb | diff --git a/app/package.json b/app/package.json
index eff778d4a773..edd865f63653 100644
--- a/app/package.json
+++ b/app/package.json
@@ -35,7 +35,7 @@
"queue": "6.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
- "recast": "0.23.4",
+ "recast": "0.23.6",
"semver": "7.6.0",
"shell-env": ... | [
"app/package.json",
"app/yarn.lock"
] | [] | true | ||
vercel/hyper | 7,886 | issue_to_patch | Bump electron-mksnapshot from 29.1.4 to 29.2.0 | Bumps [electron-mksnapshot](https://github.com/electron/mksnapshot) from 29.1.4 to 29.2.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/electron/mksnapshot/commit/6c3c51a37493454ed535eb99ce7f050cacedc998"><code>6c3c51a</code></a> chore(deps-dev): bump follow-redirects from 1.15.4 to 1.15.6 ... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | b2019ff7fff6e81f585de056e2919c6325f07e57 | diff --git a/package.json b/package.json
index d4875a1fb860..357ed3d3755e 100644
--- a/package.json
+++ b/package.json
@@ -109,7 +109,7 @@
"electron": "22.3.25",
"electron-builder": "^24.13.3",
"electron-link": "^0.6.0",
- "electron-mksnapshot": "29.1.4",
+ "electron-mksnapshot": "29.2.0",
"el... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,827 | issue_to_patch | Bump ava from 6.1.1 to 6.1.2 | Bumps [ava](https://github.com/avajs/ava) from 6.1.1 to 6.1.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/avajs/ava/releases">ava's releases</a>.</em></p>
<blockquote>
<h2>v6.1.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix throws assertions rejecting falsy values when <code... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | eb69a80ebe163c03b4f7d9133f887d8ea742e4aa | diff --git a/package.json b/package.json
index d4875a1fb860..55053ae9d9f8 100644
--- a/package.json
+++ b/package.json
@@ -100,7 +100,7 @@
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.21.0",
- "ava": "6.1.1",
+ "ava": "6.1.2",
"babel-load... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,834 | issue_to_patch | Bump electron-store from 8.1.0 to 8.2.0 in /app | Bumps [electron-store](https://github.com/sindresorhus/electron-store) from 8.1.0 to 8.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/sindresorhus/electron-store/releases">electron-store's releases</a>.</em></p>
<blockquote>
<h2>v8.2.0</h2>
<ul>
<li>Allow awaiting <code>... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 2642b47e3448942fb9dbf0665e3754fb01a2ce02 | diff --git a/app/package.json b/app/package.json
index eff778d4a773..981e4718d0ff 100644
--- a/app/package.json
+++ b/app/package.json
@@ -23,7 +23,7 @@
"electron-devtools-installer": "3.2.0",
"electron-fetch": "1.9.1",
"electron-is-dev": "2.0.0",
- "electron-store": "8.1.0",
+ "electron-store": "8... | [
"app/package.json",
"app/yarn.lock"
] | [] | true | ||
vercel/hyper | 7,865 | issue_to_patch | Bump @babel/preset-react from 7.23.3 to 7.24.1 | Bumps [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) from 7.23.3 to 7.24.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/preset-react</code>'s releases</a>.</em></p>
<blockquote>
<h2>v7.24.1 (2... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 2876beb1a62e480662f0cb6f3dfee6016c584890 | diff --git a/package.json b/package.json
index d4875a1fb860..8bb686e8f853 100644
--- a/package.json
+++ b/package.json
@@ -80,7 +80,7 @@
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
- ... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,880 | issue_to_patch | Bump @types/react from 18.2.66 to 18.2.74 | Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.66 to 18.2.74.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li>
</ul>
</details>
<br />
[![... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | f18dce1670a29c9b677556c820ae3456364ec33d | diff --git a/package.json b/package.json
index d4875a1fb860..4642556edbd2 100644
--- a/package.json
+++ b/package.json
@@ -93,7 +93,7 @@
"@types/ms": "0.7.34",
"@types/node": "18.19.26",
"@types/plist": "3.0.5",
- "@types/react": "18.2.66",
+ "@types/react": "18.2.74",
"@types/react-dom": "18.... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,873 | issue_to_patch | Bump inquirer from 9.2.16 to 9.2.17 | Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 9.2.16 to 9.2.17.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/SBoudrias/Inquirer.js/commit/086fb1c59092cba248e55583d92f34e4eec44b2d"><code>086fb1c</code></a> Publish</li>
<li><a href="https://github.com/SBoudrias/Inquirer.js/c... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 7beba6d67d30396f2828569082f4cc6a348bfd3e | diff --git a/package.json b/package.json
index d4875a1fb860..85b74d8aa2c1 100644
--- a/package.json
+++ b/package.json
@@ -122,7 +122,7 @@
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.1",
"husky": "9.0.11",
- "inquirer": "9.2.16",
+ "inquirer": "9.2.17",
"node-addon-api": "... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,874 | issue_to_patch | Bump eslint-plugin-jsonc from 2.13.0 to 2.15.0 | Bumps [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) from 2.13.0 to 2.15.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/ota-meshi/eslint-plugin-jsonc/releases">eslint-plugin-jsonc's releases</a>.</em></p>
<blockquote>
<h2>v2.15.0</h2>
<h3>Minor Cha... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 34cf586499ad738bb13cacb658604bde31501dbe | diff --git a/package.json b/package.json
index d4875a1fb860..f8009bbd5015 100644
--- a/package.json
+++ b/package.json
@@ -117,7 +117,7 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-schema-validator": "^4.8.3",
- "eslint-plugin-jsonc": "^2.13.0",
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,888 | issue_to_patch | Bump @types/node from 18.19.26 to 18.19.30 |
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-co... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 5c393c39b8870cf0114d6f86cb492ce68b349160 | diff --git a/package.json b/package.json
index d4875a1fb860..64404a94afa4 100644
--- a/package.json
+++ b/package.json
@@ -91,7 +91,7 @@
"@types/lodash": "^4.17.0",
"@types/mousetrap": "1.6.15",
"@types/ms": "0.7.34",
- "@types/node": "18.19.26",
+ "@types/node": "18.19.30",
"@types/plist": "3... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,889 | issue_to_patch | Bump css-loader from 6.10.0 to 7.0.0 | Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 6.10.0 to 7.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/webpack-contrib/css-loader/releases">css-loader's releases</a>.</em></p>
<blockquote>
<h2>v7.0.0</h2>
<h2><a href="https://github.com/webpack... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | ca51991dd02dcb875df91b1dfad43cbb2013483e | diff --git a/package.json b/package.json
index d4875a1fb860..8d81629fcacb 100644
--- a/package.json
+++ b/package.json
@@ -36,7 +36,7 @@
"clsx": "2.1.0",
"color": "4.2.3",
"columnify": "1.6.0",
- "css-loader": "6.10.0",
+ "css-loader": "7.0.0",
"got": "12.4.1",
"json-loader": "0.5.7",
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,882 | issue_to_patch | Bump terser from 5.29.2 to 5.30.3 | Bumps [terser](https://github.com/terser/terser) from 5.29.2 to 5.30.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/terser/terser/blob/master/CHANGELOG.md">terser's changelog</a>.</em></p>
<blockquote>
<h2>v5.30.3</h2>
<ul>
<li>Fix precedence of <code>#private in ...</code> op... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 631b56c126a7d9c990184590ddc057bef774b8c5 | diff --git a/package.json b/package.json
index d4875a1fb860..ab58d213bf41 100644
--- a/package.json
+++ b/package.json
@@ -131,7 +131,7 @@
"prettier": "3.2.5",
"proxyquire": "2.1.3",
"style-loader": "3.3.4",
- "terser": "5.29.2",
+ "terser": "5.30.3",
"terser-webpack-plugin": "^5.3.10",
"... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,884 | issue_to_patch | Bump playwright from 1.42.1 to 1.43.0 | Bumps [playwright](https://github.com/microsoft/playwright) from 1.42.1 to 1.43.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases">playwright's releases</a>.</em></p>
<blockquote>
<h2>v1.43.0</h2>
<h2>New APIs</h2>
<ul>
<li>
<p>Method <a href="ht... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 97c3bdc80ced1acfe3064fa4371787791335c4ed | diff --git a/package.json b/package.json
index d4875a1fb860..25b7fd981feb 100644
--- a/package.json
+++ b/package.json
@@ -126,7 +126,7 @@
"node-addon-api": "8.0.0",
"null-loader": "4.0.1",
"parse-url": "8.1.0",
- "playwright": "1.42.1",
+ "playwright": "1.43.0",
"plist": "3.1.0",
"pretti... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,887 | issue_to_patch | Bump @babel/core from 7.23.9 to 7.24.4 | Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.23.9 to 7.24.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/core</code>'s releases</a>.</em></p>
<blockquote>
<h2>v7.24.4 (2024-04-03)</h2>
<p>Thank... | 63795530f0b237deea0efa71e24e8b92fc0f48e1 | 2b255e0a68afb9e2ef4a74efd72c4a3e6e95eb36 | diff --git a/package.json b/package.json
index d4875a1fb860..c934225a4888 100644
--- a/package.json
+++ b/package.json
@@ -75,7 +75,7 @@
"@ava/babel": "2.0.0",
"@ava/typescript": "^4.1.0",
"@babel/cli": "7.23.9",
- "@babel/core": "7.23.9",
+ "@babel/core": "7.24.4",
"@babel/plugin-proposal-cla... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,825 | issue_to_patch | Bump playwright from 1.41.2 to 1.42.1 | Bumps [playwright](https://github.com/microsoft/playwright) from 1.41.2 to 1.42.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases">playwright's releases</a>.</em></p>
<blockquote>
<h2>v1.42.1</h2>
<h3>Highlights</h3>
<p><a href="https://redirect.... | 392fee843ebc1abe6fd7fb207af4976d892faf9e | e9905ef2fb7f3e6d3858754bd10d28f336fa7860 | diff --git a/package.json b/package.json
index 6f8da1d06e10..77a27636553a 100644
--- a/package.json
+++ b/package.json
@@ -126,7 +126,7 @@
"node-addon-api": "8.0.0",
"null-loader": "4.0.1",
"parse-url": "8.1.0",
- "playwright": "1.41.2",
+ "playwright": "1.42.1",
"plist": "3.1.0",
"pretti... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,826 | issue_to_patch | Bump electron-builder from 24.12.0 to 24.13.3 | Bumps [electron-builder](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder) from 24.12.0 to 24.13.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/releases">electron-builder's releases</a>.</em></p>
<... | ada787c7f52d4fce14725d158ca8f390dce47bda | 90146c7f56af8b6bfc131dd965b80cac100cbc23 | diff --git a/package.json b/package.json
index 9124a3e4f457..d48112a35e46 100644
--- a/package.json
+++ b/package.json
@@ -107,7 +107,7 @@
"cpy-cli": "^5.0.0",
"cross-env": "7.0.3",
"electron": "22.3.25",
- "electron-builder": "^24.12.0",
+ "electron-builder": "^24.13.3",
"electron-link": "^0.... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,850 | issue_to_patch | Bump terser from 5.28.1 to 5.29.2 | Bumps [terser](https://github.com/terser/terser) from 5.28.1 to 5.29.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/terser/terser/blob/master/CHANGELOG.md">terser's changelog</a>.</em></p>
<blockquote>
<h2>v5.29.2</h2>
<ul>
<li>Make sure 'computed_props' creates string keys</l... | 392fee843ebc1abe6fd7fb207af4976d892faf9e | e4fc477537d316ec0aab14412d3351946b1f0f2c | diff --git a/package.json b/package.json
index 6f8da1d06e10..5f868f1bcf96 100644
--- a/package.json
+++ b/package.json
@@ -131,7 +131,7 @@
"prettier": "3.2.5",
"proxyquire": "2.1.3",
"style-loader": "3.3.4",
- "terser": "5.28.1",
+ "terser": "5.29.2",
"terser-webpack-plugin": "^5.3.10",
"... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,855 | issue_to_patch | Bump @types/node from 18.19.18 to 18.19.26 |
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-co... | 4f9288672e340b8a11963d625e8cabb85c48838c | cfbb647d16cb1f4d6f16dc046c369bc6f40f21e4 | diff --git a/package.json b/package.json
index b47fbd28edc2..d6db5875c364 100644
--- a/package.json
+++ b/package.json
@@ -91,7 +91,7 @@
"@types/lodash": "^4.17.0",
"@types/mousetrap": "1.6.15",
"@types/ms": "0.7.34",
- "@types/node": "18.19.18",
+ "@types/node": "18.19.26",
"@types/plist": "3... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,849 | issue_to_patch | Bump inquirer from 9.2.15 to 9.2.16 | Bumps [inquirer](https://github.com/SBoudrias/Inquirer.js) from 9.2.15 to 9.2.16.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/SBoudrias/Inquirer.js/commit/2de191afab92c1a214dfe268c80109014803f11b"><code>2de191a</code></a> Publish</li>
<li><a href="https://github.com/SBoudrias/Inquirer.js/c... | 4f9288672e340b8a11963d625e8cabb85c48838c | 92462b9132661bb480330746acd25fc65d5c316f | diff --git a/package.json b/package.json
index 74c4de86f0fc..b7960bcf0554 100644
--- a/package.json
+++ b/package.json
@@ -122,7 +122,7 @@
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.34.1",
"husky": "9.0.11",
- "inquirer": "9.2.15",
+ "inquirer": "9.2.16",
"node-addon-api": "... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,773 | issue_to_patch | Bump prettier from 3.1.1 to 3.2.5 | Bumps [prettier](https://github.com/prettier/prettier) from 3.1.1 to 3.2.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p>
<blockquote>
<h2>3.2.5</h2>
<p>🔗 <a href="https://github.com/prettier/prettier/blob/main/C... | 56617230191b24e63744753d0e2427fb4f724a9c | 42d9ae6fcdf7fad4a8dd72c2342711cc98c5956d | diff --git a/package.json b/package.json
index 9343baaa47b3..749ac5bfa027 100644
--- a/package.json
+++ b/package.json
@@ -128,7 +128,7 @@
"parse-url": "8.1.0",
"playwright": "1.41.2",
"plist": "3.1.0",
- "prettier": "3.1.1",
+ "prettier": "3.2.5",
"proxyquire": "2.1.3",
"style-loader": "... | [
"package.json",
"test/index.ts",
"yarn.lock"
] | [] | diff --git a/test/index.ts b/test/index.ts
index 34035634259c..522069b81b54 100644
--- a/test/index.ts
+++ b/test/index.ts
@@ -38,11 +38,10 @@ test.before(async () => {
test.after(async () => {
await app
- .evaluate(
- ({BrowserWindow}) =>
- BrowserWindow.getFocusedWindow()
- ?.capturePage... | true | |
vercel/hyper | 7,847 | issue_to_patch | Bump @types/react-dom from 18.2.19 to 18.2.22 | Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) from 18.2.19 to 18.2.22.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom">compare view</a></li>
</ul>
</details>
... | ada787c7f52d4fce14725d158ca8f390dce47bda | d956c4db4ec3fc2cbaae6f739038b53f725de4ef | diff --git a/package.json b/package.json
index 9124a3e4f457..74c4de86f0fc 100644
--- a/package.json
+++ b/package.json
@@ -94,7 +94,7 @@
"@types/node": "18.19.18",
"@types/plist": "3.0.5",
"@types/react": "18.2.66",
- "@types/react-dom": "18.2.19",
+ "@types/react-dom": "18.2.22",
"@types/seam... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,835 | issue_to_patch | Bump typescript from 5.3.3 to 5.4.2 | Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.3.3 to 5.4.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/Microsoft/TypeScript/releases">typescript's releases</a>.</em></p>
<blockquote>
<h2>TypeScript 5.4</h2>
<p>For release notes, check out the <a href=... | 56617230191b24e63744753d0e2427fb4f724a9c | d442eb4a5420901255e288b7eeb477e249ce9186 | diff --git a/package.json b/package.json
index 9343baaa47b3..13ec9ee3fb08 100644
--- a/package.json
+++ b/package.json
@@ -134,7 +134,7 @@
"terser": "5.28.1",
"terser-webpack-plugin": "^5.3.10",
"ts-node": "10.9.2",
- "typescript": "5.3.3",
+ "typescript": "5.4.2",
"webpack": "5.90.3"
},
... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,839 | issue_to_patch | Bump node-addon-api from 7.1.0 to 8.0.0 | [//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [node-addon-api](https://github.com/n... | 56617230191b24e63744753d0e2427fb4f724a9c | 58cef585fa57298d47c5595f733c462b65da0df0 | diff --git a/package.json b/package.json
index 9343baaa47b3..be7caf9b3eee 100644
--- a/package.json
+++ b/package.json
@@ -123,7 +123,7 @@
"eslint-plugin-react": "7.33.2",
"husky": "9.0.11",
"inquirer": "9.2.15",
- "node-addon-api": "7.1.0",
+ "node-addon-api": "8.0.0",
"null-loader": "4.0.1",... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,846 | issue_to_patch | Bump @types/react from 18.2.58 to 18.2.66 | Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.58 to 18.2.66.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react">compare view</a></li>
</ul>
</details>
<br />
[![... | 56617230191b24e63744753d0e2427fb4f724a9c | a21db1bdfc8c6fbb6cc547e6a183f0a9594a25b8 | diff --git a/package.json b/package.json
index 9343baaa47b3..51dcfd5e64d0 100644
--- a/package.json
+++ b/package.json
@@ -93,7 +93,7 @@
"@types/ms": "0.7.34",
"@types/node": "18.19.18",
"@types/plist": "3.0.5",
- "@types/react": "18.2.58",
+ "@types/react": "18.2.66",
"@types/react-dom": "18.... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,848 | issue_to_patch | Bump eslint-plugin-react from 7.33.2 to 7.34.1 | Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.33.2 to 7.34.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/jsx-eslint/eslint-plugin-react/releases">eslint-plugin-react's releases</a>.</em></p>
<blockquote>
<h2>v7.34.1</h2>
<h3>Fixed</... | 56617230191b24e63744753d0e2427fb4f724a9c | b0e902347b5c070aebaa869d567452c2277dd29a | diff --git a/package.json b/package.json
index 9343baaa47b3..ddbf9af0af6c 100644
--- a/package.json
+++ b/package.json
@@ -120,7 +120,7 @@
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^5.1.3",
- "eslint-plugin-react": "7.33.2",
+ "eslint-plugin-reac... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,852 | issue_to_patch | Bump @types/lodash from 4.14.202 to 4.17.0 | Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) from 4.14.202 to 4.17.0.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash">compare view</a></li>
</ul>
</details>
<br />
... | 56617230191b24e63744753d0e2427fb4f724a9c | 3bcea72cfb5348ee169092b3d78db39a8d165013 | diff --git a/package.json b/package.json
index 9343baaa47b3..cd2e9411ad96 100644
--- a/package.json
+++ b/package.json
@@ -88,7 +88,7 @@
"@types/color": "3.0.6",
"@types/columnify": "^1.5.4",
"@types/fs-extra": "11.0.4",
- "@types/lodash": "^4.14.202",
+ "@types/lodash": "^4.17.0",
"@types/mou... | [
"package.json",
"yarn.lock"
] | [] | true | ||
vercel/hyper | 7,851 | issue_to_patch | Bump electron-mksnapshot from 29.0.1 to 29.1.4 | Bumps [electron-mksnapshot](https://github.com/electron/mksnapshot) from 29.0.1 to 29.1.4.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/electron/mksnapshot/compare/v29.0.1...v29.1.4">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://... | 56617230191b24e63744753d0e2427fb4f724a9c | db12ded13536e0bca27ad73695f7851f4fd556d7 | diff --git a/package.json b/package.json
index 9343baaa47b3..05bf62890271 100644
--- a/package.json
+++ b/package.json
@@ -109,7 +109,7 @@
"electron": "22.3.25",
"electron-builder": "^24.12.0",
"electron-link": "^0.6.0",
- "electron-mksnapshot": "29.0.1",
+ "electron-mksnapshot": "29.1.4",
"el... | [
"package.json",
"yarn.lock"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.