open-nomad/ui/config/deprecation-workflow.js
Buck Doyle 9b2fb14e51
UI: Update Ember to 3.12 LTS (#6419)
This is mostly deprecation fixes and blueprint changes. There
are some dependency updates too; the changes to Ember
Basic Dropdown necessitated changing it to angle bracket
component invocation. The conversion of the rest of the
templates will happen separately.
2019-10-15 13:32:58 -05:00

14 lines
601 B
JavaScript

/* global self */
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
workflow: [
{ handler: 'throw', matchId: 'ember-inflector.globals' },
{ handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' },
{ handler: 'throw', matchId: 'ember-console.deprecate-logger' },
// Only used in ivy-codemirror.
// PR open: https://github.com/IvyApp/ivy-codemirror/pull/40/files
{ handler: 'log', matchId: 'ember-component.send-action' },
{ handler: 'log', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
],
};