Skip to content

Commit e3ae9a6

Browse files
committed
add the two deprecations to the deprecation workflow
1 parent 46342c4 commit e3ae9a6

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

app/deprecation-workflow.js

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ setupDeprecationWorkflow({
99
handling their deprecations, this should be set to "true"
1010
*/
1111
throwOnUnhandled: false,
12+
/* to generate this list, run your app for a while (or run the test suite),
13+
* and then run in the browser console:
14+
*
15+
* deprecationWorkflow.flushDeprecations()
16+
*
17+
* And copy the handlers here
18+
*/
1219
workflow: [
13-
/* ... handlers ... */
14-
/* to generate this list, run your app for a while (or run the test suite),
15-
* and then run in the browser console:
16-
*
17-
* deprecationWorkflow.flushDeprecations()
18-
*
19-
* And copy the handlers here
20-
*/
21-
/* example: */
22-
/* { handler: 'silence', matchId: 'template-action' }, */
20+
{
21+
handler: 'silence',
22+
matchId: 'importing-inject-from-ember-service',
23+
},
24+
{
25+
handler: 'silence',
26+
matchId: 'ember-data:deprecate-legacy-imports',
27+
},
2328
],
2429
});

0 commit comments

Comments
 (0)