From 5ca4d1610ae1d8b407dad82dd0eb544501833284 Mon Sep 17 00:00:00 2001 From: mistadikay Date: Tue, 15 Mar 2016 11:00:59 +0700 Subject: [PATCH 1/2] rename CHANGES.md to CHANGELOG.md --- CHANGES.md => CHANGELOG.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CHANGES.md => CHANGELOG.md (100%) diff --git a/CHANGES.md b/CHANGELOG.md similarity index 100% rename from CHANGES.md rename to CHANGELOG.md From c4587c1443f416ef95515ceabe8f6a727002509d Mon Sep 17 00:00:00 2001 From: mistadikay Date: Tue, 15 Mar 2016 11:01:20 +0700 Subject: [PATCH 2/2] add missing changelog from 1.5.0 to 2.10.0 --- CHANGELOG.md | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2afc018..ad00642 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,143 @@ Change History ============== +v2.10.0 +---- +* Add `hash` field to the chunk object +* Add `compilation` field to the templateParam object (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/237) +* Add `html-webpack-plugin-before-html-generation` event +* Improve error messages + +v2.9.0 +---- +* Fix favicon path (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/185, https://github.com/ampedandwired/html-webpack-plugin/issues/208, https://github.com/ampedandwired/html-webpack-plugin/pull/215) + +v2.8.2 +---- +* Support relative URLs on Windows (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/205) + +v2.8.1 +---- +* Caching improvements (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/204) + +v2.8.0 +---- +* Add `dependency` mode for `chunksSortMode` to sort chunks based on their dependencies with each other + +v2.7.2 +---- +* Add support for require in js templates + +v2.7.1 +---- +* Refactoring +* Fix relative windows path + +v2.6.5 +---- +* Minor refactoring + +v2.6.4 +---- +* Fix for `"Uncaught TypeError: __webpack_require__(...) is not a function"` +* Fix incomplete cache modules causing "HtmlWebpackPlugin Error: No source available" +* Fix some issues on Windows + +v2.6.3 +---- +* Prevent parsing the base template with the html-loader + +v2.6.2 +---- +* Fix `lodash` resolve error (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/172) + +v2.6.1 +---- +* Fix missing module (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/164) + +v2.6.0 +---- +* Move compiler to its own file +* Improve error messages +* Fix global HTML_WEBPACK_PLUGIN variable + +v2.5.0 +---- +* Support `lodash` template's HTML _"escape"_ delimiter (`<%- %>`) +* Fix bluebird warning (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/130) +* Fix an issue where incomplete cache modules were used + +v2.4.0 +---- +* Don't recompile if the assets didn't change + +v2.3.0 +---- +* Add events `html-webpack-plugin-before-html-processing`, `html-webpack-plugin-after-html-processing`, `html-webpack-plugin-after-emit` to allow other plugins to alter the html this plugin executes + +v2.2.0 +---- +* Inject css and js even if the html file is incomplete (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/135) +* Update dependencies + +v2.1.0 +---- +* Synchronize with the stable `@1` version + +v2.0.4 +---- +* Fix `minify` option +* Fix missing hash interpolation in publicPath + +v2.0.3 +---- +* Add support for webpack.BannerPlugin + +v2.0.2 +---- +* Add support for loaders in templates (fixes https://github.com/ampedandwired/html-webpack-plugin/pull/41) +* Remove `templateContent` option from configuration +* Better error messages +* Update dependencies + + +v1.7.0 +---- +* Add `chunksSortMode` option to configuration to control how chunks should be sorted before they are included to the html +* Don't insert async chunks into html (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/95) +* Update dependencies + +v1.6.2 +---- +* Fix paths on Windows +* Fix missing hash interpolation in publicPath +* Allow only `false` or `object` in `minify` configuration option + +v1.6.1 +---- +* Add `size` field to the chunk object +* Fix stylesheet ``s being discarded when used with `"inject: 'head'"` +* Update dependencies + +v1.6.0 +---- +* Support placing templates in subfolders +* Don't include chunks with undefined name (fixes https://github.com/ampedandwired/html-webpack-plugin/pull/60) +* Don't include async chunks + +v1.5.2 +---- +* Update dependencies (lodash) + +v1.5.1 +---- +* Fix error when manifest is specified (fixes https://github.com/ampedandwired/html-webpack-plugin/issues/56) + +v1.5.0 +---- +* Allow to inject javascript files into the head of the html page +* Fix error reporting + v1.4.0 ---- * Add `favicon.ico` option