Skip to content

Releases: jherax/proxy-storage

1.0.4

24 Nov 17:44
Compare
Choose a tag to compare

Improvements

  1. Interceptors now interact with the values in the API methods setItem and getItem. Read more about interceptors.

1.0.3

21 Nov 21:54
Compare
Choose a tag to compare

Fixes

  1. #2: Getting an error when retrieving nonexistent item from cookieStorage

1.0.2

17 Nov 23:08
Compare
Choose a tag to compare

Improvements

  1. WebStorage instances are singletons by storage mechanism, in order to keep consistency of the data stored.

Fixes

  1. #1: Storages have no existing elements when they are instantiated the first time.

1.0.1

17 Nov 01:28
Compare
Choose a tag to compare

Fixes

  1. #1: Storages have no existing elements when they are instantiated the first time.

1.0.0

16 Nov 20:58
Compare
Choose a tag to compare

Features

  1. Added keys and length to the WebStorage instances.

Breaking changes

The method setItem has changed its signature when the storage mechanism is set to "cookieStorage"

See more documentation here.

New signature

setItem (key {string}, value {any}, options {object});

Old signature

setItem (key {string}, value {any}, expires {number}, path {string});

0.3.0

11 Nov 21:50
Compare
Choose a tag to compare

Features

  1. Added the static method WebStorage.interceptors()

0.2.0

11 Nov 01:17
Compare
Choose a tag to compare

Improvements

  1. Added eslint-config-google.
  2. Added eslint-loader to webpack.
  3. Added clean-webpack-plugin to webpack.