From 6d63a420bfd442e6b9152b7c616e6cea3250d0b6 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Mon, 25 Mar 2019 21:24:32 -0700 Subject: [PATCH] Commit the deprecation workflow to prevent fixed deprecations from creeping back in --- ui/config/deprecation-workflow.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ui/config/deprecation-workflow.js diff --git a/ui/config/deprecation-workflow.js b/ui/config/deprecation-workflow.js new file mode 100644 index 000000000..f195cdb81 --- /dev/null +++ b/ui/config/deprecation-workflow.js @@ -0,0 +1,10 @@ +/* global self */ +self.deprecationWorkflow = self.deprecationWorkflow || {}; +self.deprecationWorkflow.config = { + workflow: [ + { handler: 'throw', matchId: 'ember-inflector.globals' }, + { handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' }, + { handler: 'silence', matchId: 'ember-console.deprecate-logger' }, + { handler: 'silence', matchId: 'ember-component.send-action' }, + ], +};