Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Releases: fusionjs/fusion-plugin-service-worker

v2.0.1-2

23 Apr 00:03
Compare
Choose a tag to compare
v2.0.1-2 Pre-release
Pre-release

Changelog

Highlighted Changes

  • Move test deps to dev-deps (#153)

v2.0.1-1

19 Apr 19:21
Compare
Choose a tag to compare
v2.0.1-1 Pre-release
Pre-release

Changelog

No pull requests in this release

v2.0.1-0

19 Apr 17:59
Compare
Choose a tag to compare
v2.0.1-0 Pre-release
Pre-release

Changelog

No pull requests in this release

v2.0.0-debug

18 Apr 19:54
Compare
Choose a tag to compare
v2.0.0-debug Pre-release
Pre-release

Changelog

No pull requests in this release

v2.0.0

04 Apr 19:56
1b619bb
Compare
Choose a tag to compare

Changelog

No pull requests in this release

v2.0.0-1

03 Apr 21:13
4907a8f
Compare
Choose a tag to compare
v2.0.0-1 Pre-release
Pre-release

Changelog

No pull requests in this release

v2.0.0-0

28 Mar 17:35
Compare
Choose a tag to compare
v2.0.0-0 Pre-release
Pre-release

Changelog

Highlighted Changes

  • Support regex matching for a) cache-busting resource names b) routes names that will bypass for network (#145)

Other Changes

  • Add cacheDuration name change (#146)
  • Update dependency enzyme to v3.9.0 (#122)

Migration Guide

###Changes to expected SWOptionsToken values

Before:

type Options = {
  cacheInvalidatingPatterns?: Array<string>,
  maxCacheDurationMs?: number,
};

After:

  • maxCacheDurationMs is renamed to cacheDuration

  • cacheInvalidatingPatterns is now cacheBustingPatterns and takes an array of regular expressions instead of an array of strings

  • cacheableRoutePatterns is an additional option--when present, html requests that do not match at least one of these regular expression will bypass the Service Worker and always hit the network directly.

type Options = {
  cacheableRoutePatterns?: Array<RegExp>,
  cacheBustingPatterns?: Array<RegExp>,
  cacheDuration?: number,
};

v1.3.1-1

07 Mar 01:08
Compare
Choose a tag to compare
v1.3.1-1 Pre-release
Pre-release

Changelog

No pull requests in this release

v1.3.1-0

07 Mar 00:50
Compare
Choose a tag to compare
v1.3.1-0 Pre-release
Pre-release

Changelog

No pull requests in this release

v1.3.1-debug

06 Mar 20:59
Compare
Choose a tag to compare
v1.3.1-debug Pre-release
Pre-release

Changelog

No pull requests in this release