Currently, cache busting is managed by adding a bundle's latest Git SHA to the query string. Two problems:
- Some CDNs fail to recognize cache busters in query strings.
- This assumes that Git is being used for version control.
Change from application.min.css?a1b2c3 to application-a1b2c3.min.css (like in Rails 3.1), and drop Git SHAs in favor of MD5 fingerprints.