Hacker News new | ask | show | jobs
by dmitriid 1566 days ago
> there are breaking changes in either api or behavior.

So instead off focusing on those changes I have to first fix potential dozens of files for no reason at all.

1 comments

> So instead off focusing on those changes I have to first fix potential dozens of files for no reason at all.

You don't have to, if you don't want to upgrade to a new major version.

If you do want to upgrade to a major version, which means that there are breaking changes in a package's API or behavior - you sure as hell want to check the correctness of every single line of code written using that package. Since every file that uses that package must contain an import statement, the import statements are an easily greppable indicator of which files you have to check and potentially fix.

> you sure as hell want to check the correctness of every single line of code written using that package

Yes, I do. Doing the monkey job of changing every import line (which will be done with a global search/replace) is definitely not that.

If you're relying on import statements to tell you which files to check, you're definitely doing something wrong

What mechanism, if not the presence of import statements, do you use to locate all the places where a certain package is used in a large project?
1. You build your project, and it fails in the places where API changed.

IDEs can even pinpoint those locations without building a project

2. You run tests and they fail if the behavior changed

Literally nowhere is "oh, do an automatic search/replace of imports" is a tool for fixing your project or figuring out necessary changes. Except in go, apparently.

Willingness to play russian roulette with major versions may work in small organizations. In large-scale, you can't risk subtle behavior change that still compiles. That's the source of many black magic debugging sessions.
Grepping and replacing import paths isn't a good tool for finding subtle behavior changes. Especially in big projects.