On websites I make I usually invalidate the cache of CSS and JS using query-string params, like so:
Note: this is a screenshot from the chrome inspector, these query-strings are all appended automatically by a little system I made when being rendered into the browser.
A friend now told me that using the query-string doesn't cache as good as changing the filename itself or somewhere in the path before the filename. He also sent an article along with it and here they're mainly talking about bad performance when people use proxies.
However, the article is 8 years old. I wonder, is it still a valid point? Should I care? Is it really a bad practice?