docs: document 5.0.1 changes and refresh stale references#352
Open
pjdoland wants to merge 1 commit into
Open
Conversation
Add a [5.0.1] CHANGELOG section covering the changes merged since the 5.0.0 release, and update the footer compare links. Fix one stale dependency reference in CONTRIBUTING. CHANGELOG [5.0.1]: - Changed: GitHub Copilot Codex chat models route through the /responses endpoint (plmbr#341); npm package scope renamed to @plmbr (plmbr#342). - Fixed: AI-generated chat links open in a new tab instead of replacing the Lab UI (plmbr#347). CONTRIBUTING: mcp_manager.py is described as using the official `mcp` SDK rather than the removed `fastmcp` (the swap shipped in 5.0.0, plmbr#324). Intentionally left the "5.0.0 migration note" reference in README and the "As of 5.0.0 ... mcp SDK" line in the admin guide unchanged: both point at 5.0.0 as correct historical fact, and 5.0.1 adds no migration steps.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The version was bumped to 5.0.1 (commit
7d512cc) and three PRs merged since the 5.0.0 release, but the CHANGELOG still ended at[5.0.0]with an empty[Unreleased], and one CONTRIBUTING reference was left pointing at the removedfastmcpdependency. This adds the missing[5.0.1]CHANGELOG section and fixes the stale reference so the docs reflect the current state of the code.Solution
CHANGELOG.md: new[5.0.1] - 2026-05-24section between[Unreleased]and[5.0.0], plus footer compare-links ([unreleased]repointed tov5.0.1...HEAD, new[5.0.1]line). Entries:/responsesendpoint (feat(copilot): route Codex chat models through /responses endpoint #341); npm package scope renamed to@plmbr/notebook-intelligence(feat: rename npm package prefix to @plmbr #342).CONTRIBUTING.md:mcp_manager.pyis now described as using the officialmcpSDK rather thanfastmcp(the swap shipped in 5.0.0 via #324; the module importsmcp, confirmed).Deliberately left unchanged
README.md"5.0.0 migration note" link anddocs/admin-guide.md"As of 5.0.0 ...mcpSDK" line: both reference 5.0.0 as correct historical fact. 5.0.1 introduces no traitlet, env-var, REST route, or on-disk-format change and no migration steps, so pointing at the 5.0.0 note remains accurate.#343blog-URL refresh, the version-bump commit, and a lockfile lint fix are chores/docs with no user-facing surface, so they get no CHANGELOG line.Testing
prettier --check CHANGELOG.md CONTRIBUTING.md: both pass.gpt-5.3-codexis the real model id (12 occurrences in the test suite);_RESPONSES_TERMINAL_ERROR_EVENTScontains exactly the four events listed;mcp_manager.pyimportsmcp;package.jsonname is@plmbr/notebook-intelligencewhile the pip name is unchanged.gpt-5-codex→gpt-5.3-codex), completed the error-event list, and removed an em dash from the touched CONTRIBUTING line; round 2 came back clean.Risks / follow-ups