Releases: feathersjs-ecosystem/feathers-vuex
Fix setCurrent and broken dependency
2.x: Community FeathersVuexFind & docs contributions
2.x Add items mutation fixed
2.x: fix broken dependency import
@feathersjs/commons changed the way it need to imported.
import commons from '@feathersjs/commons'
is now
import { _ } from '@feathersjs/commons'
2.x: Perfect tree shaking by using specific modules
2.x: Fix weird TypeScript transpilation bug
When you use async
with an arrow function, TypeScript produces some really weird code that's easy to break in project production transpilation. The arrow functions causing the issue have been updated to be plain js functions.
2.x: Fix circular dependency
A circular dependency was breaking builds when using Rollup. Webpack seems to have been completely unaffected.
2.x: makeFindMixin pending state before debounced requrests
feat: set pending state before debounced requests
In the makeFindMixin
, if the request is going to be debounced, the isFind<Items>Pending
attribute is now set before the debounce timeout. This assures that a loading indicator can be shown during the debounce timeout. It makes pagination operate much more smoothly.
2.x: makeGetMixin can now check component data for the id, fix Travis CI tests
Better store queries with the sift module
This updates the query logic for find
queries against the store. It now uses the sift
module, which provides more accurate queries and resolves some bugs that could occur when using some hooks in the the feathers-plus/feathers-hooks-common
package.