Skip to content

Releases: feathersjs-ecosystem/feathers-vuex

Fix setCurrent and broken dependency

24 Sep 19:07
Compare
Choose a tag to compare

Fixes broken copy on setCurrent. #267

An in-range update to a Feathers module broke when the dependency export changed. Fixed in #274

2.x: Community FeathersVuexFind & docs contributions

2.x Add items mutation fixed

24 Sep 19:14
Compare
Choose a tag to compare

2.x: fix broken dependency import

24 Sep 19:16
Compare
Choose a tag to compare

@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

24 Sep 19:17
Compare
Choose a tag to compare

2.x: Fix weird TypeScript transpilation bug

24 Sep 19:19
Compare
Choose a tag to compare

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

24 Sep 19:20
Compare
Choose a tag to compare

A circular dependency was breaking builds when using Rollup. Webpack seems to have been completely unaffected.

2.x: makeFindMixin pending state before debounced requrests

24 Sep 19:21
Compare
Choose a tag to compare

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

07 Feb 16:53
Compare
Choose a tag to compare

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.