Ghost/ghost/admin/config/deprecation-workflow.js
renovate[bot] 29a388ad27 Update dependency ember-infinity to v2.1.1 (#1484)
no issue

- fixed template reference
- updated template to match upstream's use of render-modifiers
- removed silencing of `isVisible` deprecation

Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-05-12 09:05:17 +01:00

12 lines
502 B
JavaScript

self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
// remove once ember-drag-drop removes usage of Component#sendAction
// https://github.com/mharris717/ember-drag-drop/issues/155
{handler: 'silence', matchId: 'ember-component.send-action'},
// remove once liquid-fire and liquid-wormhole remove uses of `this.$()`
{handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'}
]
};