basket.js v0.5.2 Release Notes

Release Date: 2015-02-07 // about 9 years ago
  • ๐Ÿš€ This is a maintenance release which has been tested as working with the latest version of RSVP (3.0.16).


Previous changes from v0.5.0

  • ๐Ÿš€ This is a minor release where a number of dependencies have been updated. New additions to the Basket.js API include skipCache, which prevents storing scipts in cache. The feature can be useful when you want load scripts in order, but only cache some. Here's an example:

    basket.require({ url: 'require.js' },{ url: 'require.config.js', skipCache: true },{ url: 'libs.js' });
    

    In the above, multiple scripts will be requested and then cached however require.config.js will not be cached in localStorage.

    ๐Ÿš€ Special thanks go to @sindresorhus @itsuryev and @wibblymat for their help with this release.

    ๐Ÿ‘€ For the complete changelog see: v0.4.0...v0.5.0

    ๐Ÿš€ As per our last release, we continue to look forward to the ServiceWorker Cache API eventually being more useful for some of our use-cases. A very early Cache API polyfill was demonstrated working as part of the Polymer Topeka app at Google I/O and we look forward to exploring async solutions using IndexedDB as a backing store in the future.