Releases: fratzinger/feathers-trigger
Releases · fratzinger/feathers-trigger
v4.0.1
v4.0.0
BREAKING CHANGES
- rm 'object-replace-mustace' -> cannot use '{{ before.startsAt }}' anymore natively. If you need this behavior, you can implement it by using a condition function
- rm
dataResolved,beforeResolved,resultResolved- rm fromactionhandler - renamed
conditionsData,conditionsResult,conditionsParams,conditionsBeforetodata,result,params,before - renamed
paramstomanipulateParams - rm
[key: string]: anyfrom Subscription - rm 'batchMode' option & make action explicit with
actionfor single items orbatchActionfor multiple items
So this:
// old
conditionsResult: { startsAt: { $gt: "{{ before.startsAt }}" } }becomes this:
// new
result: ({ before }) => ({ startsAt: { $gt: before.startsAt } })What's Changed
- v4 by @fratzinger in #17
- chore: new eslint-config & ext to imports by @fratzinger in #18
- docs: docs for v4 by @fratzinger in #19
Full Changelog: v3.1.2...v4.0.0
v3.1.2
v3.1.1
v3.1.0
v3.0.1
v3.0.0
v2.1.1
- fix: typing 0275dcd