0
0
Fork 0

fix: drop dead sp21-plus-migration-notes branch refs from generated md + smoke-test doc

Branch was deleted after main caught up. server.ts auto-generates
library.md and pou-dump.md headers in user projects, so the broken
URL was leaking into every consumer of those tools. Now points at
the repo root (main is the only branch).
This commit is contained in:
Karstein Phobic Nyvold Kvistad 2026-04-26 22:56:43 +02:00
parent ca3062a2d8
commit 2c7eeccb94
2 changed files with 6 additions and 7 deletions

View file

@ -1,8 +1,7 @@
# Smoke test -- 2026-04-25 (post device-side fix + late-day extensions)
End-to-end test of every MCP tool exposed by `codesys-mcp-persistent`
on the [`sp21-plus-migration-notes`](https://github.com/phobicdotno/Codesys-MCP/tree/sp21-plus-migration-notes)
branch as of end-of-day 2026-04-25. Covers the watcher rewrite that
End-to-end test of every MCP tool exposed by [`phobicdotno/Codesys-MCP-SP21-plus`](https://github.com/phobicdotno/Codesys-MCP-SP21-plus)
as of end-of-day 2026-04-25 (then on the now-deleted `sp21-plus-migration-notes` working branch; the same commits are reachable from `main`). Covers the watcher rewrite that
unblocked SP21+/SP22, the device-side login + write API fixes, and
the late-afternoon additions: six new `git_*` tools, `mirror_export`,
launcher refuse-on-duplicate guard, and the `list_project_libraries`
@ -10,7 +9,7 @@ rewrite.
## Environment
- MCP server source: this fork @ `sp21-plus-migration-notes` HEAD
- MCP server source: this fork @ HEAD on 2026-04-25
(commits `93a105a`..`0a4c1a0` -- inclusive of the late-afternoon
additions: `e236a0c` git tools, `3623c45` license-gate rewrite,
`95a884b` launcher refuse-on-duplicate, `9b766c8` list_project_libraries
@ -176,4 +175,4 @@ the `(* Project path: ... *)` header convention.
---
*Smoke test executed against this fork @ `sp21-plus-migration-notes` HEAD on 2026-04-25.*
*Smoke test executed against this fork @ HEAD on 2026-04-25.*

View file

@ -261,7 +261,7 @@ function renderLibraryMd(libs: LibrariesData, runtimeAnchorVersion?: string): st
const L: string[] = [];
L.push('# Library inventory -- ' + (libs.project ?? '?'));
L.push('');
L.push('Auto-generated by `list_project_libraries` from the [`phobicdotno/Codesys-MCP @ sp21-plus-migration-notes`](https://github.com/phobicdotno/Codesys-MCP/tree/sp21-plus-migration-notes) fork.');
L.push('Auto-generated by `list_project_libraries` from the [`phobicdotno/Codesys-MCP-SP21-plus`](https://github.com/phobicdotno/Codesys-MCP-SP21-plus) fork.');
L.push('');
L.push('## Versions');
L.push('');
@ -319,7 +319,7 @@ function renderPouDumpMd(pou: PouEntry[], projectName: string): string {
const L: string[] = [];
L.push(`# POU dump -- ${projectName}`);
L.push('');
L.push(`Generated ${today} from the live CODESYS instance via the [\`phobicdotno/Codesys-MCP @ sp21-plus-migration-notes\`](https://github.com/phobicdotno/Codesys-MCP/tree/sp21-plus-migration-notes) fork.`);
L.push(`Generated ${today} from the live CODESYS instance via the [\`phobicdotno/Codesys-MCP-SP21-plus\`](https://github.com/phobicdotno/Codesys-MCP-SP21-plus) fork.`);
L.push('');
L.push(`**Total:** ${pou.length} objects with textual code.`);
L.push('');