Skip to content

Releases: webpack-contrib/css-loader

v6.1.0

17 Jul 14:21
Compare
Choose a tag to compare

6.1.0 (2021-07-17)

Features

Bug Fixes

v6.0.0

15 Jul 02:27
Compare
Choose a tag to compare

6.0.0 (2021-07-14)

Notes

  • using ~ is deprecated when the esModules option is enabled (enabled by default) and can be removed from your code (we recommend it) (url(~package/image.png) -> url(package/image.png), @import url(~package/style.css) -> @import url(package/style.css), composes: import from '~package/one.css'; -> composes: import from 'package/one.css';), but we still support it for historical reasons. Why can you remove it? The loader will first try to resolve @import/url()/etc as relative, if it cannot be resolved, the loader will try to resolve @import/url()/etc inside node_modules or modules directories.
  • file-loader and url-loader are deprecated, please migrate on asset modules, since v6 css-loader is generating new URL(...) syntax, it enables by default built-in assets modules, i.e. type: 'asset' for all url()

⚠ BREAKING CHANGES

  • minimum supported Node.js version is 12.13.0
  • minimum supported webpack version is 5, we recommend to update to the latest version for better performance
  • for url and import options Function type was removed in favor Object type with the filter property, i.e. before { url: () => true }, now { url: { filter: () => true } } and before { import: () => true }, now { import: { filter: () => true } }
  • the modules.compileType option was removed in favor the modules.mode option with icss value, also the modules option can have icss string value
  • new URL() syntax used for url(), only when the esModules option is enabled (enabled by default), it means you can bundle CSS for libraries
  • data URI are handling in url(), it means you can register loaders for them, example
  • aliases with false value for url() now generate empty data URI (i.e. data:0,), only when the esModules option is enabled (enabled by default)
  • [ext] placeholder don't need . (dot) before for the localIdentName option, i.e. please change .[ext] on [ext] (no dot before)
  • [folder] placeholder was removed without replacement for the localIdentName option, please use a custom function if you need complex logic
  • [emoji] placeholder was removed without replacement for the localIdentName option, please use a custom function if you need complex logic
  • the localIdentHashPrefix was removed in favor the localIdentHashSalt option

Features

  • supported resolve.byDependency.css resolve options for @import
  • supported resolve.byDependency.icss resolve CSS modules and ICSS imports (i.e. composes/etc)
  • added modules.localIdentHashFunction, modules.localIdentHashDigest, modules.localIdentHashDigestLength options for better class hashing controlling
  • less dependencies

Bug Fixes

  • better performance
  • fixed circular @import

v5.2.7

13 Jul 13:01
Compare
Choose a tag to compare

5.2.7 (2021-07-13)

Bug Fixes

  • fix crash when source map is unavailable with external URL in [@import](https://github.com/import) (bb76fe4)

v5.2.6

24 May 14:05
Compare
Choose a tag to compare

5.2.6 (2021-05-24)

Bug Fixes

  • always write locals export when css modules/icss enabled (#1315) (075d9bd)

v5.2.5

20 May 12:42
Compare
Choose a tag to compare

5.2.5 (2021-05-20)

Bug Fixes

v5.2.4

19 Apr 17:19
Compare
Choose a tag to compare

5.2.4 (2021-04-19)

Bug Fixes

v5.2.3

19 Apr 13:02
Compare
Choose a tag to compare

5.2.3 (2021-04-19)

Bug Fixes

  • improve performance

v5.2.2

16 Apr 15:18
Compare
Choose a tag to compare

5.2.2 (2021-04-16)

Bug Fixes

  • avoid escape nonASCII characters in local names (0722733)

v5.2.1

09 Apr 15:00
Compare
Choose a tag to compare

5.2.1 (2021-04-09)

Bug Fixes

v5.2.0

24 Mar 17:03
Compare
Choose a tag to compare

5.2.0 (2021-03-24)

Features

  • support async functions for url and import options (#1277) (c5062db)