-
-
Notifications
You must be signed in to change notification settings - Fork 402
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
bot: properly deprecate search_url_callbacks()
method
#2581
Conversation
That decorator is the only thing wot *might* actually get people to notice that they're still using a deprecated feature...
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.
I mean... this can go in 8.0.0 if you accept to merge it the same day as another PR.
Edit: but 8.0.1 is fine too!
I might have figured out why #2121 didn't do this: Lines 503 to 507 in 120477f
What do y'all think of adding this The best alternative I could imagine is making the public |
I think it's okay to formally deprecate it in 8.0.0 and defer the warning. It should obviously be mentioned in the change notes, but deferring the warning to 8.1.0 because we're using it internally makes sense to me. There should be an issue tracking the internal change to |
Closed the loop on this being "forgotten" in #2121 (it wasn't) when I noticed #2156 in the changelog draft @SnoopJ put together. I won't merge this until after I have a moment to create a draft PR implementing one of the solutions in #2581 (comment) for 8.1.0, so we don't forget about it and have a repeat occurrence of logspam. |
#2585 for follow-up; I chose a method that would let Will merge this soon, once other maintainers have a chance to voice objection. Edit: "Soon" = 14 Dec, 3 days later. I'm sure any objections would've come up sooner. 🙃 |
Description
That decorator is the only thing wot might actually get people to notice that they're still using a deprecated feature…
Carelessly left out of #2121, somehow.Actually was included in #2121 but reverted in #2156 due to log spam. But it's not so important that it needs to go in 8.0.0, either.Checklist
make qa
(runsmake lint
andmake test
)