-
Notifications
You must be signed in to change notification settings - Fork 992
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
moving code from cli to conan_api #17575
base: develop2
Are you sure you want to change the base?
Conversation
******************************************************************* | ||
private '{}' | ||
detected in user code (custom commands, extensions, recipes, etc). | ||
Stop using it, use only public documented APIs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to warn/scare users saying that we will break this usage in the future?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean it is not scary enough? 😅
I can explicit that it will break, sure.
_msg = """ | ||
******************************************************************* | ||
private '{}' | ||
detected in user code (custom commands, extensions, recipes, etc). | ||
Stop using it, use only public documented APIs. | ||
******************************************************************* | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor thing but I think we may add a please there (and for all the others)
_msg = """ | |
******************************************************************* | |
private '{}' | |
detected in user code (custom commands, extensions, recipes, etc). | |
Stop using it, use only public documented APIs. | |
******************************************************************* | |
""" | |
_msg = """ | |
******************************************************************* | |
Private '{}' detected in user code (custom commands, extensions, recipes, etc). | |
Please stop using it and use only public, documented APIs. | |
******************************************************************* | |
""" |
Changelog: Omit
Docs: Omit
Refactor, moving code from
cli
that were accessingfrom conans
orfrom conan.internal
to using public API.