From 39cd4740b67259c60c2a69849890f38d013e0e21 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 03:23:11 +0000 Subject: [PATCH] chore(release): version packages --- .changeset/dashboard-docs-links.md | 12 ------------ bun.lock | 8 ++++---- packages/browserhive/CHANGELOG.md | 13 +++++++++++++ packages/browserhive/package.json | 2 +- packages/contracts/CHANGELOG.md | 4 ++++ packages/contracts/generated/openapi.json | 2 +- packages/contracts/package.json | 2 +- packages/core/CHANGELOG.md | 7 +++++++ packages/core/package.json | 2 +- packages/core/src/version.ts | 2 +- packages/dashboard/CHANGELOG.md | 7 +++++++ packages/dashboard/package.json | 2 +- 12 files changed, 41 insertions(+), 22 deletions(-) delete mode 100644 .changeset/dashboard-docs-links.md diff --git a/.changeset/dashboard-docs-links.md b/.changeset/dashboard-docs-links.md deleted file mode 100644 index 886a71c..0000000 --- a/.changeset/dashboard-docs-links.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"browserhive": patch ---- - -Dashboard: links to the documentation on browserhive.ai, the website and GitHub. - -- A Help menu in the top bar opens the guide for the current page, the dashboard guide, MCP client setup, troubleshooting, release notes and issue reporting. -- The sidebar footer links to Docs, GitHub and the website, and the version links to its release notes. -- The command palette can open the docs, the tool reference, the website and GitHub. -- Info popovers are fixed: inline code and bold text no longer break onto their own lines. They now have paragraph spacing and a "Read the docs" link. -- New explainers were added across Overview, Websites, Vault, Vault log, System (tokens, configuration, storage, migrations, degradations) and session details. -- System setting hints now use the real camelCase flags (`--maxSessions`, `--allowEvaluate`, `--retentionDays`) and link to each key in the configuration reference. diff --git a/bun.lock b/bun.lock index fbea521..6d61e6d 100644 --- a/bun.lock +++ b/bun.lock @@ -21,7 +21,7 @@ }, "packages/browserhive": { "name": "browserhive", - "version": "0.1.2", + "version": "0.1.3", "bin": { "browserhive": "./dist/bin.js", }, @@ -64,14 +64,14 @@ }, "packages/contracts": { "name": "@browserhive/contracts", - "version": "0.1.2", + "version": "0.1.3", "dependencies": { "zod": "4.6.5", }, }, "packages/core": { "name": "@browserhive/core", - "version": "0.1.2", + "version": "0.1.3", "dependencies": { "@browserhive/contracts": "workspace:*", "@hono/zod-openapi": "1.6.3", @@ -109,7 +109,7 @@ }, "packages/dashboard": { "name": "@browserhive/dashboard", - "version": "0.1.2", + "version": "0.1.3", "dependencies": { "@base-ui/react": "^1.8.0", "@browserhive/contracts": "workspace:*", diff --git a/packages/browserhive/CHANGELOG.md b/packages/browserhive/CHANGELOG.md index ed5346c..c73586a 100644 --- a/packages/browserhive/CHANGELOG.md +++ b/packages/browserhive/CHANGELOG.md @@ -1,5 +1,18 @@ # browserhive +## 0.1.3 + +### Patch Changes + +- [#13](https://github.com/arg1998/BrowserHive/pull/13) [`3752bc9`](https://github.com/arg1998/BrowserHive/commit/3752bc9ea714c5c87baaf4f84e683d5d18bb90b3) Thanks [@arg1998](https://github.com/arg1998)! - Dashboard: links to the documentation on browserhive.ai, the website and GitHub. + + - A Help menu in the top bar opens the guide for the current page, the dashboard guide, MCP client setup, troubleshooting, release notes and issue reporting. + - The sidebar footer links to Docs, GitHub and the website, and the version links to its release notes. + - The command palette can open the docs, the tool reference, the website and GitHub. + - Info popovers are fixed: inline code and bold text no longer break onto their own lines. They now have paragraph spacing and a "Read the docs" link. + - New explainers were added across Overview, Websites, Vault, Vault log, System (tokens, configuration, storage, migrations, degradations) and session details. + - System setting hints now use the real camelCase flags (`--maxSessions`, `--allowEvaluate`, `--retentionDays`) and link to each key in the configuration reference. + ## 0.1.2 ### Patch Changes diff --git a/packages/browserhive/package.json b/packages/browserhive/package.json index 05d5036..e91a6cd 100644 --- a/packages/browserhive/package.json +++ b/packages/browserhive/package.json @@ -1,6 +1,6 @@ { "name": "browserhive", - "version": "0.1.2", + "version": "0.1.3", "description": "Local-first stealth browser MCP server: isolated Chromium sessions for LLM agents, vault-backed logins, human takeover, audit trail and an operator dashboard.", "type": "module", "license": "MIT", diff --git a/packages/contracts/CHANGELOG.md b/packages/contracts/CHANGELOG.md index 21ec922..c78911f 100644 --- a/packages/contracts/CHANGELOG.md +++ b/packages/contracts/CHANGELOG.md @@ -1,5 +1,9 @@ # @browserhive/contracts +## 0.1.3 + +No changes in this release. + ## 0.1.2 No changes in this release. diff --git a/packages/contracts/generated/openapi.json b/packages/contracts/generated/openapi.json index eed8ffd..cfbf80f 100644 --- a/packages/contracts/generated/openapi.json +++ b/packages/contracts/generated/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.1.0", "info": { "title": "BrowserHive admin API", - "version": "0.1.2", + "version": "0.1.3", "description": "Admin REST API (`/api/v1`). Errors are RFC 9457 problem+json." }, "servers": [ diff --git a/packages/contracts/package.json b/packages/contracts/package.json index 39102a0..f86f441 100644 --- a/packages/contracts/package.json +++ b/packages/contracts/package.json @@ -1,6 +1,6 @@ { "name": "@browserhive/contracts", - "version": "0.1.2", + "version": "0.1.3", "private": true, "description": "BrowserHive wire contracts: config schema, error registry, enums, tool schemas, REST DTOs, WS protocol. Platform-neutral.", "type": "module", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index a9ac1bf..6e826ea 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,12 @@ # @browserhive/core +## 0.1.3 + +### Patch Changes + +- Updated dependencies []: + - @browserhive/contracts@0.1.3 + ## 0.1.2 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 959f9f3..de9c3cd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@browserhive/core", - "version": "0.1.2", + "version": "0.1.3", "private": true, "description": "BrowserHive core: domain, infrastructure, application services, MCP/HTTP/WS interfaces.", "type": "module", diff --git a/packages/core/src/version.ts b/packages/core/src/version.ts index 1d81ee7..55a4c55 100644 --- a/packages/core/src/version.ts +++ b/packages/core/src/version.ts @@ -1,2 +1,2 @@ /** @module core/version — generated by scripts/sync-version.ts; do not edit */ -export const VERSION = '0.1.2' as const; +export const VERSION = '0.1.3' as const; diff --git a/packages/dashboard/CHANGELOG.md b/packages/dashboard/CHANGELOG.md index 83022e9..3d39a01 100644 --- a/packages/dashboard/CHANGELOG.md +++ b/packages/dashboard/CHANGELOG.md @@ -1,5 +1,12 @@ # @browserhive/dashboard +## 0.1.3 + +### Patch Changes + +- Updated dependencies []: + - @browserhive/contracts@0.1.3 + ## 0.1.2 ### Patch Changes diff --git a/packages/dashboard/package.json b/packages/dashboard/package.json index 37b875d..0332ee1 100644 --- a/packages/dashboard/package.json +++ b/packages/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@browserhive/dashboard", - "version": "0.1.2", + "version": "0.1.3", "private": true, "description": "BrowserHive operator dashboard (React SPA).", "type": "module",