|
1 |
| -## 0.7.2 (Dec 13, 2021) The last stable version |
2 |
| -- add new option `enable` to enable / disable the plugin, e.g. by development |
3 |
| -- add support of `RegExp` for option `extensions` |
| 1 | +## 0.7.3 (Jan 30, 2022) The last stable version |
| 2 | +- added color verbose output via ANSI color library - ansis |
| 3 | +- added the test case for styles imported from javascript |
| 4 | + |
| 5 | +## 0.7.2 (Dec 13, 2021) |
| 6 | +- added new option `enable` to enable / disable the plugin, e.g. by development |
| 7 | +- added supports of `RegExp` for option `extensions` |
4 | 8 | - remove deprecated option `silent`, use `verbose` to show process information (no braking change)
|
5 |
| -- add GitHub workflow + codecov |
6 |
| -- color verbose output |
| 9 | +- added GitHub workflow + codecov |
7 | 10 | - update packages
|
8 | 11 | - update readme
|
9 | 12 |
|
10 | 13 | ## 0.7.1 (Jan 14, 2021)
|
11 | 14 | ### Bugfixes
|
12 |
| -- The issue infinite recursion by collect of resources from dependency modules by usage in react app some big components with many thousands dependencies. |
| 15 | +- fix the issue infinite recursion by collect of resources from dependency modules by usage in react app some big components with many thousands dependencies |
13 | 16 |
|
14 | 17 | ## 0.7.0 (Dec 21, 2020)
|
15 | 18 | ### Breaking change
|
16 |
| -- The `silent` option is deprecated and will be removed on Juni 30, 2021. Use option `verbose: true` to show in console each removed empty file. Defaults, `verbose: false`. |
| 19 | +- 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`. |
17 | 20 |
|
18 | 21 | ### Bugfixes
|
19 |
| -- The issue `Maximum call stack size exceeded` was general fixed in all cases, for example, by usage the webpack setting `optimization.concatenateModules: true` and: |
| 22 | +- fix issue `Maximum call stack size exceeded` in all cases, for example, by usage the webpack setting `optimization.concatenateModules: true` and: |
20 | 23 | - import react
|
21 | 24 | - import redux
|
22 | 25 | - webpack setting `externals.jquery: 'jQuery'` or other external libs
|
23 | 26 | - The issue if first in webpack entries are a styles and then a scripts.
|
24 | 27 |
|
25 | 28 | ## 0.6.4 (Dec 19, 2020)
|
26 |
| -- Bugfix the error: `Maximum call stack size exceeded` with webpack setting `optimization.concatenateModules: true`and usage in script imports from `react` and `redux`. |
27 |
| -- Add test case for single style without a scripts in webpack config. |
28 |
| -- Add silent mode in tests to suppress output log info in the console. |
29 |
| -- The option `ignore` can be the array of string or RegExp. Add default value of `ignore` as `['/node_modules/']` to ignore resources from `node_modules` path. |
30 |
| -- Update npm packages. |
| 29 | +- fix the error: `Maximum call stack size exceeded` with webpack setting `optimization.concatenateModules: true`and usage in script imports from `react` and `redux` |
| 30 | +- added the test case for single style without a scripts in webpack config |
| 31 | +- added silent mode in tests to suppress output log info in the console |
| 32 | +- improve the option `ignore`: |
| 33 | + - it can be the array of string or RegExp |
| 34 | + - added default value of `ignore` as `['/node_modules/']` to ignore resources from `node_modules` path |
| 35 | +- update npm packages. |
31 | 36 |
|
32 | 37 | ## 0.6.3 (Oct 25, 2020)
|
33 |
| -Fix BREAKING CHANGE in Webpack 5: No more changes should happen to `Compilation.assets`. Update code accord new API. |
| 38 | +- fix BREAKING CHANGE in Webpack 5: no more changes should happen to `Compilation.assets` |
| 39 | +- update code accord new API |
34 | 40 |
|
35 | 41 | ## 0.6.2 (Oct 24, 2020)
|
36 | 42 | Update npm packages.
|
37 | 43 |
|
38 | 44 | ## 0.6.1 (Oct 20, 2020)
|
39 |
| -The fork of original `https://github.com/fqborges/webpack-fix-style-only-entries` (ver. 0.6.0) for support only Webpack 5 and above. |
| 45 | +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. |
40 | 46 | The Webpack 4 is no longer supported.
|
41 | 47 |
|
42 |
| -The changes from original version 0.6.0: |
| 48 | +### The changes from original version 0.6.0: |
43 | 49 |
|
44 |
| -- Added the feature: considers the use hash after the .js and .mjs extension in file format like `.js?[hash]` or `.mjs?[hash]`. |
45 |
| -The idea and requirement belong to https://github.com/MatiasMorici from PR https://github.com/fqborges/webpack-fix-style-only-entries/pull/27/commits/57eeecbcb85926578770c3845465e4012b02a196 |
| 50 | +- feature: considers the use hash after the .js and .mjs extension in file format like `.js?[hash]` or `.mjs?[hash]`. |
| 51 | +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) |
46 | 52 | - In Webpack 5 fixed deprecation messages:
|
47 | 53 | - DEP_WEBPACK_CHUNK_HAS_ENTRY_MODULE
|
48 | 54 | - DEP_WEBPACK_CHUNK_ENTRY_MODULE
|
49 | 55 | - DEP_WEBPACK_DEPRECATION_ARRAY_TO_SET
|
50 | 56 | - DEP_WEBPACK_MODULE_INDEX
|
51 | 57 |
|
52 |
| -- Update all packages for Webpack 5. |
53 |
| -- Fix integration test script for using with Webpack 5. |
54 |
| -- 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`. |
55 |
| -- Fix module structure in README.md. |
| 58 | +- update all packages for Webpack 5. |
| 59 | +- fix integration test script for using with Webpack 5. |
| 60 | +- 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`. |
| 61 | +- fix module structure in README.md. |
56 | 62 |
|
57 | 63 | ## 0.6.0 (Oct 13, 2020)
|
58 | 64 | 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.
|
59 | 65 | - 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))
|
60 | 66 |
|
61 | 67 | ## 0.5.2 (Oct 07, 2020)
|
62 |
| - - Webpack 5 support using ModuleGraph API (PR [#38](https://github.com/fqborges/webpack-fix-style-only-entries/pull/38)) |
| 68 | + - supports Webpack 5 using ModuleGraph API (PR [#38](https://github.com/fqborges/webpack-fix-style-only-entries/pull/38)) |
63 | 69 | - npm audit fix: ([ea9dd7](https://github.com/fqborges/webpack-fix-style-only-entries/commit/ea9dd7bd7ade5b16623064a4850de39545e1e18e))
|
64 | 70 |
|
65 | 71 | ## 0.5.1 (Jun 13, 2020)
|
66 |
| - - Fix Maximum call stack size exceeded (PR [#34](https://github.com/fqborges/webpack-fix-style-only-entries/pull/34)) |
67 |
| - - Added CHANGELOG ([3e3767](https://github.com/fqborges/webpack-fix-style-only-entries/commit/3e3767d8998a53d807b5d5b10643d05b800aa79a)) |
| 72 | + - fix Maximum call stack size exceeded (PR [#34](https://github.com/fqborges/webpack-fix-style-only-entries/pull/34)) |
| 73 | + - added CHANGELOG ([3e3767](https://github.com/fqborges/webpack-fix-style-only-entries/commit/3e3767d8998a53d807b5d5b10643d05b800aa79a)) |
68 | 74 |
|
69 | 75 | ## 0.5.0 (May 18, 2020)
|
70 | 76 | - 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))
|
|
0 commit comments