2019-04-24 21:43:02 +02:00
|
|
|
/* global self */
|
2023-10-15 21:50:28 +02:00
|
|
|
|
2019-04-24 21:43:02 +02:00
|
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
|
|
self.deprecationWorkflow.config = {
|
2017-07-31 13:59:19 +02:00
|
|
|
workflow: [
|
2023-10-28 19:21:45 +02:00
|
|
|
// @ember/string deprecation is thrown even if all deprecated behavior is
|
|
|
|
// fixed due to a bug in Ember itself. Details can be found in:
|
|
|
|
// https://github.com/emberjs/ember.js/issues/20377
|
2023-10-15 21:50:28 +02:00
|
|
|
{
|
|
|
|
handler: 'silence',
|
2023-10-28 19:21:45 +02:00
|
|
|
matchId: 'ember-string.add-package',
|
2023-10-15 21:50:28 +02:00
|
|
|
},
|
2023-10-15 20:37:03 +02:00
|
|
|
],
|
2017-07-31 13:59:19 +02:00
|
|
|
};
|