docs: drop cloudflare-go version pin from doc comments and roadmap#143
Merged
Conversation
Four wrapper-client docstrings under internal/cloudflare/ said "cloudflare-go v6 SDK" by version number, and docs/roadmap.md hard-coded the /v6 module path plus two "as of v6" statements about API surface availability. After the v7 migration these are stale, and swapping them to "v7" would just go stale again at v8. Make them version-agnostic instead — the wrappers wrap "the cloudflare-go SDK" regardless of major; the roadmap discusses cloudflare-go's typed-client surface in general, not a specific release. No code changes; doc text only. Surfaced by the post-merge review of the v6→v7 migration as out-of-scope cleanup. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
|
🎉 This PR is included in version 0.19.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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
Follow-up cleanup to #142. Four wrapper-client docstrings under
internal/cloudflare/still saidcloudflare-go v6 SDKby version number, anddocs/roadmap.mdhard-coded/v6in the module path plus two "as of v6" statements about API surface availability. After the v6→v7 migration in #142, those references are stale; swapping tov7would just go stale again at v8.Making them version-agnostic instead — the wrappers wrap "the cloudflare-go SDK" regardless of major; the roadmap discusses cloudflare-go's typed-client surface in general, not a specific release.
Files
internal/cloudflare/dns.go:36— docstringinternal/cloudflare/ruleset.go:26— docstringinternal/cloudflare/zone.go:18— docstringinternal/cloudflare/zoneconfig.go:31— docstringdocs/roadmap.md— 3 lines (module path mention + 2 "as of v6" statements)7 insertions / 7 deletions. No code changes.
Test plan
go build ./...cleango vet ./...clean🤖 Generated with Claude Code