Skip to content

Commit 7b9fdfa

Browse files
committed
bumping changeloge for 0.26.0
1 parent 9ebe90b commit 7b9fdfa

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# CHANGELOG
22

3+
## 0.26.0
4+
5+
* [Behavior change] The Babel `useBuiltIns` option default value changed
6+
from `entry` to `false`, which means that polyfills may no longer be
7+
provided in the same way. This is due to a change in Babel and core-js.
8+
To get the same functionality back, run `yarn add core-js --dev`, then use:
9+
10+
```js
11+
Encore.configureBabel(() => {}, {
12+
useBuiltIns: 'entry', // or try "usage"
13+
corejs: 3
14+
})
15+
```
16+
17+
This comes from #545 thanks to @Lyrkan.
18+
19+
* Added the ability to "resolve" CSS and Sass files without specifying
20+
the file extension and by taking advantage of the `sass` or `style`
21+
attribute in an npm package. For example, you can now import the main
22+
Bootstrap SASS file from within a SASS file by saying `@import ~bootstrap`.
23+
This will use the `sass` attribute from the bootstrap `package.json`
24+
file to find which file to load. #474 thanks to @deAtog.
25+
26+
* Added a new `Encore.enableIntegrityHashes()`, which will cause a new
27+
`integrity` key to be added to `entrypoints.json` with integrity values
28+
that can be included in the `script` or `link` tag for that asset - #522
29+
thanks to @Lyrkan.
30+
31+
* Allow some parts of `configureBabel()` to be used, even if there is
32+
an external `.babelrc` configuration file - #544 thanks to @Lyrkan.
33+
334
## 0.25.0
435

536
* [BC BREAK] Various dependency versions were updated, including

0 commit comments

Comments
 (0)