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
6 changes: 6 additions & 0 deletions .github/workflows/publish-mcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ jobs:

mcp:
needs: npm
# Decoupled from npm SUCCESS — the registry publish must proceed even when
# the npm job fails (EOTP on manual-token publishes). Ordering is kept so
# npm runs first on the happy path; the MCP Registry validates the npm
# version independently, so a manual `npm publish` satisfies it. Re-run this
# job via workflow_dispatch after a manual publish to update the registry.
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to Token Pilot will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed — dev-dependency security + decoupled registry publish (no shipped change)

- Bump `vitest` / `@vitest/coverage-v8` to 4.x — clears the 6 remaining
dev-only high advisories in the vitest/vite/esbuild chain. `npm audit` now
reports **0 vulnerabilities** (dev + prod). No runtime/package change: dev
deps are not shipped to npm consumers; the full 1402-test suite is green on
vitest 4.
- `publish-mcp.yml`: the MCP Registry job no longer hard-depends on npm-job
**success** (`if: !cancelled()`). A failed npm publish (e.g. EOTP on a
manual-token release) no longer blocks the registry update; re-run the job
via `workflow_dispatch` after a manual `npm publish`.

## [0.46.0] - 2026-06-13

### Added — UserPromptSubmit per-turn reinforcement (caveman-style awareness)
Expand Down
Loading