fix(changelog): restore ellipsis-as-placeholder in code literals#192
Merged
saurabhjain1592 merged 1 commit intomainfrom May 9, 2026
Merged
Conversation
Followup to #191 (merged 2026-05-09 13:26Z). The CHANGELOG hygiene scrub stripped Python ellipsis-placeholder syntax `...` to a single `.` inside code literals, which broke 5 lines of customer-facing migration / API guidance: * L31-33 — `AxonFlow(...)`, `AxonFlow(..., telemetry=True)`, `AxonFlow(..., telemetry=False)` * L41 — `AxonFlowConfig(..., telemetry=...)` * L112 — `validation_alias=AliasChoices(...)` * L311 — `client.step_gate(..., include_prior_output=False)` * L468 — `ToolNode(awrap_tool_call=...)` Each restored to the pre-#191 form (verified against `git show 4091343~1:CHANGELOG.md`). Date bump (2026-05-08 → 2026-05-09) and internal-ref scrubs from #191 are preserved. No code changes. Signed-off-by: Saurabh Jain <saurabhjain1592@gmail.com>
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.
Followup to #191. The hygiene scrub stripped Python ellipsis-placeholder syntax
...down to a single.inside code literals, which made 5 customer-facing migration / API examples unreadable:All other #191 changes (date bump 2026-05-08 → 2026-05-09, internal ADR/issue/PR-ref scrubs) are preserved.
Verification: restored values match `git show 4091343~1:CHANGELOG.md` byte-for-byte. No code changes; CHANGELOG.md only.