chore(PROJECT): lowercase repo/path to match go.mod - #54
Merged
Conversation
Follow-up to the go.mod module path fix - PROJECT still referenced the uppercase github.com/BlanketOps/environments-api in repo: and every resource's path:, which no longer matched the module declared in go.mod. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.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.
What
Lowercases
repo:and every resourcepath:inPROJECTtogithub.com/blanketops/environments-api, matching the module path fixed in #53.Why
PROJECTstill referenced the uppercasegithub.com/BlanketOps/environments-api, which now mismatches the lowercase module path ingo.mod.Domain
environmentseventssourcesnetworkscommonAPI impact
v1alpha1— free to changev1beta1— backwards-compatible only, deprecations allowedv1— breaking change (requires version bump + changelog entry + migration note)Checklist
mage verifypasses locally (go build ./...confirmed)buf breakingreviewed (failures justified above if pre-v1) — N/A, this repo has no protobuf/bufpanic()calls in resolution or domain layersgen/go/blanketops/...for contract types — N/A, this repo uses Go-native kubebuilder types, not generated protobufenvironments.blanketops.dev/*) — N/A, no controller/reconciliation code herecore.SetConditionat each domain pipeline stage — N/A, no controller code in this repocore.EventRecorderfor terminal outcomes — N/A, no controller code in this repoNotes for reviewer
Metadata-only fix, no generated code changed (
path:still points at the same directories, just corrected casing).