CHORE: GoReleaser align changelog regex with actual provider constants#4072
Merged
tlimoncelli merged 2 commits intoStackExchange:mainfrom Feb 10, 2026
Merged
Conversation
tlimoncelli
reviewed
Feb 10, 2026
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 GoReleaser changelog regex for the "Provider-specific changes" section used provider names that didn't always match the actual
providerNameconstants defined in the provider Go code. This caused some provider-specific commits to be miscategorized under "Other changes and improvements" instead.Real-world example from v4.34.0:
The commit
47866f9: BUNNY_DNS: Add support for PullZone (PZ) record type (#4053)ended up under "Other changes and improvements" instead of "Provider-specific changes", because the regex containedbunnydns(no underscore) while the commit prefix uses the provider constantBUNNY_DNS(with underscore).Changes
All regex entries are now aligned with the actual
providerNameconstants from each provider's Go source:akamaiedgeakamaiedgednsdnssuffixaxfrdaxfrddnsdnssuffixazureazure_dnsdnssuffixbunnydnsbunny_dnscloudflarecloudflareapiapisuffixcloudflareapi_olddohdnsoverhttpsgandigandi_v5v5suffixhetznerv2hetzner_v2All 61 provider names now exactly match their
providerNameconstant (case-insensitive).