# style-loader v3.0.0 - Product: style-loader (https://whatsnew.fyi/product/style-loader) - Vendor: webpack - Date: 2021-06-24 - Version: v3.0.0 - Original notes: https://github.com/webpack/style-loader/releases/tag/v3.0.0 - Permalink: https://whatsnew.fyi/product/style-loader/releases/v3.0.0 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **changed** — minimum supported Node.js version is now 12.13.0 - **changed** — minimum supported webpack version is now 5.0.0 - **removed** — the modules.namedExport option was removed - **changed** — the styleTag value of the injectType option no longer uses singleton style tag by default, instead using standard style tags for modern browsers - **added** — add autoStyleTag and lazyAutoStyleTag values for the injectType option for compatibility with modern and IE8-IE9 browsers - **added** — add styleTagTransform option for custom processing of style tags - **changed** — reduce size of generated code - **changed** — reduce dependencies ##### [3.0.0](https://github.com/webpack-contrib/style-loader/compare/v2.0.0...v3.0.0) (2021-06-24) ###### ⚠ BREAKING CHANGES * minimum supported `Node.js` version is `12.13.0` * minimum supported `webpack` version is `5.0.0` * the `modules.namedExport` option was removed, you don't need it anymore, because we respect the `modules.namedExport` option from `css-loader` (we just reexport all from `css-loader`), just remove it * the `styleTag` value of the `injectType` (default value) option earlier uses singleton style tag by default for IE8-IE9 due limitations ([more information](https://www.telerik.com/blogs/internet-explorer-css-limits)), in this release we have disabled this behavior, because these versions of IE are outdated, if you don't support these browsers this change does not affect you, if you require to support IE8-IE9, you can return old behaviour by setting `autoStyleTag` value for the `injectType` option (do the same for `lazyStyleTag`, i.e. change it to `lazyAutoStyleTag`) ###### Features * added `autoStyleTag` and `lazyAutoStyleTag` values for the `injectType` option for compatibility of work modern and IE8-IE9 browsers * added `styleTagTransform` option for custom processing style tags (useful if you need ponyfill CSS custom properties for IE8-IE10) * reduce size of generated code * reduce deps