Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update minor and patch #144

Merged
merged 1 commit into from
Dec 8, 2018
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2018

This PR contains the following updates:

Package Type Update Change References
@​babel/cli devDependencies minor 7.1.5 -> 7.2.0 homepage, source
@​babel/core devDependencies minor 7.1.6 -> 7.2.0 homepage, source
@​babel/preset-env devDependencies minor 7.1.6 -> 7.2.0 homepage, source
autoprefixer devDependencies minor 9.3.1 -> 9.4.2 source
mini-css-extract-plugin devDependencies minor 0.4.5 -> 0.5.0 source
webpack devDependencies minor 4.26.1 -> 4.27.1 source

Release Notes

babel/babel

v7.2.0

Compare Source

v7.2.0 (2018-12-03)

Thanks to @​Gcaufy, @​morozRed, @​phapp88, @​tim-mc and @​katrotz for their first PRs!

You can read more about this release at https://babeljs.io/blog/2018/12/03/7.2.0.

🚀 New Feature
🐛 Bug Fix
💅 Polish
🏠 Internal
Committers: 15
postcss/autoprefixer

v9.4.2

Compare Source

  • Fix Grid autoplacement warning.

v9.4.1

Compare Source

  • Fix unnecessary Flexbox prefixes in Grid elements.

v9.4.0

Compare Source

Coat of Arms of Australia

Autoprefixer 9.4.0 brings limited autoplacement support to the IE CSS Grid.

Grid Autoplacement

If the grid option is set to "autoplace", limited autoplacement support is now added to the Autoprefixer CSS Grid translations. You can also use the /* autoprefixer grid: autoplace */ control comment to enable autoplacement directly in your CSS.

In order to use the new autoplacement feature, you must define both rows and columns when declaring the grid template.

/* Input CSS */

/* autoprefixer grid: autoplace */

.autoplacement-example {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 20px;
}
/* Output CSS */

/* autoprefixer grid: autoplace */

.autoplacement-example {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 20px auto;
  grid-template-rows: auto auto;
  grid-gap: 20px;
}

.autoplacement-example > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.autoplacement-example > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.autoplacement-example > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.autoplacement-example > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

Autoplacement support in Autoprefixer is currently very limited in what it can do. Please read the Grid Autoplacement support in IE section before using this new feature.

Thanks to @​bogdan0083 for implementing the new feature, @​Dan503 for documenting it, and @​evandiamond for coming up with the initial idea.

Other Changes

  • Remove some unnecessary warnings for Grid (by @​fanich37).
webpack-contrib/mini-css-extract-plugin

v0.5.0

Compare Source

Features

0.4.5 (2018-11-21)

Bug Fixes

0.4.4 (2018-10-10)

Bug Fixes
  • index: assign empty module.id to prevent contenthash from changing unnecessarily (#​284) (d7946d0)

0.4.3 (2018-09-18)

Bug Fixes
  • loader: pass emitFile to the child compilation (loaderContext.emitFile) (#​177) (18c066e)

0.4.2 (2018-08-21)

Bug Fixes
  • use correct order when multiple chunk groups are merged (#​246) (c3b363d)

0.4.1 (2018-06-29)

Bug Fixes
webpack/webpack

v4.27.1

Compare Source

Bugfixes

  • v4.27.1 accidentially introduced a breaking change. This reverts the change and restores the original behavior for splitChunks enforce.

v4.27.0

Compare Source

Features

  • When using functions as plugins they are now also called with the compiler as parameter
    • This make it possible to use arrow functions as plugins
  • splitChunks.maxSize now emits a warning when minSize > maxSize
  • Loaders have now access to a getResolve method to create their own resolver function with custom options

Bugfixes

  • splitChunks.cacheGroups.xxx.enforce now behaves as documented and enforce chunk creation
  • splitChunks.cacheGroups.xxx.enforce now no longer deletes minSize for maxSize
  • fixes a bug where splitChunks cause cacheGroups to be incorrectly merged when using the same name
    • now conditions are considered per cacheGroup
    • the correct cache group comment is displayed in stats
  • fixes a bug which causes providedExports not to be updated on rebuilds when using export * from

Renovate configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR is stale, or if you modify the PR title to begin with "rebase!".

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot. View repository job log here.

@renovate renovate bot added the renovate label Dec 8, 2018
@renovate renovate bot merged commit cad9fc8 into master Dec 8, 2018
@renovate renovate bot deleted the renovate/minor-and-patch branch December 8, 2018 04:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant