The issue was closed as beging fixed but it isn't.
So often...
Post funny things about programming here! (Or just rant about your favourite programming language.)
The issue was closed as beging fixed but it isn't.
So often...
The new version isn't backward-compatible and now you've got to re-write your whole project.
Conversely: The new version requires you write it with a different word that makes more sense, so you do an search and replace in a few files and get done with it and nothing breaks.
If you edit code with find/replace, you need a better IDE. Just a hint.
I would say finding that the bug is in a library is worse than finding it in your own code.
If it's your own code, you just fix it.
If it's in a library you then have to go and search for issues. If there isn't one, you then go and spend time making one and potentially preparing a minimum reproducible example. Or if you don't do that (or it's just unmaintained) then you have to consider downgrading to a version that doesn't have the bug and potentially losing functionality, or even switching to another library entirely and consequently rewriting all your code that used the old one to work with the new one.
Yeah, I'd take my own bugs over library bugs any day.
That’s where my ecosystem shines, since it’s all open source. If there’s a bug that I can fix, but the maintainer won’t, I’ll just fork the repo.