changelog - #3628
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (27)
📝 WalkthroughSummary by CodeRabbit
WalkthroughThis PR coordinates a multi-module release by bumping versions and updating changelogs across core, framework, ten plugins, and transports. It also introduces new skill documentation for a release-checklist auditing tool. All version changes follow semver patch/minor increments, with corresponding changelog entries documenting features, fixes, and dependency updates. ChangesRelease Notes and Version Bump Coordination
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested reviewers
Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
|
Merge activity
|
Confidence Score: 4/5Safe to merge — changes are documentation, version metadata, and a new read-only skill definition with no runtime impact. The only substantive observation is the format mismatch in transports/changelog.md — format differs from all other changelogs in this PR and may affect downstream tooling. Important Files Changed
Reviews (1): Last reviewed commit: "changelog" | Re-trigger Greptile |
| ## ✨ Features | ||
|
|
||
| - **Temporary Access Tokens** - Short-lived access tokens for scoped, time-limited API access (#3603) | ||
| - **MCP Per-User OAuth** - Refactored MCP OAuth into a per-user flow (#3565) | ||
| - **Bedrock Mantle Engine** - Bedrock Mantle inference engine support for `gpt-oss` models via an OpenAI-compatible SSE endpoint (#3489) |
There was a problem hiding this comment.
Changelog format diverges from all other modules
transports/changelog.md uses rich markdown with emoji section headers (## ✨ Features, ## 🐞 Fixed) and bold-titled entries, while every other changelog in this PR (core, framework, and all plugins) uses a flat - feat: / - fix: prefix list. If any tooling parses or aggregates these files — for a release page, a release-notes generator, or a diff summary — the inconsistency will produce malformed output for the transports module.

Summary
This PR cuts the
v1.5.11/v1.3.11release across core, framework, and all plugins, and introduces a new Claude skill (release-checklist) for pre-release migration safety auditing.Changes
release-checklistskill — Adds.claude/skills/release-checklist/SKILL.md, a read-only pre-release audit tool that scans Go-defined database migrations changed in a release for high-scale deadlock/lock-contention risks and boot-time-blocking operations. It produces a structuredPASS/WARN/FAILreport with a concrete remediation plan per finding. The skill is designed to grow via an extensible Checks Registry.core→1.5.11,framework→1.3.11,transports→1.5.3,plugins/governance→1.5.11,plugins/logging→1.5.11,plugins/semanticcache→1.5.11,plugins/otel→1.2.11,plugins/maxim→1.6.11,plugins/prompts→1.0.11, and remaining plugins bumped accordingly.Key highlights in this release:
Type of change
Affected areas
How to test
To exercise the new
release-checklistskill, invoke it via Claude with:Expected output: a structured report with
PASS/WARN/FAILper check and a Remediation Plan table for any findings.Screenshots/Recordings
N/A
Breaking changes
Related issues
#3603, #3565, #3489, #3334, #3335, #3435, #3554, #3590, #3444, #3198, #3581, #3610, #3599, #3567, #3382, #3461 and others listed in the changelogs.
Security considerations
FullyRedacted()for proxy passwords andMarshalForStorage()forProxyConfigprevent partial secret leakage in API responses (fix: addFullyRedacted()for proxy passwords andMarshalForStorage()forProxyConfigto prevent partial value leakage in API responses #3445).release-checklistskill is strictly read-only and never modifies files.Checklist
docs/contributing/README.mdand followed the guidelines