Skip to content

fix(changelog): restore ellipsis-as-placeholder in code literals#173

Merged
saurabhjain1592 merged 1 commit intomainfrom
fix/changelog-restore-ellipsis-literals
May 9, 2026
Merged

fix(changelog): restore ellipsis-as-placeholder in code literals#173
saurabhjain1592 merged 1 commit intomainfrom
fix/changelog-restore-ellipsis-literals

Conversation

@saurabhjain1592
Copy link
Copy Markdown
Member

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:

Line Before scrub After scrub Restored to
41 `(mode, configOverride, hasCredentials, ...)` `(mode, configOverride, hasCredentials,.)` `(mode, configOverride, hasCredentials, ...)`
44 `sendPing(String mode, String sdkEndpoint, boolean debug, ...)` `sendPing(String mode, String sdkEndpoint, boolean debug,.)` `sendPing(String mode, String sdkEndpoint, boolean debug, ...)`
290 `AxonFlowException(..., 409, "VERSION_CONFLICT")` `AxonFlowException(., 409, "VERSION_CONFLICT")` `AxonFlowException(..., 409, "VERSION_CONFLICT")`
847 `config.put("allowed_providers", List.of(...))` `config.put("allowed_providers", List.of(.))` `config.put("allowed_providers", List.of(...))`

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.

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>
@saurabhjain1592 saurabhjain1592 merged commit 24dada8 into main May 9, 2026
20 checks passed
@saurabhjain1592 saurabhjain1592 deleted the fix/changelog-restore-ellipsis-literals branch May 9, 2026 14:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant