|
1 | | -## 0.8.0 (2022-04-01) The last stable version |
2 | | -- added new option `remove` to define custom RegExp for generated assets that must be removed |
3 | | -- update packages |
| 1 | +## 0.8.1 (2022-06-14) |
| 2 | +- fix: add supports for TypeScript |
| 3 | +- chore: update packages |
| 4 | +- docs: update readme |
| 5 | + |
| 6 | +## 0.8.0 (2022-04-01) |
| 7 | +- feat: added new option `remove` to define custom RegExp for generated assets that must be removed |
| 8 | +- chore: update packages |
4 | 9 |
|
5 | 10 | ## 0.7.3 (2022-01-30) |
6 | 11 | - added color verbose output via ANSI color library - ansis |
7 | 12 | - added the test case for styles imported from javascript |
8 | 13 |
|
9 | 14 | ## 0.7.2 (2021-12-13) |
10 | | -- added new option `enable` to enable / disable the plugin, e.g. by development |
11 | | -- added supports of `RegExp` for option `extensions` |
12 | | -- remove deprecated option `silent`, use `verbose` to show process information (no braking change) |
13 | | -- added GitHub workflow + codecov |
14 | | -- update packages |
15 | | -- update readme |
| 15 | +- feat: added new option `enable` to enable / disable the plugin, e.g. by development |
| 16 | +- feat: added supports of `RegExp` for option `extensions` |
| 17 | +- chore: remove deprecated option `silent`, use `verbose` to show process information (no braking change) |
| 18 | +- chore: add GitHub workflow + codecov |
| 19 | +- chore: update packages |
| 20 | +- docs: update readme |
16 | 21 |
|
17 | 22 | ## 0.7.1 (2021-01-14) |
18 | | -### Bugfixes |
19 | | -- fix the issue infinite recursion by collect of resources from dependency modules by usage in react app some big components with many thousands dependencies |
| 23 | +- fix: the issue infinite recursion by collect of resources from dependency modules by usage in react app some big components with many thousands dependencies |
20 | 24 |
|
21 | 25 | ## 0.7.0 (2020-12-21) |
22 | | -### Breaking change |
23 | | -- deprecate the `silent` option, it will be removed on Juni 30, 2021. Use option `verbose: true` to show in console each removed empty file. Defaults, `verbose: false`. |
24 | | - |
25 | | -### Bugfixes |
26 | | -- fix issue `Maximum call stack size exceeded` in all cases, for example, by usage the webpack setting `optimization.concatenateModules: true` and: |
| 26 | +- chore: deprecate the `silent` option, it will be removed on Juni 30, 2021. Use option `verbose: true` to show in console each removed empty file. |
| 27 | + Defaults, `verbose: false`. |
| 28 | +- fix: issue `Maximum call stack size exceeded` in all cases, for example, by usage the webpack setting `optimization.concatenateModules: true` and: |
27 | 29 | - import react |
28 | 30 | - import redux |
29 | 31 | - webpack setting `externals.jquery: 'jQuery'` or other external libs |
30 | | -- The issue if first in webpack entries are a styles and then a scripts. |
| 32 | +- fix: the issue if first in webpack entries are a styles and then a scripts |
31 | 33 |
|
32 | 34 | ## 0.6.4 (2020-12-19) |
33 | | -- fix the error: `Maximum call stack size exceeded` with webpack setting `optimization.concatenateModules: true`and usage in script imports from `react` and `redux` |
34 | | -- added the test case for single style without a scripts in webpack config |
35 | | -- added silent mode in tests to suppress output log info in the console |
36 | | -- improve the option `ignore`: |
| 35 | +- feat: improve the option `ignore`: |
37 | 36 | - it can be the array of string or RegExp |
38 | 37 | - added default value of `ignore` as `['/node_modules/']` to ignore resources from `node_modules` path |
39 | | -- update npm packages. |
| 38 | +- fix: the error: `Maximum call stack size exceeded` with webpack setting `optimization.concatenateModules: true`and usage in script imports from `react` and `redux` |
| 39 | +- test: added the test case for single style without a scripts in webpack config |
| 40 | +- test: added silent mode in tests to suppress output log info in the console |
| 41 | +- chore: update packages |
40 | 42 |
|
41 | 43 | ## 0.6.3 (2020-10-25) |
42 | | -- fix BREAKING CHANGE in Webpack 5: no more changes should happen to `Compilation.assets` |
43 | | -- update code accord new API |
| 44 | +- fix: BREAKING CHANGE in Webpack 5: no more changes should happen to `Compilation.assets` |
| 45 | +- refactor: update code according Webpack 5 API |
44 | 46 |
|
45 | 47 | ## 0.6.2 (2020-10-24) |
46 | | -Update npm packages. |
| 48 | +- chore: update packages |
47 | 49 |
|
48 | 50 | ## 0.6.1 (2020-10-20) |
49 | | -The fork of original [webpack-fix-style-only-entries](https://github.com/fqborges/webpack-fix-style-only-entries) (ver. 0.6.0) for support only Webpack 5 and above. |
50 | | -The Webpack 4 is no longer supported. |
| 51 | +- The fork of original [webpack-fix-style-only-entries](https://github.com/fqborges/webpack-fix-style-only-entries) (ver. 0.6.0) for support only Webpack 5 and above. |
| 52 | + The Webpack 4 is no longer supported. |
51 | 53 |
|
52 | 54 | ### The changes from original version 0.6.0: |
53 | 55 |
|
54 | | -- feature: considers the use hash after the .js and .mjs extension in file format like `.js?[hash]` or `.mjs?[hash]`. |
55 | | -The idea and requirement belong to [MatiasMorici](https://github.com/MatiasMorici) from [PR](https://github.com/fqborges/webpack-fix-style-only-entries/pull/27/commits/57eeecbcb85926578770c3845465e4012b02a196) |
56 | | -- In Webpack 5 fixed deprecation messages: |
| 56 | +- feat: considers the use hash after the .js and .mjs extension in file format like `.js?[hash]` or `.mjs?[hash]`. |
| 57 | + The idea and requirement belong to [MatiasMorici](https://github.com/MatiasMorici) from [PR](https://github.com/fqborges/webpack-fix-style-only-entries/pull/27/commits/57eeecbcb85926578770c3845465e4012b02a196) |
| 58 | +- fix: in Webpack 5 fixed deprecation messages: |
57 | 59 | - DEP_WEBPACK_CHUNK_HAS_ENTRY_MODULE |
58 | 60 | - DEP_WEBPACK_CHUNK_ENTRY_MODULE |
59 | 61 | - DEP_WEBPACK_DEPRECATION_ARRAY_TO_SET |
60 | 62 | - DEP_WEBPACK_MODULE_INDEX |
61 | 63 |
|
62 | | -- update all packages for Webpack 5. |
63 | | -- fix integration test script for using with Webpack 5. |
64 | | -- fix a BUG of `terser-webpack-plugin` (generate the futile file `vendor.js.LICENSE.txt`) in the production test `vendor+multi-js-entry-css-entry`. |
65 | | -- fix module structure in README.md. |
| 64 | +- fix: integration test script for using with Webpack 5 |
| 65 | +- fix: issue using `terser-webpack-plugin` is generated the needless file `vendor.js.LICENSE.txt` in the production test `vendor+multi-js-entry-css-entry` |
| 66 | +- docs: corrected module structure in README.md |
| 67 | +- chore: update packages |
66 | 68 |
|
67 | 69 | ## 0.6.0 (Oct 13, 2020) |
68 | | -Being overly careful here, this version is not breaking for almost all the existing users. It could possibly break in some edge cases, since it changes how modules are collected (from global to one each compilation) or if you have a workaround for a working webpack multi configuration. |
69 | | -- BREAKING (POSSIBLY): Use a dedicated cache for every compilation (Prevent arbitrary files deletion when using Webpack with multi configurations) (PR [#39](https://github.com/fqborges/webpack-fix-style-only-entries/pull/39)) |
| 70 | +Being overly careful here, this version is not breaking for almost all the existing users. |
| 71 | +It could possibly break in some edge cases, since it changes how modules are collected (from global to one each compilation) |
| 72 | +or if you have a workaround for a working webpack multi configuration. |
| 73 | +- BREAKING POSSIBLY: Use a dedicated cache for every compilation (Prevent arbitrary files deletion when using Webpack with multi configurations) (PR [#39](https://github.com/fqborges/webpack-fix-style-only-entries/pull/39)) |
70 | 74 |
|
71 | 75 | ## 0.5.2 (Oct 07, 2020) |
72 | | - - supports Webpack 5 using ModuleGraph API (PR [#38](https://github.com/fqborges/webpack-fix-style-only-entries/pull/38)) |
73 | | - - npm audit fix: ([ea9dd7](https://github.com/fqborges/webpack-fix-style-only-entries/commit/ea9dd7bd7ade5b16623064a4850de39545e1e18e)) |
| 76 | + - feat: supports Webpack 5 using ModuleGraph API (PR [#38](https://github.com/fqborges/webpack-fix-style-only-entries/pull/38)) |
| 77 | + - chore: npm audit fix: ([ea9dd7](https://github.com/fqborges/webpack-fix-style-only-entries/commit/ea9dd7bd7ade5b16623064a4850de39545e1e18e)) |
74 | 78 |
|
75 | 79 | ## 0.5.1 (Jun 13, 2020) |
76 | | - - fix Maximum call stack size exceeded (PR [#34](https://github.com/fqborges/webpack-fix-style-only-entries/pull/34)) |
77 | | - - added CHANGELOG ([3e3767](https://github.com/fqborges/webpack-fix-style-only-entries/commit/3e3767d8998a53d807b5d5b10643d05b800aa79a)) |
| 80 | + - fix: Maximum call stack size exceeded (PR [#34](https://github.com/fqborges/webpack-fix-style-only-entries/pull/34)) |
| 81 | + - chore: add CHANGELOG ([3e3767](https://github.com/fqborges/webpack-fix-style-only-entries/commit/3e3767d8998a53d807b5d5b10643d05b800aa79a)) |
78 | 82 |
|
79 | 83 | ## 0.5.0 (May 18, 2020) |
80 | | - - fix for [#23](https://github.com/fqborges/webpack-fix-style-only-entries/issues/23) ([37d350](https://github.com/fqborges/webpack-fix-style-only-entries/commit/37d350eec83f49c0b12729a93aa6cf2f96d92d0b)) |
81 | | - - fix for [#24](https://github.com/fqborges/webpack-fix-style-only-entries/issues/24) ([d92bec](https://github.com/fqborges/webpack-fix-style-only-entries/commit/d92bec4be5fe4b97a8651a9206fa2281ce1424be)) |
82 | | - - BREAKING: added styl and sass to default extensions ([247a5c](https://github.com/fqborges/webpack-fix-style-only-entries/commit/247a5c9f963e4d7598539056ab3f709b0558b4ec)) |
83 | | - - added LICENSE.txt ([220e20](https://github.com/fqborges/webpack-fix-style-only-entries/commit/220e20eeb9bc95652a942812a424aadd92ec7d1f)) |
| 84 | + - BREAKING CHANGE: added styl and sass to default extensions ([247a5c](https://github.com/fqborges/webpack-fix-style-only-entries/commit/247a5c9f963e4d7598539056ab3f709b0558b4ec)) |
| 85 | + - fix: for [#23](https://github.com/fqborges/webpack-fix-style-only-entries/issues/23) ([37d350](https://github.com/fqborges/webpack-fix-style-only-entries/commit/37d350eec83f49c0b12729a93aa6cf2f96d92d0b)) |
| 86 | + - fix: for [#24](https://github.com/fqborges/webpack-fix-style-only-entries/issues/24) ([d92bec](https://github.com/fqborges/webpack-fix-style-only-entries/commit/d92bec4be5fe4b97a8651a9206fa2281ce1424be)) |
| 87 | + - chore: add LICENSE.txt ([220e20](https://github.com/fqborges/webpack-fix-style-only-entries/commit/220e20eeb9bc95652a942812a424aadd92ec7d1f)) |
84 | 88 |
|
85 | 89 | ## 0.4.0 (Sep 8, 2019) |
86 | 90 | - feat: add support for module js files (PR [#21](https://github.com/fqborges/webpack-fix-style-only-entries/pull/21)) |
0 commit comments