Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⚠️ 🐛 (API) convert CLI methods to use pointer receivers #4675

Conversation

kersten
Copy link
Contributor

@kersten kersten commented Mar 26, 2025

Updated all CLI method receivers to use pointer semantics (*CLI) instead of value (CLI), ensuring consistent behavior across command setup functions and reducing potential for unintentional value copying.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Mar 26, 2025
@k8s-ci-robot k8s-ci-robot added needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files. labels Mar 26, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @kersten. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@kersten kersten changed the title refactor: convert CLI methods to use pointer receivers 🌱 (chore): convert CLI methods to use pointer receivers Mar 26, 2025
Copy link
Member

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Mar 26, 2025
@kersten kersten force-pushed the refactor/make-cli-methods-pointer-receivers branch from eed18be to 4c42d70 Compare March 26, 2025 17:13
@camilamacedo86 camilamacedo86 changed the title 🌱 (chore): convert CLI methods to use pointer receivers 🐛 (CLI) convert CLI methods to use pointer receivers Mar 27, 2025
@camilamacedo86 camilamacedo86 changed the title 🐛 (CLI) convert CLI methods to use pointer receivers 🐛 (API) convert CLI methods to use pointer receivers Mar 27, 2025
Copy link
Member

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approved
/ok-to-test

@k8s-ci-robot k8s-ci-robot added lgtm "Looks good to me", indicates that a PR is ready to be merged. approved Indicates a PR has been approved by an approver from all required OWNERS files. labels Mar 27, 2025
@camilamacedo86 camilamacedo86 changed the title 🐛 (API) convert CLI methods to use pointer receivers ⚠️ 🐛 (API) convert CLI methods to use pointer receivers Mar 27, 2025
pkg/cli/cli.go Outdated
return c.cmd.Execute()
}

// Command returns the underlying root command.
func (c CLI) Command() *cobra.Command {
func (c *CLI) Command() *cobra.Command {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @kersten

I think I would be possible to have a function as before without the receiver deprecated so that we do not break the API? And in the comment we suggested use instead (c *CLI) Command()

/hold

Lets see if we can move with this change without break the API

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WDYT about this approach?

// Command returns the underlying root command.
//
// Deprecated: Use (c *CLI).CommandPtr() instead.
func (c CLI) Command() *cobra.Command {
	return (&c).CommandPtr()
}

// CommandPtr returns the underlying root command.
func (c *CLI) CommandPtr() *cobra.Command {
	return c.cmd
}

This keeps the existing Command() method for compatibility and introduces the pointer-based version under a new name. In a future major release, we could switch Command() to use the pointer receiver and deprecate CommandPtr() to clean things up.

Let me know what you think!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The issue with this one is that it would break the API.

Deprecating it isn’t a great option either, since we’d be left with an awkward name (CommandPtr) that we’d have to support indefinitely. It feels like an odd choice, so I’m considering how much value this actually brings compared to the potential costs and impact—especially for end users who rely on Kubebuilder as a library.

I’ll need some time to properly review and evaluate this case before deciding how to proceed.

@k8s-ci-robot k8s-ci-robot added do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. and removed lgtm "Looks good to me", indicates that a PR is ready to be merged. labels Mar 28, 2025
@k8s-ci-robot
Copy link
Contributor

New changes are detected. LGTM label has been removed.

@kersten kersten force-pushed the refactor/make-cli-methods-pointer-receivers branch 2 times, most recently from 52147f0 to 8c10f31 Compare April 1, 2025 15:13
Updated all CLI method receivers to use pointer semantics (*CLI)
instead of value (CLI), ensuring consistent behavior across command
setup functions and reducing potential for unintentional value copying.
@kersten kersten force-pushed the refactor/make-cli-methods-pointer-receivers branch from 8c10f31 to 1d98c75 Compare April 2, 2025 14:22
@k8s-ci-robot k8s-ci-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Apr 3, 2025
@k8s-ci-robot
Copy link
Contributor

PR needs rebase.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Copy link
Member

@camilamacedo86 camilamacedo86 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @kersten,

Thanks again for the contribution and for exploring alternatives! 🎉

After further review, we've decided to defer this change to v5, where breaking changes can be handled more cleanly. While the workaround avoids immediate breakage, it introduces naming and maintenance concerns that we’d prefer to address in a major release. See: #4762

I hope that you do not mind:

Closing this for now as deferred — really appreciate your efforts and understanding!

Best,

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: kersten
Once this PR has been reviewed and has the lgtm label, please ask for approval from camilamacedo86. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot removed the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Apr 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants