-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 3.0.0 #33
Merged
Merged
Version 3.0.0 #33
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Breaking Change: Module exports a factory to create plugin instead of the plugin itself.
Breaking Change:
store.cache.has()
returnsfalse
for expired actions.This fixes issue #28.
Breaking Change: Cache is module scoped and don't support multiple instances anymore.
This fixes an issue with
cacheAction
cache state different from plugin one.Breaking Change:
createCache
need to be called before apply to Vuex's store plugins.Breaking Change: Rename main source module and bundles.
index.js
is nowvuex-cache.js
dist/vuex-cache.cjs.js
is nowdist/vuex-cache.js
dist/vuex-cache.es.js
is nowdist/vuex-cache.mjs
dist/vuex-cache.js
is nowdist/vuex-cache.umd.js
dist/vuex-cache.min.js
is nowdist/vuex-cache.umd.min.js
It now supports some of non JSON parseable values as arguments. Like functions,
undefined
and other values.This fixes issue #30.
It fallback dispatches to uncached if params have circular references.
This fixes issue #29.
Add JSDoc comments to functions and values.
Rename main module, functions and variables.
Refactor unit tests and split them into multiple modules.
Upgrade dependencies and bundle settings.
Create type definitions for TS developers & Editor/IDE intellisense.
This fixes issue #32.
Add MIT License.
Improve
README.md
docs.This fixes issue #21.
Move
Map
polyfill notice to Compatibility section.Maybe fix the cause of issue #31.
Improve Installation section on
README.md
.Refactor Usage section and move it up.
Create API section with docs about
cache
methods, Payload and Timeout.Remove old docs about
cache
methods, payload and timeout.Change
package.json
description and keywords.Fixes #21, #28, #29, #30, #31, #32, #35.