discourse/app/assets/javascripts/discourse-common/addon/deprecation-workflow.js
Sérgio Saquetim c3e7d97048
DEV: Switch the glimmer post menu to auto and unsilence deprecations (#30161)
This commit starts the rollout of the Glimmer post menu:

- default to `auto`: after the upgrade, it will be enabled on all discourse instances that do not have incompatible customizations

- unsilence the deprecation messages in the console

- removes the setting `glimmer_post_menu_groups` as it's no longer in the test phase
2024-12-12 18:27:02 -03:00

16 lines
506 B
JavaScript

const DEPRECATION_WORKFLOW = [
{ handler: "silence", matchId: "template-action" }, // will be removed in Ember 6.0
{ handler: "silence", matchId: "deprecate-array-prototype-extensions" }, // will be removed in Ember 6.0
{ handler: "silence", matchId: "discourse.select-kit" },
{
handler: "silence",
matchId: "discourse.decorate-widget.hamburger-widget-links",
},
{
handler: "silence",
matchId: "discourse.hbr-topic-list-overrides",
},
];
export default DEPRECATION_WORKFLOW;