# css-loader changelog > css-loader release notes. - Vendor: css-loader - Category: Frameworks & Libraries - Official site: https://github.com/webpack/css-loader - Tracked by: What's New (https://whatsnew.fyi/product/css-loader) - Harvested from: GitHub (webpack/css-loader) - Entries below: 10 (newest first) 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. ## Releases ### v7.1.4 - Date: 2026-02-16 - Version: v7.1.4 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.1.4 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.1.4 ###### [7.1.4](https://github.com/webpack/css-loader/compare/v7.1.3...v7.1.4) (2026-02-16) ###### Bug Fixes * update peer dependency for @rspack/core v2 ([#1652](https://github.com/webpack/css-loader/issues/1652)) ([aeddefe](https://github.com/webpack/css-loader/commit/aeddefee8feb6fe22dd3f98cd2fc2bac50dc7c45)) ### v7.1.3 - Date: 2026-01-27 - Version: v7.1.3 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.1.3 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.1.3 ###### [7.1.3](https://github.com/webpack/css-loader/compare/v7.1.2...v7.1.3) (2026-01-27) ###### Bug Fixes * allow to use `module` class name ([#1649](https://github.com/webpack/css-loader/issues/1649)) ([01869bc](https://github.com/webpack/css-loader/commit/01869bcace63d17c4bfafedbc29c11965e62360d)) * use official `createHash` for hashes ([#1618](https://github.com/webpack/css-loader/issues/1618)) ([06587e5](https://github.com/webpack/css-loader/commit/06587e54c6a580ee0c20e47021943aa9989acd5c)) * use official `hash*` options for hashes ([#1619](https://github.com/webpack/css-loader/issues/1619)) ([9544c3e](https://github.com/webpack/css-loader/commit/9544c3e9a90c1c58476d3d87188f8ff39105294f)) ### v7.1.2 - Date: 2024-05-22 - Version: v7.1.2 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.1.2 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.1.2 ###### [7.1.2](https://github.com/webpack-contrib/css-loader/compare/v7.1.1...v7.1.2) (2024-05-22) ###### Bug Fixes * keep order of `@import`s with the `webpackIgnore` comment ([#1600](https://github.com/webpack-contrib/css-loader/issues/1600)) ([76757ef](https://github.com/webpack-contrib/css-loader/commit/76757ef30ec37f88ccf9d8b82d8d84b7625c5d66)) ### v7.1.1 - Date: 2024-04-10 - Version: v7.1.1 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.1.1 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.1.1 ###### [7.1.1](https://github.com/webpack-contrib/css-loader/compare/v7.1.0...v7.1.1) (2024-04-10) ###### Bug Fixes * automatically rename class `default` to `_default` when named export is enabled ([#1590](https://github.com/webpack-contrib/css-loader/issues/1590)) ([d6c31a1](https://github.com/webpack-contrib/css-loader/commit/d6c31a17a0dde3e2bcf2b5e55f913c3645d32868)) ### v7.1.0 - Date: 2024-04-08 - Version: v7.1.0 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.1.0 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.1.0 ##### [7.1.0](https://github.com/webpack-contrib/css-loader/compare/v7.0.0...v7.1.0) (2024-04-08) ###### Features * added the `getJSON` option to output CSS modules mapping ([#1577](https://github.com/webpack-contrib/css-loader/issues/1577)) ([af834b4](https://github.com/webpack-contrib/css-loader/commit/af834b43b375f336108d74ff7bd9ed13bc79200a)) ### v7.0.0 - Date: 2024-04-04 - Version: v7.0.0 - Original notes: https://github.com/webpack/css-loader/releases/tag/v7.0.0 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v7.0.0 ##### [7.0.0](https://github.com/webpack-contrib/css-loader/compare/v6.11.0...v7.0.0) (2024-04-04) ###### ⚠ BREAKING CHANGES * The `modules.namedExport` option is `true` by default if you enable the `esModule` option Migration guide: Before: ```js import style from "./style.css"; console.log(style.myClass); ``` After: ```js import * as style from "./style.css"; console.log(style.myClass); ``` Typescript migration: Before: ```ts declare module '*.module.css' { const classes: { [key: string]: string }; export default classes; } ``` After: ```ts declare module '*.module.css' { const classes: { [key: string]: string }; export = classes; } ``` * The `modules.exportLocalsConvention` has the value `as-is` when the `modules.namedExport` option is `true` and you don't specify a value * Minimum supported webpack version is `5.27.0` * Minimum supported Node.js version is `18.12.0` ###### Features * The `modules.namedExports` option works fine with any `modules.exportLocalsConvention` values ([f96a110](https://github.com/webpack-contrib/css-loader/commit/f96a11007da55a632de7f58167895e1b5814d717)) * Added dashed variants for the `modules.exportLocalsConvention` options ([40e1668](https://github.com/webpack-contrib/css-loader/commit/40e1668b8366f0df63343efe706ba848c2b5dfb2)) ### v6.11.0 - Date: 2024-04-03 - Version: v6.11.0 - Original notes: https://github.com/webpack/css-loader/releases/tag/v6.11.0 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v6.11.0 ##### [6.11.0](https://github.com/webpack-contrib/css-loader/compare/v6.10.0...v6.11.0) (2024-04-03) ###### Features * supports multiple composes ([#1582](https://github.com/webpack-contrib/css-loader/issues/1582)) ([bbca614](https://github.com/webpack-contrib/css-loader/commit/bbca61411dc5f82964653a6d1aa27854519b743d)) ###### Bug Fixes * do not break `@scope` at-rule without params ([#1581](https://github.com/webpack-contrib/css-loader/issues/1581)) ([e022e3b](https://github.com/webpack-contrib/css-loader/commit/e022e3bb405472ac7d51ff1114783fc2811dfe04)) ### v6.10.0 - Date: 2024-01-30 - Version: v6.10.0 - Original notes: https://github.com/webpack/css-loader/releases/tag/v6.10.0 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v6.10.0 ##### [6.10.0](https://github.com/webpack-contrib/css-loader/compare/v6.9.1...v6.10.0) (2024-01-30) ###### Features * add `@rspack/core` as an optional peer dependency ([#1568](https://github.com/webpack-contrib/css-loader/issues/1568)) ([3924679](https://github.com/webpack-contrib/css-loader/commit/3924679cb9a8f31996c742290a71a3446c9782b9)) * pass the `resourceQuery` and `resourceFragment` to the `auto` and `mode` callback ([#1569](https://github.com/webpack-contrib/css-loader/issues/1569)) ([d641c4d](https://github.com/webpack-contrib/css-loader/commit/d641c4d48264518dfeb77d7e1e8ef03bbb09b645)) * support named exports with any characters ([6f43929](https://github.com/webpack-contrib/css-loader/commit/6f439299838eab7e6fb18f6e9f47b9dee2208463)) ### v6.9.1 - Date: 2024-01-18 - Version: v6.9.1 - Original notes: https://github.com/webpack/css-loader/releases/tag/v6.9.1 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v6.9.1 ###### [6.9.1](https://github.com/webpack-contrib/css-loader/compare/v6.9.0...v6.9.1) (2024-01-18) ###### Bug Fixes * css nesting support * `@scope` at-rule support ### v6.9.0 - Date: 2024-01-09 - Version: v6.9.0 - Original notes: https://github.com/webpack/css-loader/releases/tag/v6.9.0 - Permalink: https://whatsnew.fyi/product/css-loader/releases/v6.9.0 ##### [6.9.0](https://github.com/webpack-contrib/css-loader/compare/v6.8.1...v6.9.0) (2024-01-09) ###### Features * updated generateExportEntry to expose node details ([#1556](https://github.com/webpack-contrib/css-loader/issues/1556)) ([05002f3](https://github.com/webpack-contrib/css-loader/commit/05002f39e29afd7e12f9efca4d073bc23e3d2150)) ###### Bug Fixes * css experiment detection ([#1559](https://github.com/webpack-contrib/css-loader/issues/1559)) ([f2cfe30](https://github.com/webpack-contrib/css-loader/commit/f2cfe30a8f6b0053a268c0d9c1943bb3c8f01338))