Skip to content

Commit 89f03f1

Browse files
committed
tweaking CHANGELOG for 0.30.0
1 parent 7034b75 commit 89f03f1

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## 0.30.0
44

5+
* [DEPENDENCY UPGRADE] `sass-loader` was upgraded from version 7 to 8.
6+
See the [CHANGELOG](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md#800-2019-08-29)
7+
for breaking changes. This likely will not affect you unless pass
8+
custom options to `Encore.enableSassLoader()`: several options were
9+
moved or renamed - #758 thanks to @Kocal.
10+
511
* [BEHAVIOR CHANGE] Encore now resolves loaders directly form its
612
`node_modules/`, instead of by name. This change will cause a behavior
713
change if you do any of the following:
@@ -18,23 +24,28 @@
1824

1925
See #739 thanks to @Lyrkan.
2026

21-
* Upgraded `clean-webpack-plugin` from `^0.1.19` to `^3.0.0`. You
22-
should not notice significant changes unless you use
27+
* [DEPENDENCY UPGRADE] Webpack minimum version was changed from
28+
`4.20.0` to `4.36.0` - see #746 and #758.
29+
30+
* [DEPENDENCY UPGRADE] Upgraded `clean-webpack-plugin` from `^0.1.19` to `^3.0.0`.
31+
You should not notice significant changes unless you use
2332
`Encore.cleanupOutputBeforeBuild()` and pass custom options.
2433
For more info, see [v1 to v2 upgrade notes](https://github.com/johnagan/clean-webpack-plugin/issues/106)
2534
and [v2 to v3 upgrade notes](https://github.com/johnagan/clean-webpack-plugin/releases/tag/v3.0.0).
26-
There were no changes from `0.1.19` to `1.0.0`.
35+
There were no changes from `0.1.19` to `1.0.0`. See #760 thanks to @weaverryan.
2736

2837
* Encore will now correctly recognize a project-wide `babel.config.js` file - #738
2938
thanks to @jdreesen.
3039

31-
* The `fork-ts-checker-webpack-plugin` package was upgraded for the tests
40+
* [DEPENDENCY UPGRADE] The `fork-ts-checker-webpack-plugin` package was upgraded for the tests
3241
from `^0.4.1` to `^4.0.0`. If you're using `enableForkedTypeScriptTypesChecking()`,
3342
you control the `fork-ts-checker-webpack-plugin` version in your
3443
`package.json` file. You should upgrade to `^4.0.0` to ensure
3544
that the plugin works correctly with Encore. See
3645
[fork-ts-checker-webpack-plugin](https://github.com/TypeStrong/fork-ts-checker-webpack-plugin)
37-
for details about the changes.
46+
for details about the changes. See #759 thanks to @weaverryan.
47+
48+
* Added support for Vue3 - #746 thanks to @weaverryan.
3849

3950
## 0.29.0
4051

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,10 @@ class Encore {
11501150
* Encore.enableVueLoader(() => {}, {
11511151
* // set optional Encore-specific options, for instance:
11521152
*
1153+
* // use version 2 or 3 to force your Vue version
1154+
* // otherwise, Encore will detect it automatically
1155+
* version: 2
1156+
*
11531157
* // enable JSX usage in Vue components
11541158
* // https://vuejs.org/v2/guide/render-function.html#JSX
11551159
* useJsx: true

0 commit comments

Comments
 (0)