Changelog
*Sourced from [@rails/webpacker's changelog](https://github.com/rails/webpacker/blob/master/CHANGELOG.md).*
> ## [[4.0.6]](https://github.com/rails/webpacker/compare/v4.0.5...v4.0.6) - 2019-05-30
>
> - Webpack should not be transpiled [#2111](https://github-redirect.dependabot.com/rails/webpacker/pull/2111)
>
> ## [[4.0.5]](https://github.com/rails/webpacker/compare/v4.0.4...v4.0.5) - 2019-05-30
>
> - Don't let babel & core-js transpile each other [#2110](https://github-redirect.dependabot.com/rails/webpacker/pull/2110)
>
> ## [[4.0.4]](https://github.com/rails/webpacker/compare/v4.0.3...v4.0.4) - 2019-05-28
>
> - Remove bundler version constraint
>
> ## [[4.0.3]](https://github.com/rails/webpacker/compare/v4.0.2...v4.0.3) - 2019-05-28
>
> Please see the diff
>
> ### Breaking changes
>
> - [`@babel/polyfill`](https://babeljs.io/docs/en/next/babel-polyfill.html) [doesn't make it possible to provide a smooth migration path from `core-js@2` to `core-js@3`](https://github.com/zloirock/core-js/blob/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md#babelpolyfill): for this reason, it was decided to deprecate `@babel/polyfill` in favor of separate inclusion of required parts of `core-js` and `regenerator-runtime`. [#2031](https://github-redirect.dependabot.com/rails/webpacker/pull/2031)
>
> In each of your `/packs/*.js` files, change this:
> ```js
> import "@babel/polyfill";
> ```
> to this:
> ```js
> import "core-js/stable";
> import "regenerator-runtime/runtime";
> ```
>
> Don't forget install those dependencies directly!
>
> ```sh
> yarn add --save core-js regenerator-runtime
> ```
Commits
- [`6cb399b`](https://github.com/rails/webpacker/commit/6cb399bc5599ee60f6a5f2e7788aaba20bd87248) fix: webpack should not be transpiled ([#2111](https://github-redirect.dependabot.com/rails/webpacker/issues/2111))
- [`cc5a1b3`](https://github.com/rails/webpacker/commit/cc5a1b3bde67c2475b2f51abcf43b6e3f7c9396b) 4.0.5
- [`afab21c`](https://github.com/rails/webpacker/commit/afab21c05020807298e1bdf1ba368b353420f696) fix: Don't let babel & core-js transpile each other ([#2110](https://github-redirect.dependabot.com/rails/webpacker/issues/2110))
- [`80f3b55`](https://github.com/rails/webpacker/commit/80f3b5597534908b5593b47890624554001d2adf) WIP Add changelog entry with upgrade guide. ([#2107](https://github-redirect.dependabot.com/rails/webpacker/issues/2107))
- [`9bb8abb`](https://github.com/rails/webpacker/commit/9bb8abb3ad7ed2209922f9a74df34d3aba1231e2) 4.0.4
- [`c76b9d4`](https://github.com/rails/webpacker/commit/c76b9d43af4f2c2ac91e48bd0a479c7273a50930) Free bundler again
- [`519a7f5`](https://github.com/rails/webpacker/commit/519a7f597527b57a8a2e142be12dee1df00dc1c2) 4.0.3
- [`bf92ace`](https://github.com/rails/webpacker/commit/bf92ace44a28f6dbcad55deb9f85708bb9827bcf) Upgrade deps ([#2106](https://github-redirect.dependabot.com/rails/webpacker/issues/2106))
- [`d6a8aa4`](https://github.com/rails/webpacker/commit/d6a8aa430624974f970afa13e30970ffa7b769e8) Install bundler 1.17.3 on CI, fixes builds ([#2101](https://github-redirect.dependabot.com/rails/webpacker/issues/2101))
- [`0feb147`](https://github.com/rails/webpacker/commit/0feb1474a7e06ac2a6bff745475bee192643a29f) Fix typo in docs/webpack.md ([#2036](https://github-redirect.dependabot.com/rails/webpacker/issues/2036))
- Additional commits viewable in [compare view](https://github.com/rails/webpacker/compare/v4.0.2...v4.0.6)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps @rails/webpacker from 4.0.2 to 4.0.6.
Changelog
*Sourced from [@rails/webpacker's changelog](https://github.com/rails/webpacker/blob/master/CHANGELOG.md).* > ## [[4.0.6]](https://github.com/rails/webpacker/compare/v4.0.5...v4.0.6) - 2019-05-30 > > - Webpack should not be transpiled [#2111](https://github-redirect.dependabot.com/rails/webpacker/pull/2111) > > ## [[4.0.5]](https://github.com/rails/webpacker/compare/v4.0.4...v4.0.5) - 2019-05-30 > > - Don't let babel & core-js transpile each other [#2110](https://github-redirect.dependabot.com/rails/webpacker/pull/2110) > > ## [[4.0.4]](https://github.com/rails/webpacker/compare/v4.0.3...v4.0.4) - 2019-05-28 > > - Remove bundler version constraint > > ## [[4.0.3]](https://github.com/rails/webpacker/compare/v4.0.2...v4.0.3) - 2019-05-28 > > Please see the diff > > ### Breaking changes > > - [`@babel/polyfill`](https://babeljs.io/docs/en/next/babel-polyfill.html) [doesn't make it possible to provide a smooth migration path from `core-js@2` to `core-js@3`](https://github.com/zloirock/core-js/blob/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md#babelpolyfill): for this reason, it was decided to deprecate `@babel/polyfill` in favor of separate inclusion of required parts of `core-js` and `regenerator-runtime`. [#2031](https://github-redirect.dependabot.com/rails/webpacker/pull/2031) > > In each of your `/packs/*.js` files, change this: > ```js > import "@babel/polyfill"; > ``` > to this: > ```js > import "core-js/stable"; > import "regenerator-runtime/runtime"; > ``` > > Don't forget install those dependencies directly! > > ```sh > yarn add --save core-js regenerator-runtime > ```Commits
- [`6cb399b`](https://github.com/rails/webpacker/commit/6cb399bc5599ee60f6a5f2e7788aaba20bd87248) fix: webpack should not be transpiled ([#2111](https://github-redirect.dependabot.com/rails/webpacker/issues/2111)) - [`cc5a1b3`](https://github.com/rails/webpacker/commit/cc5a1b3bde67c2475b2f51abcf43b6e3f7c9396b) 4.0.5 - [`afab21c`](https://github.com/rails/webpacker/commit/afab21c05020807298e1bdf1ba368b353420f696) fix: Don't let babel & core-js transpile each other ([#2110](https://github-redirect.dependabot.com/rails/webpacker/issues/2110)) - [`80f3b55`](https://github.com/rails/webpacker/commit/80f3b5597534908b5593b47890624554001d2adf) WIP Add changelog entry with upgrade guide. ([#2107](https://github-redirect.dependabot.com/rails/webpacker/issues/2107)) - [`9bb8abb`](https://github.com/rails/webpacker/commit/9bb8abb3ad7ed2209922f9a74df34d3aba1231e2) 4.0.4 - [`c76b9d4`](https://github.com/rails/webpacker/commit/c76b9d43af4f2c2ac91e48bd0a479c7273a50930) Free bundler again - [`519a7f5`](https://github.com/rails/webpacker/commit/519a7f597527b57a8a2e142be12dee1df00dc1c2) 4.0.3 - [`bf92ace`](https://github.com/rails/webpacker/commit/bf92ace44a28f6dbcad55deb9f85708bb9827bcf) Upgrade deps ([#2106](https://github-redirect.dependabot.com/rails/webpacker/issues/2106)) - [`d6a8aa4`](https://github.com/rails/webpacker/commit/d6a8aa430624974f970afa13e30970ffa7b769e8) Install bundler 1.17.3 on CI, fixes builds ([#2101](https://github-redirect.dependabot.com/rails/webpacker/issues/2101)) - [`0feb147`](https://github.com/rails/webpacker/commit/0feb1474a7e06ac2a6bff745475bee192643a29f) Fix typo in docs/webpack.md ([#2036](https://github-redirect.dependabot.com/rails/webpacker/issues/2036)) - Additional commits viewable in [compare view](https://github.com/rails/webpacker/compare/v4.0.2...v4.0.6)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.