Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.6.1"
".": "1.6.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.6.2](https://github.com/chrischall/fetchproxy/compare/v1.6.1...v1.6.2) (2026-07-27)


### Bug Fixes

* **cli:** validate profile array elements and name --storage-domain ([#173](https://github.com/chrischall/fetchproxy/issues/173)) ([871d87c](https://github.com/chrischall/fetchproxy/commit/871d87c248b3ac42b612a67c60b205cb86cce526))

## [1.6.1](https://github.com/chrischall/fetchproxy/compare/v1.6.0...v1.6.1) (2026-07-19)


Expand Down
40 changes: 20 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fetchproxy",
"version": "1.6.1",
"version": "1.6.2",
"private": true,
"type": "module",
"workspaces": [
Expand Down
6 changes: 3 additions & 3 deletions packages/bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchproxy/bootstrap",
"version": "1.6.1",
"version": "1.6.2",
"description": "One-shot session-bootstrap helper for MCPs using fetchproxy: declare your scope, read it once, then operate from Node.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -27,7 +27,7 @@
},
"license": "MIT",
"dependencies": {
"@fetchproxy/protocol": "^1.6.1",
"@fetchproxy/server": "^1.6.1"
"@fetchproxy/protocol": "^1.6.2",
"@fetchproxy/server": "^1.6.2"
}
}
10 changes: 5 additions & 5 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchproxy/cli",
"version": "1.6.1",
"version": "1.6.2",
"description": "One-shot CLI for the fetchproxy bridge: authenticated fetches and session reads through the user's signed-in browser tab, scoped by per-service profiles.",
"type": "module",
"bin": {
Expand Down Expand Up @@ -30,11 +30,11 @@
},
"license": "MIT",
"dependencies": {
"@fetchproxy/bootstrap": "^1.6.1",
"@fetchproxy/protocol": "^1.6.1",
"@fetchproxy/server": "^1.6.1"
"@fetchproxy/bootstrap": "^1.6.2",
"@fetchproxy/protocol": "^1.6.2",
"@fetchproxy/server": "^1.6.2"
},
"devDependencies": {
"@fetchproxy/test-helpers": "^1.6.1"
"@fetchproxy/test-helpers": "^1.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/cli/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Managed by release-please (generic updater) — do not hand-edit.
export const VERSION = '1.6.1'; // x-release-please-version
export const VERSION = '1.6.2'; // x-release-please-version
2 changes: 1 addition & 1 deletion packages/extension-chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Transporter",
"version": "1.6.1",
"version": "1.6.2",
"description": "Bridge local MCP servers to your signed-in browser tabs — let agentic tools hit authenticated APIs without copying credentials.",
"icons": {
"16": "icons/16.png",
Expand Down
6 changes: 3 additions & 3 deletions packages/extension-chrome/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@fetchproxy/extension-chrome",
"version": "1.6.1",
"version": "1.6.2",
"private": true,
"type": "module",
"scripts": {
"build": "tsx build.ts"
},
"dependencies": {
"@fetchproxy/extension-core": "^1.6.1",
"@fetchproxy/protocol": "^1.6.1"
"@fetchproxy/extension-core": "^1.6.2",
"@fetchproxy/protocol": "^1.6.2"
},
"devDependencies": {
"esbuild": "^0.28.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/extension-core/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@fetchproxy/extension-core",
"version": "1.6.1",
"version": "1.6.2",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -b"
},
"dependencies": {
"@fetchproxy/protocol": "^1.6.1"
"@fetchproxy/protocol": "^1.6.2"
},
"devDependencies": {
"@types/chrome": "^0.2.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchproxy/protocol",
"version": "1.6.1",
"version": "1.6.2",
"description": "WebSocket frame types + runtime validators for fetchproxy.",
"type": "module",
"main": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchproxy/server",
"version": "1.6.1",
"version": "1.6.2",
"description": "Localhost WebSocket bridge an MCP server uses to relay fetches through the user's signed-in browser via the fetchproxy extension.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -27,7 +27,7 @@
},
"license": "MIT",
"dependencies": {
"@fetchproxy/protocol": "^1.6.1",
"@fetchproxy/protocol": "^1.6.2",
"ws": "^8.21.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/test-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fetchproxy/test-helpers",
"version": "1.6.1",
"version": "1.6.2",
"description": "Vitest mock helpers for @fetchproxy/server — drop-in FetchproxyServer mock that captures constructor opts and exposes spy-able request/fetch/captureRequestHeader/bridgeHealth methods.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -27,7 +27,7 @@
},
"license": "MIT",
"peerDependencies": {
"@fetchproxy/server": "^1.6.1",
"@fetchproxy/server": "^1.6.2",
"vitest": ">=1.0.0"
}
}