mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 23:24:56 +08:00
7d8974d02f
This upgrade is designed to be fully backwards-compatible. Any icon names which have changed will be automatically remapped to the new name. For now, this will happen silently. In future, once core & official themes/plugins have been updated, we will start raising deprecation errors to help theme/plugin authors update their code. Extracted from https://github.com/discourse/discourse/pull/28715 Announcement at https://meta.discourse.org/t/were-upgrading-our-icons-to-font-awesome-6/325349 Co-authored-by: awesomerobot <kris.aubuchon@discourse.org>
19 lines
460 B
JavaScript
19 lines
460 B
JavaScript
const DEPRECATION_WORKFLOW = [
|
|
{
|
|
handler: "silence",
|
|
matchId: "ember-this-fallback.this-property-fallback",
|
|
},
|
|
{ handler: "silence", matchId: "discourse.select-kit" },
|
|
{ handler: "silence", matchId: "discourse.d-section" },
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.decorate-widget.hamburger-widget-links",
|
|
},
|
|
{
|
|
handler: "silence",
|
|
matchId: "discourse.fontawesome-6-upgrade",
|
|
},
|
|
];
|
|
|
|
export default DEPRECATION_WORKFLOW;
|