fix(changelog): restore ellipsis-as-placeholder in code literals#173
Merged
saurabhjain1592 merged 1 commit intomainfrom May 9, 2026
Merged
Conversation
Followup to #172 (merged 2026-05-09 13:26Z). The CHANGELOG hygiene scrub stripped Java/Javadoc-style ellipsis-placeholder syntax `...` to a single `.` inside code literals, breaking 4 customer-facing migration / API examples: * L41 — `(mode, configOverride, hasCredentials, ...)` * L44 — `sendPing(String mode, String sdkEndpoint, boolean debug, ...)` * L290 — `AxonFlowException(..., 409, "VERSION_CONFLICT")` * L847 — `config.put("allowed_providers", List.of(...))` Each restored to the pre-#172 form (verified against `git show d004d5f~1:CHANGELOG.md`). Date bump (2026-05-08 → 2026-05-09) and internal-ref scrubs from #172 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 #172. The hygiene scrub stripped Javadoc-style ellipsis-placeholder syntax
...to a single.inside code literals, breaking 4 method-signature examples in the migration guide:All other #172 changes (date bump 2026-05-08 → 2026-05-09, internal ADR/issue/PR-ref scrubs) are preserved.
Verification: restored values match `git show d004d5f~1:CHANGELOG.md` byte-for-byte. No code changes; CHANGELOG.md only.