symfony/webpack-encore
### [`v1.1.2`](https://togithub.com/symfony/webpack-encore/releases/v1.1.2)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.1.1...v1.1.2)
Hi Webpackers!
This release fixes some bad behavior when using HMR with the dev-server. Previously, on any change (even those where the page should have been updated with HMR without a page refresh), the page would refresh. PR [#939](https://togithub.com/symfony/webpack-encore/issues/939) fixes that by _disabling auto-refresh_. This means that your page will not refresh automatically after making a change. This was a trade-off, as HMR was unusable currently. Hopefully a future version of webpack-dev-server may address this.
Other PR's include:
- minor [#940](https://togithub.com/symfony/webpack-encore/issues/940) Clarify missing css file error message (thanks to [@Gadgetdude](https://togithub.com/Gadgetdude))
- bug [#938](https://togithub.com/symfony/webpack-encore/issues/938) Require vue-loader 15.9.5 to work with Encore 1.0 (thanks to [@weaverryan](https://togithub.com/weaverryan))
To upgrade:
yarn upgrade "@symfony/webpack-encore@^1.1.2"
Changes:
Documentation:
Happy packing!
### [`v1.1.1`](https://togithub.com/symfony/webpack-encore/releases/v1.1.1)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.1.0...v1.1.1)
Hi Webpackers!
This release fixes a bug that was introduced with Encore 1.0 and Webpack 5 related to `copyFiles()`. See [#894](https://togithub.com/symfony/webpack-encore/issues/894) for the details.
The fix was done in [#930](https://togithub.com/symfony/webpack-encore/issues/930) - a big thanks to [@Lyrkan](https://togithub.com/Lyrkan).
To upgrade:
yarn upgrade "@symfony/webpack-encore@^1.1.1"
Changes:
Documentation:
Happy packing!
### [`v1.1.0`](https://togithub.com/symfony/webpack-encore/releases/v1.1.0)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.6...v1.1.0)
Hi Webpackers!
This release allows you to use the newest version of 4 loaders without warnings:
- Allow postcss-loader 5
- Allow less-loader 8
- Allow sass-loader 11
- Allow stylus-loader 5
To upgrade:
yarn upgrade "@symfony/webpack-encore@^1.1.0"
Changes:
Documentation:
Happy packing!
### [`v1.0.6`](https://togithub.com/symfony/webpack-encore/releases/v1.0.6)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.5...v1.0.6)
Hi Webpackers!
This release fixes a problem the "keys" inside `manifest.json` for some images and fonts - see [#907](https://togithub.com/symfony/webpack-encore/issues/907). This was fixed in [#921](https://togithub.com/symfony/webpack-encore/issues/921).
If you continue to have any issues with your `manifest.json` file, please open an issue. We use a 3rd party library - `webpack-manifest-plugin` - and we've been working with them to smooth out their Webpack 5 compatibility.
To upgrade:
yarn upgrade "@symfony/webpack-encore@^1.0.6"
Changes:
Documentation:
Happy packing!
### [`v1.0.5`](https://togithub.com/symfony/webpack-encore/releases/v1.0.5)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.4...v1.0.5)
Hi Webpackers!
This release fixes a problem if you're using the `dev-server` mode with custom `https` configuration (like setting a `pfx` for the ssl certificate). See [#903](https://togithub.com/symfony/webpack-encore/issues/903).
If you want to run the `dev-server` in https with some custom configuration, you should configure it entirely in `webpack.config.js`. For example, if you're using the Symfony binary and want to re-use its https certificate:
```js
const path = require('path');
// ...
.configureDevServerOptions(options => {
options.https = {
pfx: path.join(process.env.HOME, '.symfony/certs/default.p12'),
}
})
```
Then, do NOT pass the `--https` flag at the command line. Just run:
yarn dev-server
To upgrade:
yarn upgrade "@symfony/webpack-encore@^1.0.5"
Changes: [v1.0.4..v1.0.5](https://togithub.com/symfony/webpack-encore/compare/v1.0.4..v1.0.5)
Documentation:
Happy packing!
### [`v1.0.4`](https://togithub.com/symfony/webpack-encore/releases/v1.0.4)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.3...v1.0.4)
Hi Webpackers!
This release fixes an incorrect warning if you're using `@symfony/stimulus-bridge` version 2. It also outputs a warning if you're using v1 of that library.
yarn upgrade "@symfony/webpack-encore@^1.0.4"
Changes: [v1.0.3..v1.0.4](https://togithub.com/symfony/webpack-encore/compare/v1.0.3..v1.0.4)
Documentation:
Happy packing!
### [`v1.0.3`](https://togithub.com/symfony/webpack-encore/releases/v1.0.3)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.2...v1.0.3)
Hi Webpackers!
This release fixes a performance regression when using `watch` or `dev-server`. In both cases, every "re-build" would take as long as the original build. See [#905](https://togithub.com/symfony/webpack-encore/issues/905) for the fix.
yarn upgrade "@symfony/webpack-encore@^1.0.3"
Changes: [v1.0.2..v1.0.3](https://togithub.com/symfony/webpack-encore/compare/v1.0.2..v1.0.3)
Documentation:
Happy packing!
### [`v1.0.2`](https://togithub.com/symfony/webpack-encore/releases/v1.0.2)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.1...v1.0.2)
Hi Webpackers!
This release fixes a bug when using `dev-server` along with `cleanOutputBeforeBuild()`. The result would be that the `manifest.json` file would be missing from the output directory. That was fixed in [#901](https://togithub.com/symfony/webpack-encore/issues/901).
yarn upgrade "@symfony/webpack-encore@^1.0.2"
Changes: [v1.0.1..v1.0.2](https://togithub.com/symfony/webpack-encore/compare/v1.0.1..v1.0.2)
Documentation:
Happy packing!
### [`v1.0.1`](https://togithub.com/symfony/webpack-encore/releases/v1.0.1)
[Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.0.0...v1.0.1)
Hi Webpackers!
This release fixes a bug related to version 4 of webpack-dev-server (which is included in version 1 of this library). The code still relied on several, removed options. See [#899](https://togithub.com/symfony/webpack-encore/issues/899) for more details.
yarn upgrade "@symfony/webpack-encore@^1.0.1"
Changes: [v1.0.0..v1.0.1](https://togithub.com/symfony/webpack-encore/compare/v1.0.0..v1.0.1)
Documentation:
Happy packing!
Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
1.0.0
->1.1.2
Release Notes
symfony/webpack-encore
### [`v1.1.2`](https://togithub.com/symfony/webpack-encore/releases/v1.1.2) [Compare Source](https://togithub.com/symfony/webpack-encore/compare/v1.1.1...v1.1.2) Hi Webpackers! This release fixes some bad behavior when using HMR with the dev-server. Previously, on any change (even those where the page should have been updated with HMR without a page refresh), the page would refresh. PR [#939](https://togithub.com/symfony/webpack-encore/issues/939) fixes that by _disabling auto-refresh_. This means that your page will not refresh automatically after making a change. This was a trade-off, as HMR was unusable currently. Hopefully a future version of webpack-dev-server may address this. Other PR's include: - minor [#940](https://togithub.com/symfony/webpack-encore/issues/940) Clarify missing css file error message (thanks to [@Gadgetdude](https://togithub.com/Gadgetdude)) - bug [#938](https://togithub.com/symfony/webpack-encore/issues/938) Require vue-loader 15.9.5 to work with Encore 1.0 (thanks to [@weaverryan](https://togithub.com/weaverryan)) To upgrade: yarn upgrade "@symfony/webpack-encore@^1.1.2" Changes:Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.