Skip to content
Open
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
7 changes: 0 additions & 7 deletions .changeset/fix-par-inline-params.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/standalone-debugger.md

This file was deleted.

2 changes: 2 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/docs-site

## 1.2.0

## 1.1.1

## 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/docs-site",
"version": "1.1.1",
"version": "1.2.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions packages/changeset-sync-manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/changeset-sync-manifest

## 1.2.0

## 1.1.1

## 1.1.0
2 changes: 1 addition & 1 deletion packages/changeset-sync-manifest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/changeset-sync-manifest",
"version": "1.1.1",
"version": "1.2.0",
"description": "Sync package.json version into manifest.json after changeset version",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/dead-export-finder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/dead-export-finder

## 1.2.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/dead-export-finder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/dead-export-finder",
"version": "1.1.1",
"version": "1.2.0",
"type": "module",
"private": false,
"description": "Find dead exports across monorepo package boundaries",
Expand Down
18 changes: 18 additions & 0 deletions packages/devtools-bridge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @wolfcola/devtools-bridge

## 1.2.0

### Minor Changes

- [#57](https://github.com/ryanbas21/devtools/pull/57) [`4b2b276`](https://github.com/ryanbas21/devtools/commit/4b2b27643c4533e79732c9cc69ca25c9ff581efd) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Add standalone Electron debugger with MCP integration

New `attachDebugger()` API in devtools-bridge connects apps to the standalone
debugger via WebSocket. Includes auto-launch, fetch/XHR/Node HTTP interceptors,
and reconnection with session management. The standalone app runs as an Electron
desktop app or headless MCP server (`--mcp` flag) with 10 tools for session
inspection, event querying, diagnosis, and export.

### Patch Changes

- Updated dependencies [[`bc42519`](https://github.com/ryanbas21/devtools/commit/bc42519de6075ec9f60d1b3091ef0603b9ead74a), [`4b2b276`](https://github.com/ryanbas21/devtools/commit/4b2b27643c4533e79732c9cc69ca25c9ff581efd)]:
- @wolfcola/devtools-core@1.2.0
- @wolfcola/devtools-types@1.2.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-bridge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-bridge",
"version": "1.1.1",
"version": "1.2.0",
"description": "Opt-in SDK adapter that emits AuthEvents to the WolfCola DevTools extension",
"license": "MIT",
"repository": {
Expand Down
21 changes: 21 additions & 0 deletions packages/devtools-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @wolfcola/devtools-core

## 1.2.0

### Minor Changes

- [#57](https://github.com/ryanbas21/devtools/pull/57) [`4b2b276`](https://github.com/ryanbas21/devtools/commit/4b2b27643c4533e79732c9cc69ca25c9ff581efd) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Add standalone Electron debugger with MCP integration

New `attachDebugger()` API in devtools-bridge connects apps to the standalone
debugger via WebSocket. Includes auto-launch, fetch/XHR/Node HTTP interceptors,
and reconnection with session management. The standalone app runs as an Electron
desktop app or headless MCP server (`--mcp` flag) with 10 tools for session
inspection, event querying, diagnosis, and export.

### Patch Changes

- [#61](https://github.com/ryanbas21/devtools/pull/61) [`bc42519`](https://github.com/ryanbas21/devtools/commit/bc42519de6075ec9f60d1b3091ef0603b9ead74a) Thanks [@ryanbas21](https://github.com/ryanbas21)! - Fix PAR inline-params rule falsely flagging client_id alongside request_uri

The `par:inline-params-with-request-uri` diagnosis rule incorrectly treated `client_id` as a prohibited inline parameter. Per RFC 9126, `client_id` is required alongside `request_uri` in the authorization request after a PAR. Only truly prohibited params (`redirect_uri`, `scope`, etc.) now trigger the warning.

- Updated dependencies []:
- @wolfcola/devtools-types@1.2.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-core",
"version": "1.1.1",
"version": "1.2.0",
"private": true,
"description": "Shared logic for WolfCola DevTools — annotators, diagnosis, event store",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions packages/devtools-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @wolfcola/devtools-extension

## 1.2.0

### Patch Changes

- Updated dependencies [[`bc42519`](https://github.com/ryanbas21/devtools/commit/bc42519de6075ec9f60d1b3091ef0603b9ead74a), [`4b2b276`](https://github.com/ryanbas21/devtools/commit/4b2b27643c4533e79732c9cc69ca25c9ff581efd)]:
- @wolfcola/devtools-core@1.2.0
- @wolfcola/devtools-types@1.2.0

## 1.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "OIDC Devtool",
"version": "1.1.1",
"version": "1.2.0",
"description": "Debug OIDC/OAuth2 auth flows — works standalone or with the Ping SDK",
"permissions": [
"storage",
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-extension",
"version": "1.1.1",
"version": "1.2.0",
"private": true,
"description": "WolfCola DevTools Chrome Extension",
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/devtools-standalone/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @wolfcola/devtools-standalone

## 1.2.0

### Patch Changes

- Updated dependencies [[`bc42519`](https://github.com/ryanbas21/devtools/commit/bc42519de6075ec9f60d1b3091ef0603b9ead74a), [`4b2b276`](https://github.com/ryanbas21/devtools/commit/4b2b27643c4533e79732c9cc69ca25c9ff581efd)]:
- @wolfcola/devtools-core@1.2.0
- @wolfcola/devtools-types@1.2.0
2 changes: 1 addition & 1 deletion packages/devtools-standalone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-standalone",
"version": "0.0.1",
"version": "1.2.0",
"private": true,
"description": "Standalone Electron OIDC/OAuth2 debugger",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/devtools-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/devtools-types

## 1.2.0

## 1.1.1

## 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/devtools-types",
"version": "1.1.1",
"version": "1.2.0",
"description": "Shared AuthEvent schema and types for WolfCola DevTools",
"license": "MIT",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-plugin-treeshake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/eslint-plugin-treeshake

## 1.2.0

## 1.1.1

## 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-treeshake/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/eslint-plugin-treeshake",
"version": "1.1.1",
"version": "1.2.0",
"description": "ESLint plugin that flags code patterns known to break tree-shaking",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 2 additions & 0 deletions packages/treeshake-check/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @wolfcola/treeshake-check

## 1.2.0

## 1.1.1

## 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion packages/treeshake-check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolfcola/treeshake-check",
"version": "1.1.1",
"version": "1.2.0",
"description": "Check whether a package can be fully tree-shaken by Rollup",
"license": "MIT",
"type": "module",
Expand Down